Serialize DataFrame to Parquet, Feather, String, Styler
This article focuses on the serialization and conversion methods of a Python DataFrame: to_parquet(), to_feather(), to_string(), Styler. Let’s get started! Preparation Before any data manipulation can occur, three (3) new libraries will require installation. The Pandas library enables access to/from a DataFrame. The Pyarrow library allows writing/reading access to/from a parquet file. The Openpyxl library … Read more