Description Usage Arguments Examples
This function performs the calculation of the Gini from the estimated values calculated by logistic regression of a variable. It should be noted that the Gini values calculated by logistic regression.
1 | Gini.univariate(data, default_flag, variable)
|
data |
A data set needs to be specified. |
default_flag |
The default flag need to specified as string. |
variable |
The name of the variable need to specified to calculate Gini value. |
1 2 3 4 5 | default_f <- c('1','0','0', '1','1','0','0','1','1')
birth_year <- c(1980, 1985, 1971,1971,1985,1971,1980,1980,1985)
job <- c(1,1,2, 2,2,3,3,2,3)
example_data <- data.frame(default_f,birth_year,job)
Gini.univariate(example_data, "default_f", "birth_year")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.