LoslegenKostenlos loslegen

Renaming and dropping columns

When you present results to your colleagues you see that they are confused about what some data represents and overwhelmed by the amount of data presented. You want to rename some columns to ensure your colleagues understand what each column refers to, while dropping some columns that are not relevant.

Diese Übung ist Teil des Kurses

Introduction to Polars

Kurs anzeigen

Anleitung zur Übung

  • Update the column names with the column name mappings in the renamed_columns dict.
  • Drop the "top_speed" and "charge_rate" columns from the DataFrame.

Interaktive Übung

Vervollständige den Beispielcode, um diese Übung erfolgreich abzuschließen.

# Dict with column renamings
renamed_columns = {"accel":"acceleration_secs","range":"range_km"}

# Rename and drop the columns
modified_ev_df = (
    ev_df.____.____
)

print(modified_ev_df)
Code bearbeiten und ausführen