Confusion matrix interpretation
You are given the actual diagnoses and predicted diagnoses for the heart_disease dataset - actuals
and predictions
respectively. Import and create a confusion matrix of these diagnoses using the imported confusion_matrix()
function in order to select the correct answer. Note that the sklearn output format for confusion matricies is:
Actual: Heart disease | Actual: No heart disease | |
---|---|---|
Predicted: Heart disease | ||
Predicted: No heart disease |
⚠️ Note: Type your code in the IPython Shell terminal and press Enter.
Este ejercicio forma parte del curso
End-to-End Machine Learning
Ejercicio interactivo práctico
Convierte la teoría en acción con uno de nuestros ejercicios interactivos
