Appendix: Data type mapping
The following table maps data types from 1010data to Python.
1010data type | Python data type | Notes |
---|---|---|
|
float | |
|
int32 | |
|
int64 | Python, NumPy, and pandas will generally use int64 as the default integer type. |
|
UTF-8 | |
|
bytes | 1010 columns that contain JSON are stored as text (ragged arrays) and will be byte data in Python. |
|
dict |
Note: Some Python JSON libraries produce bytes (such as orjson), and others produce
UTF-8 (such as JSON and UltraJSON)