Get startedGet started for free

Summarizing a DataFrame

Your manager has requested a statistical overview of the EV market to include in the quarterly market report.

The dataset is loaded for you in a DataFrame called ev_df.

This exercise is part of the course

Introduction to Polars

View Course

Exercise instructions

  • Print a summary of the DataFrame to see the number of missing values and statistics of numerical columns.

Hands-on interactive exercise

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

# Print a summary of the DataFrame
print(ev_df.____)
Edit and Run Code