LoslegenKostenlos loslegen

Visualize

It's interesting to see that there are so few planes with three or more engines and 100 or less seats. What is even more interesting is that there is a plane with 4 engines and 2 seats. Turns out this is a fighter jet.

If you plotted this data, you would quickly be able to see how common or unusual data are. Here you'll use the pandas plotting methods to do a quick exploratory plot.

Diese Übung ist Teil des Kurses

Python for R Users

Kurs anzeigen

Interaktive Übung

Vervollständige den Beispielcode, um diese Übung erfolgreich abzuschließen.

import matplotlib.pyplot as plt

# Scatter plot of engines and seats
planes.____(x=____, y=____, kind=____)
plt.show()
Code bearbeiten und ausführen