Skip to content

satyakisen/pandas-ff-comparison

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 

Repository files navigation

Pandas File Format Comparision

Table Of Content

Overview

This repository is about comparing how different file formats behaves in Pandas DataFrame. In this study we are considering the following file formats:

  • csv - common text file that is comma separated.
  • hdf5 - an open-source file format that supports large, complex, heterogeneous data.
  • parquet - an open source, column-oriented data file format designed for efficient data storage and retrieval.
  • feather - a portable file format for storing Arrow tables or data frames (from languages like Python or R) that utilizes the Arrow IPC format internally.

Parameters we are comparing for:

  • Time to write.
  • File Size on Disk.
  • Time to read.
  • Memory Usage.

Numerical Data

Data Count: 1L || RT Environment: Google Colab || Ram: 12.68GB || Disk: 107.72GB

Parameters CSV HDF5 Parquet Feather
Write Time 1.74 sec 0.267 sec 0.51 sec 0.072 sec
Read Time 0.254 sec 0.0274 sec 0.0994 sec 0.018 sec
File Size On Disk 19 MB 8.5 MB 9.7 MB 7.7 MB
Memory Usage 7.6 MB 8.4 MB 7.6 MB 7.6 MB

Check the notebook for more details.

Numerical + Categorical Data (Object)

Data Count: 5M || RT Environment: Google Colab || Ram: 12.68GB || Disk: 107.72GB

Parameters CSV HDF5 Parquet Feather
Write Time 46.10 sec 3.87 sec 1.77 sec 1.15 sec
Read Time 16.3 sec 1.49 sec 0.841 sec 0.648 sec
File Size On Disk 530 MB 425 MB 195 MB 245 MB
Memory Usage 642.5 MB 680.7 MB 642.5 MB 642.5 MB

Check the notebook for more details.

Numerical + Categorical Data (pandas.Category)

Data Count: 5M || RT Environment: Google Colab || Ram: 12.68GB || Disk: 107.72GB

Parameters CSV HDF5 Parquet Feather
Write Time 48.4 sec 4.38 sec 1.25 sec 0.831 sec
Read Time 8.78 sec 1.14 sec 0.704 sec 0.515 sec
File Size On Disk 567 MB 389 MB 195 MB 219 MB
Memory Usage 680.7 MB 386.2 MB 348.1 MB 348.1 MB

Check the notebook for more details.

About

This is a repository describing performance for different file formats in pandas.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published