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.
This exercise is part of the course
Data Transformation with Polars
Exercise instructions
- Add
new_listingstohotelsin place. - Print the last 5 rows to confirm the new listings were added.
Hands-on interactive exercise
Have a go at this exercise by completing this sample code.
# Add new_listings to hotels
hotels.____(____)
# Print the last 5 rows
print(hotels.____(____))