Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Learn Import Necessary Libraries and Data | Stock Prices Prediction Project
Stock Prices Prediction Project

book
Import Necessary Libraries and Data

Task

Swipe to start coding

  1. Import pandas (as pd);
  2. Read the "all_stocks_5yr.csv" file;
  3. 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?

How can we improve it?

Thanks for your feedback!

Section 1. Chapter 2
AVAILABLE TO ULTIMATE ONLY
some-alt