Open
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