Skip to content

Commit

Permalink
Update pandas.md
Browse files Browse the repository at this point in the history
  • Loading branch information
PhilipMay authored Nov 19, 2023
1 parent 5d3975c commit d3ef5fe
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions source/python/pandas.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,9 @@ df = pd.read_csv(
## Load and Save as Parquet

- save to parquet: `df.to_parquet("file_name.parquet.gz", compression="gzip", index=False)`
- see <https://pandas.pydata.org/docs/reference/api/pandas.DataFrame.to_parquet.html>
- load from parquet: `df = read_parquet("file_name.parquet.gz")`
- see <https://pandas.pydata.org/docs/reference/api/pandas.read_parquet.html>

## Load and Save with Pickle

Expand Down

0 comments on commit d3ef5fe

Please sign in to comment.