Transforming Data with an Expression
You have a client in the road safety sector who needs data on the acceleration of each electric vehicle. The acceleration data is given in the number of seconds taken to reach 100 km/h speed. The data is given to one decimal place, but this is more accuracy than you need.
Diese Übung ist Teil des Kurses
Introduction to Polars
Anleitung zur Übung
- Select the
"brand","model"and"accel"columns where the acceleration is rounded to the nearest integer.
Interaktive Übung
Vervollständige den Beispielcode, um diese Übung erfolgreich abzuschließen.
# Select the brand, model and rounded accel columns
print(ev_df.select(____))