Skip to content

Commit c84c874

Browse files
committed
fix
1 parent 974252b commit c84c874

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

docs/source/python/pandas.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ use the ``datetime64[ns]`` type in Pandas and are converted to an Arrow
224224
225225
>>> df = pd.DataFrame({"datetime": pd.date_range("2020-01-01T00:00:00Z", freq="h", periods=3)})
226226
>>> df.dtypes
227-
datetime datetime64[ns, UTC]
227+
datetime datetime64[..., UTC]
228228
dtype: object
229229
>>> df
230230
datetime
@@ -234,9 +234,9 @@ use the ``datetime64[ns]`` type in Pandas and are converted to an Arrow
234234
>>> table = pa.Table.from_pandas(df)
235235
>>> table
236236
pyarrow.Table
237-
datetime: timestamp[ns, tz=UTC]
237+
datetime: timestamp[..., tz=UTC]
238238
----
239-
datetime: [[2020-01-01 00:00:00.000000000Z,...,2020-01-01 02:00:00.000000000Z]]
239+
datetime: [[2020-01-01 00:00:00...]]
240240
241241
In this example the Pandas Timestamp is time zone aware
242242
(``UTC`` on this case), and this information is used to create the Arrow

0 commit comments

Comments
 (0)