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 exercício faz parte do curso
Data Transformation with Polars
Instruções do exercício
- Add
new_listingstohotelsin place. - Print the last 5 rows to confirm the new listings were added.
Exercício interativo prático
Experimente este exercício completando este código de exemplo.
# Add new_listings to hotels
hotels.____(____)
# Print the last 5 rows
print(hotels.____(____))