Aggregating a column
You are asked to provide some details for a report on developments in the electric vehicle market in terms of how expensive they can be and how far they can travel.
Diese Übung ist Teil des Kurses
Introduction to Polars
Anleitung zur Übung
- Create a one row DataFrame with the maximum value of the
"price"column and the mean of the"range"column.
Interaktive Übung
Vervollständige den Beispielcode, um diese Übung erfolgreich abzuschließen.
# Print the max of the price and mean of the range
print(ev_df.select(____))