我想知道是否有可能"风格化" library(dplyr)
for(i in 1:10){
m = mean( mtcars[sample(1:nrow(mtcars), size = 2), 'cyl'] )
print(paste('Mean Boot', i, ':', m))
}
[1] "Mean Boot 1 : 8"
[1] "Mean Boot 2 : 7"
[1] "Mean Boot 3 : 8"
[1] "Mean Boot 4 : 4"
...
结果。
想象一下,我正在运行10次引导平均程序,每次选择2个案例
dplyr
我想知道如何从for(i in 1:10){
mtcars %>% sample_n(2) %>%
summarise(m = mean(cyl)) %>%
print(paste('Mean Boot', i, ':', m))
}
代码中打印出这样的结果。
像
这样的东西brew update
有任何线索吗?