We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f91f5f8 commit 21c5f5eCopy full SHA for 21c5f5e
doc/source/io.rst
@@ -4538,6 +4538,16 @@ Read from a parquet file.
4538
4539
result.dtypes
4540
4541
+Read only certain columns of a parquet file.
4542
+
4543
+.. ipython:: python
4544
4545
+ result = pd.read_parquet('example_pa.parquet', engine='pyarrow', columns=['a', 'b'])
4546
+ result = pd.read_parquet('example_fp.parquet', engine='fastparquet', columns=['a', 'b'])
4547
4548
+ result.dtypes
4549
4550
4551
.. ipython:: python
4552
:suppress:
4553
0 commit comments