Given a very large csv file with many rows and 3 columns:
the file is read as following :
import pandas as pd
df = pd.read_csv("test.csv", sep=" ", chunksize=100000)
Now how to get the N largest rows based on the values in the 3rd column when chunkzise is utilized ?