AllBootResults {Omisc} | R Documentation |
AllBootResults
Description
AllBootResults
Usage
AllBootResults(boot, lower = 0.025, upper = 0.975, data, FUN, ...)
Arguments
boot |
A matrix of bootstrap results |
lower |
the lower alpha |
upper |
the upper alpha |
data |
the data used for analysis |
FUN |
the function used for analysis |
... |
additional arguments to pass to FUN |
Value
a matrix of results. Includes the baseline results, all output from standardBootIntervals, all results from BCa for both the jackknife and bootstrap accelleration methods. The bootstrap accelleration method is experimental.
Examples
data<-DFSimulated()
boots<-NaiveBoot(data, groups="Rs", keepgroups=TRUE)
boots<-bootAnalysis(boots, cbind, DFanalysis, 1,2,3, robust=FALSE)
AllBootResults(boots, .025,.975, data, DFanalysis, 1,2,3, robust=FALSE)
[Package Omisc version 0.1.5 Index]