Adding new rows efficiently
A small batch of new listings has arrived in new_listings. Rather than creating a brand new DataFrame with pl.concat(), you can efficiently add these rows directly to the existing hotels DataFrame.
polars is loaded as pl. The DataFrames hotels and new_listings are available for you with matching columns.
Este ejercicio forma parte del curso
Data Transformation with Polars
Instrucciones del ejercicio
- Add
new_listingstohotelsin place. - Print the last 5 rows to confirm the new listings were added.
Ejercicio interactivo práctico
Prueba este ejercicio y completa el código de muestra.
# Add new_listings to hotels
hotels.____(____)
# Print the last 5 rows
print(hotels.____(____))