June 2022
Beginner to intermediate
744 pages
15h 44m
English
Perform the following steps to complete the activity:
import pandas as pd
import random
Store1 = pd.read_csv('../Datasets/Store1.csv')
Store1.head()
Note
Please change the path of the dataset file (highlighted) based on where you have downloaded it in your system.
You should get the following output:
Figure 15.1 – Sales figures of the first store
Store2 = pd.read_csv('../Datasets/Store2.csv')
Store2.head()
Note
Please change the path ...
Read now
Unlock full access