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

Finding correlations in your data

Finding correlations between missing data helps you gain a deeper understanding of the type of missing data as well as provides suitable ways in which the missing values can be addressed. In the last video exercise, you learned two important techniques for visually detecting correlation between missing data: heatmaps and dendrograms.

In this exercise, you'll create a missingness heatmap and dendrogram for the diabetes dataset using the missingno package. It has been imported as msno.

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

Dealing with Missing Data in Python

Kursa Göz Atın

Uygulamalı etkileşimli egzersiz

Bu egzersizi bu örnek kodu tamamlayarak deneyin.

# Import missingno
import missingno as msno

# Plot missingness heatmap of diabetes
___.___(___)

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