I tried to read multiple .csv files that have the same format from different folders. It turns out to be a list using .append and I tried to turn it into dataframe using .concat. But it didn't let me to do so. I also tried .os to read the data. It wouldn't work. Any suggestions?
test = []
train = []
for f in testdata:
test.append(pd.read_csv(f, skiprows = 5, sep = ',', names =
['time','avg_rss12','var_rss12','avg_rss13','var_rss13','avg_rss23','var_rss23']))
for f in traindata:
train.append(pd.read_csv(f, skiprows = 5, sep = ',', names =
['time','avg_rss12','var_rss12','avg_rss13','var_rss13','avg_rss23','var_rss23']))

pd.concat()? Could you please show what you tried, this is the correct approach to the problem if all of your frames are of the same schema. Did you specify which axis to perform the concatenation along? I think rows is the default axis.