-
-
Notifications
You must be signed in to change notification settings - Fork 19k
Support str param type for partition_cols in to_parquet function #27984
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 10 commits
3995d5a
93c4613
afd10c4
ec927c3
dde77c3
209eb7e
270e2c5
d200305
84ae85b
22075e7
1d4c3d0
c30029e
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2156,9 +2156,10 @@ def to_parquet( | |
|
||
.. versionadded:: 0.24.0 | ||
|
||
partition_cols : list, optional, default None | ||
Column names by which to partition the dataset | ||
Columns are partitioned in the order they are given | ||
partition_cols : list or string, optional, default None | ||
Column names by which to partition the dataset. | ||
Columns are partitioned in the order they are given. | ||
String identifies a single column to be partitioned. | ||
|
||
.. versionadded:: 0.24.0 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Can you add a There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think I added it correctly. This is my first contribution so bear with me please :) There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. You can put the |
||
|
||
|
Uh oh!
There was an error while loading. Please reload this page.