LoslegenKostenlos loslegen

Analyze the airline dataset

In Chapter 2 you learned:

  • How to check for the presence of missing values, and how to collect summary statistics of time series data contained in a pandas DataFrame.
  • To generate boxplots of your data to quickly gain insight in your data.
  • Display aggregate statistics of your data using groupby().

In this exercise, you will apply all these concepts on the airline DataFrame.

Diese Übung ist Teil des Kurses

Visualizing Time Series Data in Python

Kurs anzeigen

Interaktive Übung

Versuche dich an dieser Übung, indem du diesen Beispielcode vervollständigst.

# Print out the number of missing values
print(airline.____)

# Print out summary statistics of the airline DataFrame
print(airline.____)
Code bearbeiten und ausführen