BCI-package: Get bootstrapped confidence intervals

Description Details Author(s) References Examples

Description

This package helps you use the boot package together with the plyr and dplyr packages. It provides high level functions that allow you to compute bootstrapped confidence intervals.

Details

This package was not yet installed at build time.

Index: This package was not yet installed at build time.
BCI let's you get a vector's confidence intervals through CI(), a lower bound with LowerCI(), and an upper bound with TopCI().

Author(s)

Julian Jara-Ettinger

Maintainer: Julian Jara-Ettinger <jjara@mit.edu>

References

see boot documentation.

Examples

1
2
3
4
5
6
library(datasets)
library(dplyr)
airquality %>% group_by(Month) %>%
summarise(MeanWind=mean(Wind),
	      LowerBound=LowerCI(Wind),
	      UpperBound=TopCI(Wind))

julianje/BCI documentation built on May 20, 2019, 4:21 a.m.