How to Load a Massive File as small chunks in Pandas?

The longer you work in data science, the higher the chance that you might have to work with a really big file with thousands or millions of lines. Trying to load all the data at once in memory will not work as you will end up using all of your RAM and crash your computer.… Continue reading How to Load a Massive File as small chunks in Pandas?

How To Read a CSV File as Pandas Data Frame?

Pandas is one of the popular Python package for manipulating data frames. Pandas is built on top of NumPy and thus it makes data manipulation fast and easy. One of the most common things one might do in data science/data analysis is to load or read in csv file. Here we see 7 examples to… Continue reading How To Read a CSV File as Pandas Data Frame?