You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# function: selecting tweets from a very large .csv file using list of date strings. Only loads 10,000 lines into memory at a time, so it can quickly select the rows where the date strings match 'dates_keep' list
dateCols = ['timestamp']
frames = []
for chunk in pd.read_csv(file,sep='\t', chunksize=chunksize):