Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: Add to supported data types table #2192

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion docs/source/guides/data_types.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
"| Python | `float` | yes | Will be converted to a `numpy` array |\n",
"| Python | `datetime` | not yet | |\n",
"| Python | `timedelta` | not yet | |\n",
"| Python | `str` | yes | Will be converted to Arrow array |\n",
"| Python | `str` | yes | Will be converted to Arrow string array |\n",
"| `numpy` | `int8` | yes | |\n",
"| `numpy` | `int16` | yes | |\n",
"| `numpy` | `int32` | yes | |\n",
Expand All @@ -78,9 +78,11 @@
"| `arrow` | `float16` | yes | Operations should be upcast to `float64` |\n",
"| `arrow` | `float32` | yes | |\n",
"| `arrow` | `float64` | yes | |\n",
"| `arrow` | `string` | yes | |\n",
"| `arrow` | `date32` | yes | |\n",
"| `arrow` | `time64` | yes | |\n",
"| `arrow` | `time32` | yes | |\n",
"| `arrow` | `timestamp` | yes | Will be converted to a numpy datetime64 |\n",
"| `arrow` | `duration` | yes | |\n",
"| `arrow` | `struct` | yes | Can't be exported to HDF5 yet, but possible |\n",
"| `arrow` | `dictionary` | yes | |\n",
Expand Down