ComeçarComece de graça

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.

Este exercício faz parte do curso

Analyzing Marketing Campaigns with pandas

Ver curso

Instruções do exercício

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

Exercício interativo prático

Experimente este exercício completando este código de exemplo.

# Import pandas into the environment
____

# Import marketing.csv 
marketing = ____('____')
Editar e executar o código