Importing the dataset
Throughout this course, you will use pandas
to manipulate data and calculate summary statistics!
In this exercise, you will begin by importing pandas
and the marketing dataset into your environment.
This exercise is part of the course
Analyzing Marketing Campaigns with pandas
Exercise instructions
- Import
pandas
into your environment with the aliaspd
. - Import the
'marketing.csv'
dataset.
Hands-on interactive exercise
Have a go at this exercise by completing this sample code.
# Import pandas into the environment
____
# Import marketing.csv
marketing = ____('____')