I used rsample::bootstraps function to create a nested object just as follows :
Sampled_Data=bootstraps(credit_data,times = 2,strata="Home",apparent = TRUE)
What I get is as follows :
splits id
<list> <chr>
1 <split [34338/12635]> Bootstrap1
2 <split [34338/12592]> Bootstrap2
3 <split [34338/34338]> Apparent
I would like to compute the Gini Index based on Columns "Status" and "Expenses" for all the bootstrapped dataframes just like this :
library(pROC)
2*auc(credit_data$Status,credit_data$Expenses)-1
The problem is that i don't know how to do it without unnesting and doing a for loop.
It seems that purr package should be interesting to be used here but I'm not familiar with this.
What I would like to have :
splits id Gini
<list> <chr>
1 <split [34338/12635]> Bootstrap1 x
2 <split [34338/12592]> Bootstrap2 y
3 <split [34338/34338]> Apparent z
Any help ?
Thanks
I'll assume that you want to bootstrap this to get confidence intervals.
You would use
apparent = TRUE
for some types of intervals, so I'll omit that here.Created on 2023-07-17 with reprex v2.0.2