-
-
Notifications
You must be signed in to change notification settings - Fork 18.7k
Open
Labels
EnhancementIO Parquetparquet, featherparquet, featherNeeds DiscussionRequires discussion from core team before further actionRequires discussion from core team before further actionSeriesSeries data structureSeries data structure
Description
Feature Type
-
Adding new functionality to pandas
-
Changing existing functionality in pandas
-
Removing existing functionality in pandas
Problem Description
Currently the .to_parquet() method only work for dataframe. It would be nicer if the method could work on Series to. Currently we either have to save the series to another format or involve a pd.DataFrame(Serie) which seems a bit clunky.
Feature Description
For a given pandas Serie, being able to write Serie.to_parquet()
Alternative Solutions
Currently the two alternatives are:
- save to another format which is a bit convoluted as we now have to deal with multiple formats.
- convert the series to a DataFrame to use the DF method.
Additional Context
No response
Ultranium, luxaritas, astrojuanlu, JasonTam, 8W9aG and 2 morelunluen
Metadata
Metadata
Assignees
Labels
EnhancementIO Parquetparquet, featherparquet, featherNeeds DiscussionRequires discussion from core team before further actionRequires discussion from core team before further actionSeriesSeries data structureSeries data structure