I am using Pandas. I am trying to read in one column of names from a larger file. This file in total is 35GBs which made my kernel die. So I would like to just read in one of the columns. Then I would then like "chunk" this data, so the kernel doesn't die. From that, I need to get the sum by per name and find the name with the highest count. Here is what could be useful:
import pandas as pd
data = pd.read_csv("/Users/Desktop/EQR_Data/EQR_Transactions_1.csv", low_memory=False)
The column name I would like to import from my main file:
'seller_company_name'