NormalizedGini | R Documentation |
Compute the Normalized Gini Coefficient.
NormalizedGini(y_pred, y_true)
y_pred |
Predicted labels vector, as returned by a model |
y_true |
Ground truth (correct) labels vector |
Normalized Gini Coefficient
d_AD <- data.frame(treatment = gl(3,3), outcome = gl(3,1,9),
counts = c(18,17,15,20,10,20,25,13,12))
glm_poisson <- glm(counts ~ outcome + treatment,
family = poisson(link = "log"), data = d_AD)
NormalizedGini(y_pred = glm_poisson$fitted.values, y_true = d_AD$counts)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.