Comece agoraComece grátis

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.

Este exercicio faz parte do curso

Introduction to Polars

Ver curso

Instruções do exercicio

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

exercicio interativo prático

Tente este exercicio completando este código de exemplo.

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

# Print the first three rows
print(ev_df.____)
Editar e Executar Código