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
.
Este exercício faz parte do curso
Dealing with Missing Data in Python
Exercício interativo prático
Experimente este exercício completando este código de exemplo.
# Import missingno
import missingno as msno
# Plot missingness heatmap of diabetes
___.___(___)
# Show plot
plt.show()