ComenzarEmpieza gratis

Calculating rental period end times

Now that you can extract time components, let's manipulate the timestamps themselves. Each bike rental in London lasts up to 45 minutes before incurring extra charges. To analyze when bikes become available again, calculate the end time for each rental period by adding 45 minutes to the start time.

polars is loaded as pl. The DataFrame bikes is available with the time column as a Datetime.

Este ejercicio forma parte del curso

Data Transformation with Polars

Ver curso

Instrucciones del ejercicio

  • Add a column period_end by offsetting the time column forward by 45 minutes.

Ejercicio interactivo práctico

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

# Calculate when each rental period ends
bikes.with_columns(
    pl.col("time").____.____("____").alias("____")
)
Editar y ejecutar código