@@ -669,7 +669,7 @@ def to_parquet(
669
669
Parameters
670
670
----------
671
671
path
672
- The data source. A string or Path to the parquet file.
672
+ A string or Path where the Parquet file will be written .
673
673
params
674
674
Mapping of scalar parameter expressions to value.
675
675
**kwargs
@@ -714,8 +714,6 @@ def to_xlsx(
714
714
715
715
Parameters
716
716
----------
717
- expr
718
- Ibis table expression to write to an excel file.
719
717
path
720
718
Excel output path.
721
719
sheet
@@ -802,7 +800,7 @@ def to_csv(
802
800
Parameters
803
801
----------
804
802
path
805
- The data source . A string or Path to the CSV file.
803
+ The data target . A string or Path where the CSV file will be written .
806
804
params
807
805
Mapping of scalar parameter expressions to value.
808
806
**kwargs
@@ -827,7 +825,7 @@ def to_delta(
827
825
Parameters
828
826
----------
829
827
path
830
- The data source . A string or Path to the Delta Lake table directory.
828
+ The data target . A string or Path to the Delta Lake table directory.
831
829
params
832
830
Mapping of scalar parameter expressions to value.
833
831
**kwargs
@@ -847,9 +845,9 @@ def to_json(self, path: str | Path, /, **kwargs: Any) -> None:
847
845
Parameters
848
846
----------
849
847
path
850
- The data source . A string or Path to the Delta Lake table .
848
+ The data target . A string or Path where the JSON file will be written .
851
849
kwargs
852
- Additional, backend-specifc keyword arguments.
850
+ Additional, backend-specific keyword arguments.
853
851
"""
854
852
self ._find_backend (use_default = True ).to_json (self , path , ** kwargs )
855
853
0 commit comments