File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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 - 0 1 - 0 1 0 2 : 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
You can’t perform that action at this time.
0 commit comments