gini_impurity: Gini Impurity

Description Usage Arguments Details Examples

View source: R/gini_impurity.R

Description

Calculates the Gini Impurity of a set

Usage

1

Arguments

vals

A vector of values. Values can be given as raw instances like c("red", "red", "blue", "green") or as a named vector of class frequencies like c(red=2, blue=1, green=1)

Details

Gini Impurity is a measure of how often a randomly chosen element from a set would be incorrectly labeled if it was randomly labeled according to the distribution of labels in the set.

Examples

1
2
gini_impurity(c("red", "red", "blue", "green"))
gini_impurity(c(red=2, blue=1, green=1))

ben519/mltools documentation built on Sept. 22, 2021, 4:30 p.m.