Skip to main content

Pandas

Introduction

General

Testing

Editing a *.parquet file

  1. Read the parquet file using pandas.read_parquet(‘some/path.parquet’), which returns a DataFrame
  2. Modify the df however you need
  3. Write the df to a parquet file again with df.to_parquet(‘some/path.parquet’)

Inbox