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 4307a2a commit 1ee49e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/python/pandas.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ df = pd.read_csv(

## Load and Save CSV Parquet

- save to parquet: `df.to_parquet("<file_name>.parquet.gz", compression="gzip")`
- save to parquet: `df.to_parquet("<file_name>.parquet.gz", compression="gzip", index=False)`
- load from parquet: `df = read_parquet("<file_name>.parquet.gz")`

## Display Data
Expand Down

0 comments on commit 1ee49e2

Please sign in to comment.