UtilORVarComponentsFactorial {RJafroc}R Documentation

Utility for estimating Obuchowski-Rockette variance components for factorial datasets

Description

Utility for estimating Obuchowski-Rockette variance components for factorial datasets

Usage

UtilORVarComponentsFactorial(
  dataset,
  FOM,
  FPFValue = 0.2,
  covEstMethod = "jackknife",
  nBoots = 200,
  seed = NULL
)

Arguments

dataset

The factorial dataset object

FOM

The figure of merit

FPFValue

Only needed for LROC data and FOM = "PCL" or "ALROC"; where to evaluate a partial curve based figure of merit. The default is 0.2.

covEstMethod

The covariance estimation method, "jackknife" (the default) or "bootstrap" or "DeLong" (DeLongt is applicable only for FOM = Wilcoxon).

nBoots

Only needed for bootstrap covariance estimation method. The number of bootstraps, defaults to 200.

seed

Only needed for the bootstrap covariance estimation method. The initial seed for the random number generator, the default is NULL, as if no seed has been specified.

Details

The variance components are obtained using StSignificanceTesting with method = "OR".

Value

A list object containing the following data.frames:

Examples

## use the default jackknife for covEstMethod
vc <- UtilORVarComponentsFactorial(dataset02, FOM = "Wilcoxon")
str(vc) 

UtilORVarComponentsFactorial(dataset02, FOM = "Wilcoxon", 
   covEstMethod = "bootstrap", nBoots = 2000, seed = 100)$VarCom 

UtilORVarComponentsFactorial(dataset02, FOM = "Wilcoxon", covEstMethod = "DeLong")$VarCom 
  

[Package RJafroc version 2.1.2 Index]