Import Necessary Libraries and Data
Compito
Swipe to start coding
- Import
pandas
(aspd
); - Read the
"all_stocks_5yr.csv"
file; - Show the first 5 rows of the dataset.
Soluzione
import pandas as pd
data = pd.read_csv("all_stocks_5yr.csv")
data.head()
Mark tasks as Completed
Tutto è chiaro?
Grazie per i tuoi commenti!
Sezione 1. Capitolo 2