Skip to content

ENH: allow writing series to parquet file #54638

Open
@lcrmorin

Description

@lcrmorin

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

Metadata

Metadata

Assignees

Labels

EnhancementIO Parquetparquet, featherNeeds DiscussionRequires discussion from core team before further actionSeriesSeries data structure

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions