ComenzarEmpieza gratis

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 ejercicio forma parte del curso

Analyzing Marketing Campaigns with pandas

Ver curso

Instrucciones del ejercicio

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

Ejercicio interactivo práctico

Prueba este ejercicio y completa el código de muestra.

# Import pandas into the environment
____

# Import marketing.csv 
marketing = ____('____')
Editar y ejecutar código