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 #> 33.761116 -4.267821 coef(lm(mpg ~ wt, data = resample_bootstrap(mtcars))) #> (Intercept) wt #> 36.837227 -5.125097 coef(lm(mpg ~ wt, data = resample_bootstrap(mtcars))) #> (Intercept) wt #> 35.29868 -4.74287