Situatie
We will see how to read multiple CSV files into separate DataFrames. For reading only one data frame we can use pd.read_csv()function of pandas. It takes a path as input and returns data frame like df = pd.read_csv(“file path”).
Solutie
Pasi de urmat
# import module
import pandas as pd
# read dataset
df = pd.read_csv(“./csv/crime.csv”)
Here, crime.csv is the file in the current folder. CSV is the folder that contains the crime.csv file and CSV Reader.ipynb is the file containing the above code.
It is the data frame that is read from the above function. One more file is present in the folder named – username.csv. To read them both and store them in different data frames use the below code
dataframes_list contains all the data frames separately
dataframes_list[1]:
Leave A Comment?