ComeçarComece de graça

Finding class imbalance

You are focusing on the important preliminary phase of the machine learning lifecycle: Exploratory Data Analysis (EDA).

EDA allows you to better understand the nature of the heart_disease_df dataset, including the relationships between different variables, and potential problems that might need to be addressed before you move on to training your model. Understanding the distribution of classes in your features - for example, patient sex - is a key part of EDA.

Class imbalance, where one class has significantly more samples than another, can potentially bias your model's training process, leading it to favor the majority class.

Este exercício faz parte do curso

End-to-End Machine Learning

Ver curso

Instruções do exercício

  • Print out the class balance of the sex column.

Exercício interativo prático

Experimente este exercício completando este código de exemplo.

# Print the sex value counts of the heart disease dataset
print(____[____].____)
Editar e executar o código