Get startedGet started for free

Load a CSV into a DataFrame

As a data analyst you've been tasked with creating a market analysis of available electric vehicles. Your first step is to import the dataset.

For these exercises you have a CSV with details of electric vehicles, including the vehicle brand and model, performance characteristics, such as its range, and finally, the price of the vehicle. You will be analyzing this dataset to understand how the vehicles compare to each other.

Polars has already been imported as pl for you - this will be the case for every exercise.

This exercise is part of the course

Introduction to Polars

View Course

Exercise instructions

  • Load the "electric_vehicles.csv" into a Polars DataFrame called ev_df.
  • Print the first three rows of the DataFrame using an appropriate method.

Hands-on interactive exercise

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

# Load the CSV into a DataFrame
ev_df = ____("electric_vehicles.csv")

# Print the first three rows
print(ev_df.____)
Edit and Run Code