Import Necessary Libraries and Data
Task
Swipe to start coding
- Import
pandas
(aspd
); - Read the
"all_stocks_5yr.csv"
file; - Show the first 5 rows of the dataset.
Solution
import pandas as pd
data = pd.read_csv("all_stocks_5yr.csv")
data.head()
Mark tasks as Completed
Everything was clear?
Thanks for your feedback!
Section 1. Chapter 2
AVAILABLE TO ULTIMATE ONLY