Andrew Bass

Results 2 comments of Andrew Bass

Sorry for not clarifying ... So bootstrapping within each group: ```R library(slipper) mtcars %>% group_by(cyl) %>% slipper(mean(mpg),B=100) mtcars %>% group_by(cyl) %>% slipper_lm(mpg ~ disp,B=100) ``` So I think the only...

quick hack: ``` tmp % group_by(cyl) %>% do(slipper_lm(mpg ~ disp, B = 100, df = .)) ```