File tree 1 file changed +2
-1
lines changed 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -4522,6 +4522,7 @@ See the documentation for `pyarrow <http://arrow.apache.org/docs/python/>`__ and
4522
4522
.. note ::
4523
4523
4524
4524
These engines are very similar and should read/write nearly identical parquet format files.
4525
+ Currently ``pyarrow `` does not support timedelta data, and ``fastparquet `` does not support timezone aware datetimes (they are coerced to UTC).
4525
4526
These libraries differ by having different underlying dependencies (``fastparquet `` by using ``numba ``, while ``pyarrow `` uses a c-library).
4526
4527
4527
4528
.. ipython :: python
@@ -4548,8 +4549,8 @@ Read from a parquet file.
4548
4549
4549
4550
.. ipython :: python
4550
4551
4551
- result = pd.read_parquet(' example_pa.parquet' , engine = ' pyarrow' )
4552
4552
result = pd.read_parquet(' example_fp.parquet' , engine = ' fastparquet' )
4553
+ result = pd.read_parquet(' example_pa.parquet' , engine = ' pyarrow' )
4553
4554
4554
4555
result.dtypes
4555
4556
You can’t perform that action at this time.
0 commit comments