├── .gitignore ├── benchmark.ipynb └── utils.py /.gitignore: -------------------------------------------------------------------------------- 1 | .* 2 | !.gitignore 3 | **/*.py[cod] 4 | random.* 5 | *.feather 6 | -------------------------------------------------------------------------------- /benchmark.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-zaitsev/pandas-formats-benchmark/HEAD/benchmark.ipynb -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-zaitsev/pandas-formats-benchmark/HEAD/utils.py --------------------------------------------------------------------------------