From eeb8907461e98dc6c2625c80cc0d336ef0f3ee9c Mon Sep 17 00:00:00 2001 From: Nick Crews Date: Mon, 29 Aug 2022 16:44:44 -0800 Subject: [PATCH] docs: Add to supported data types table I was getting confused as to how my pyarrow timestamps were getting converted, and I think seeing this here would have pointed me in the right direction sooner. --- docs/source/guides/data_types.ipynb | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/source/guides/data_types.ipynb b/docs/source/guides/data_types.ipynb index cf8a7c4776..ceaa0ac8cc 100644 --- a/docs/source/guides/data_types.ipynb +++ b/docs/source/guides/data_types.ipynb @@ -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", @@ -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",