View source: R/standardBootIntervals.R
standardBootIntervals | R Documentation |
This returns the quantiles of the bootstrap samples specified by the user. The quantiles uses the type=4 argument of the quantile function, which appears to function best.
standardBootIntervals(boot, lower = 0.025, upper = 0.975)
boot |
A vector of bootstrap results |
lower |
the lower alpha |
upper |
the upper alpha |
A matrix of the mean, median, min, max, lower and upper CI values
data<-DFSimulated() boots<-NaiveBoot(data, groups="Rs", keepgroups=TRUE, B=100) boots<-bootAnalysis(boots, cbind, DFanalysis,1,2,3,TRUE,FALSE,TRUE,TRUE,FALSE) apply(boots,1, standardBootIntervals) DFanalysis(data,1,2,3)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.