BaşlayınÜcretsiz başlayın

barplots, pointplots and countplots

The final group of categorical plots are barplots, pointplots and countplot which create statistical summaries of the data. The plots follow a similar API as the other plots and allow further customization for the specific problem at hand.

Bu egzersiz, kursun bir parçasıdır

Intermediate Data Visualization with Seaborn

Kursa Göz Atın

Uygulamalı etkileşimli egzersiz

Bu egzersizi bu örnek kodu tamamlayarak deneyin.

# Show a countplot with the number of models used with each region a different color
sns.____(data=df,
         y="____",
         hue="____")

plt.show()
plt.clf()
Kodu Düzenle ve Çalıştır