December 2017
Intermediate to advanced
386 pages
10h 42m
English
The data in msft.csv is perfect to read into a DataFrame. All its data is complete and has column names in the first row. All that we need to do to read this data into a DataFrame is to use the pandas pd.read_csv() function:

Wow, that was easy! pandas has realized that the first line of the file contains the names of the columns and bulk read in the data to DataFrame.
Read now
Unlock full access