R/bootstrap.R
resample_bootstrap.Rd
Generate a boostrap replicate
resample_bootstrap(data)
A data frame
Other resampling techniques: bootstrap(), resample_partition(), resample()
bootstrap()
resample_partition()
resample()
coef(lm(mpg ~ wt, data = resample_bootstrap(mtcars))) #> (Intercept) wt #> 38.669661 -5.681999 coef(lm(mpg ~ wt, data = resample_bootstrap(mtcars))) #> (Intercept) wt #> 37.796206 -5.452933 coef(lm(mpg ~ wt, data = resample_bootstrap(mtcars))) #> (Intercept) wt #> 35.763073 -4.991174