Get startedGet started for free

Creating a Series from a DataFrame

Your marketing team needs a visualization showing which manufacturers are most represented in the current EV market. To create this visualization, you first need to extract just the "brand" from your dataset.

This exercise is part of the course

Introduction to Polars

View Course

Exercise instructions

  • Create a Series from the "brand" column of ev_df.

Hands-on interactive exercise

Have a go at this exercise by completing this sample code.

# Create a Series from the brand column
print(ev_df____)
Edit and Run Code