Skip to content

Generate a boostrap replicate

Usage

resample_bootstrap(data)

Arguments

data

A data frame

See also

Other resampling techniques: bootstrap(), resample_partition(), resample()

Examples

coef(lm(mpg ~ wt, data = resample_bootstrap(mtcars)))
#> (Intercept)          wt 
#>   36.505295   -5.165256 
coef(lm(mpg ~ wt, data = resample_bootstrap(mtcars)))
#> (Intercept)          wt 
#>   35.050591   -4.725489 
coef(lm(mpg ~ wt, data = resample_bootstrap(mtcars)))
#> (Intercept)          wt 
#>   38.394262   -5.683444