File tree Expand file tree Collapse file tree 1 file changed +11
-3
lines changed Expand file tree Collapse file tree 1 file changed +11
-3
lines changed Original file line number Diff line number Diff line change @@ -464,8 +464,12 @@ def to_parquet(
464
464
465
465
.. versionadded:: 2.1.0
466
466
467
- kwargs
468
- Additional keyword arguments passed to the engine.
467
+ **kwargs
468
+ Additional keyword arguments passed to the engine:
469
+
470
+ * For ``engine="pyarrow"``: passed to :func:`pyarrow.parquet.write_table`
471
+ or :func:`pyarrow.parquet.write_to_dataset` (when using partition_cols)
472
+ * For ``engine="fastparquet"``: passed to :func:`fastparquet.write`
469
473
470
474
Returns
471
475
-------
@@ -585,7 +589,11 @@ def read_parquet(
585
589
.. versionadded:: 3.0.0
586
590
587
591
**kwargs
588
- Any additional kwargs are passed to the engine.
592
+ Additional keyword arguments passed to the engine:
593
+
594
+ * For ``engine="pyarrow"``: passed to :func:`pyarrow.parquet.read_table`
595
+ * For ``engine="fastparquet"``: passed to
596
+ :meth:`fastparquet.ParquetFile.to_pandas`
589
597
590
598
Returns
591
599
-------
You can’t perform that action at this time.
0 commit comments