Skip to content
Advertisement

Is there a way that with a for cicle I could run through the archives in a file in jupyter lab/python?

I’m doing an inform and with a group we run the experiment ten time and had created 10 csv files. But opening all one line of code at a time must not be the most efficient way to open and read them and I know there must be a way to open them with a for cicle.

For now I have this code,changing cn1 with cn2 and so on:

JavaScript

What is the way to, with less lines, to open them all?

I have all the archive in the same file I’m working

Thanks for your help

Ps:I have plt because I need to graphic them later, but there must not be a problem to repeat the same code for use to transform the csv to a data frame.

Advertisement

Answer

If I understood you correctly what you want is a list with all your pandas DataFrames from your csv file. So frames is a list in which step by step all the DataFrames df are appended to. They are accessible by frames[index]

JavaScript
User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement