ComenzarEmpieza gratis

Computing Gini index

The decision tree algorithm aims to achieve partitions in the terminal nodes that are as pure as possible. The Gini index is one of the methods used to achieve this. It is calculated based on the proportion of samples in each group.

Given the number of people who stayed and left respectively, calculate the Gini index for that node.

Este ejercicio forma parte del curso

HR Analytics: Predicting Employee Churn in Python

Ver curso

Instrucciones del ejercicio

  • Calculate the total number of employees in that node.
  • Compute the Gini index based on proportion of employees in each group.

Ejercicio interactivo práctico

Prueba este ejercicio y completa el código de muestra.

#number of people who stayed/left
stayed = 37
left = 1138

#sum of stayed and left
total = ____ + ____

#gini index
gini = ____*(____/total)*(____/total)
Editar y ejecutar código