Description Usage Arguments Examples
This function allows the finding the model which gives the maximum gini value. Statistical requirements will not be provided. Can only be used to give an inference.
1 2 |
data |
A data set needs to be specified. |
default_flag |
The default flag need to specified as string. |
seed_value |
A seed value need to specified for replicability. |
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)
max.gini.model(example_data, "default_f",10)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.