Learn R Programming

Omisc (version 0.1.5)

AllBootResults: AllBootResults

Description

AllBootResults

Usage

AllBootResults(boot, lower = 0.025, upper = 0.975, data, 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.

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

Examples

Run this code
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)

Run the code above in your browser using DataLab