Description Usage Arguments Examples
This function performs the calculation of the Gini (by time) from the estimated values calculated by logistic regression for a given data set. It should be noted that the Gini values calculated by logistic regression.
1 2 |
data |
A data set needs to be specified. |
default_flag |
The default flag need to specified as string. |
PD |
The PD variable need to be specified as string |
time |
The time variable need to be specified as string |
1 2 3 4 5 6 | 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)
pd <- c(0.5, 0.2,0.4,0.5,0.7,0.9,0.2,0.3,0.3,0.6)
example_data <- data.frame(default_f,birth_year,job, pd)
time.series.gini(example_data, "default_f","pd","birth_year")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.