I found that Dask can read several csv
files this way:
import dask.dataframe as dd
df = dd.read_csv('myfiles.*.csv') # doctest: +SKIP
But what if I want to load not all but some of them:
my_files = ['file1.csv', 'file3.csv','file7.csv']
df = dd.read_csv(my_files)
But that doesn't work:
ValueError: Length mismatch: Expected axis has 2 elements, new values have 3 elements