LoslegenKostenlos loslegen

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.

Diese Übung ist Teil des Kurses

Analyzing Marketing Campaigns with pandas

Kurs anzeigen

Anleitung zur Übung

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

Interaktive Übung

Vervollständige den Beispielcode, um diese Übung erfolgreich abzuschließen.

# Import pandas into the environment
____

# Import marketing.csv 
marketing = ____('____')
Code bearbeiten und ausführen