How to make your Pandas operation 100x faster

A practical guide to speeding up your Pandas code

Yifei Huang
Towards Data Science
5 min readDec 23, 2020

--

Photo by Matthew Brodeur on Unsplash

Pandas is a great tool for exploring and working with data. As such, it is deliberately optimized for versatility and ease of use, instead of performance. There are often many different ways to do the exact same operation, some of which are far more performant than others. This is not a problem if your…

--

--