AllBootResults: AllBootResults

View source: R/AllBootResults.R

AllBootResultsR 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)

Omisc documentation built on Aug. 9, 2022, 5:09 p.m.

Related to AllBootResults in Omisc...