I would like to read several csv files from a directory into pandas and concatenate them into one big DataFrame. I have not been able to figure it out though. Here is what I
Import two or more csv's without having to make a list of names.
csv
import glob df = pd.concat(map(pd.read_csv, glob.glob('data/*.csv')))