Imputing missing plane prices
Now there's just one column with missing values left!
You've removed the "Additional_Info" column from planes—the last step is to impute the missing data in the "Price" column of the dataset.
As a reminder, you generated this boxplot, which suggested that imputing the median price based on the "Airline" is a solid approach!

Bu egzersiz
Exploratory Data Analysis in Python
kursunun bir parçasıdırUygulamalı interaktif egzersiz
Bu örnek kodu tamamlayarak bu egzersizi bitirin.
# Calculate median plane ticket prices by Airline
airline_prices = planes.____("____")["____"].____()
print(airline_prices)