LoslegenKostenlos loslegen

Comparing a histogram and displot

The pandas library supports simple plotting of data, which is very convenient when data is already likely to be in a pandas DataFrame.

Seaborn generally does more statistical analysis on data and can provide more sophisticated insight into the data. In this exercise, we will compare a pandas histogram vs the seaborn displot.

Diese Übung ist Teil des Kurses

Intermediate Data Visualization with Seaborn

Kurs anzeigen

Interaktive Übung

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

# Display pandas histogram
df['Award_Amount'].plot.____()
plt.show()

# Clear out the pandas histogram
plt.clf()
Code bearbeiten und ausführen