ComenzarEmpieza gratis

Inspect a DataFrame

Before diving into detailed analysis, you want to understand the structure and content of the EV dataset.

The electric vehicle dataset you loaded before is still available as a Polars DataFrame called ev_df.

Este ejercicio forma parte del curso

Introduction to Polars

Ver curso

Ejercicio interactivo práctico

Prueba este ejercicio y completa el código de muestra.

# Print number of rows and columns of ev_df
print(ev_df.____)
Editar y ejecutar código