CommencerCommencer gratuitement

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.

Cet exercice fait partie du cours

Analyzing Marketing Campaigns with pandas

Afficher le cours

Instructions

  • Import pandas into your environment with the alias pd.
  • Import the 'marketing.csv' dataset.

Exercice interactif pratique

Essayez cet exercice en complétant cet exemple de code.

# Import pandas into the environment
____

# Import marketing.csv 
marketing = ____('____')
Modifier et exécuter le code