File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -626,11 +626,11 @@ def write_parquet(
626626 """Execute the :py:class:`DataFrame` and write the results to a Parquet file.
627627
628628 Args:
629- path (str | pathlib.Path): The file path to write the Parquet file.
630- compression (str): The compression algorithm to use. Default is "ZSTD".
631- compression_level (int | None): The compression level to use. For ZSTD, the
632- recommended range is 1 to 22, with the default being 4. Higher levels
633- provide better compression but slower speed.
629+ path: Path of the Parquet file to write .
630+ compression: Compression type to use. Default is "ZSTD".
631+ compression_level: Compression level to use. For ZSTD, the
632+ recommended range is 1 to 22, with the default being 4. Higher levels
633+ provide better compression but slower speed.
634634 """
635635 if compression == "ZSTD" :
636636 if compression_level is None :
You can’t perform that action at this time.
0 commit comments