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

book
Import Necessary Libraries and Data

Compito

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.

Soluzione

import pandas as pd

data = pd.read_csv("all_stocks_5yr.csv")

data.head()

Mark tasks as Completed
Tutto è chiaro?

Come possiamo migliorarlo?

Grazie per i tuoi commenti!

Sezione 1. Capitolo 2
some-alt