Learn R Programming

rhoR (version 1.3.1)

rhoMin: Rho Min

Description

This function calculates the minimum testSetLength where it is possible to get a rho less than alpha for the given parameters of rho.

Usage

rhoMin(baserate, alpha = 0.05, inc = 10, printInc = FALSE, ...)

Value

The minimum length of testSet, to the nearest multiple of inc, greater than the minimum length, that would give a value where rho less than alpha becomes mathematically possible.

Arguments

baserate

A baserate

alpha

The threshold of significance for rho (similar to an alpha level for a p value), defaulted to 0.05

inc

An integer indicating by how much the testSetLength should increase each iteration

printInc

A boolean indicating whether to print out each increment value with it's corresponding significance for rho

...

Any additional parameters passed into rho

Examples

Run this code
#Add testSetBaserateInflation as an additional parameter
rhoMin(0.2, testSetBaserateInflation = 0.33)

#Add testSetBaserateInflation as well as changing inc and selecting printInc
rhoMin(0.2, inc = 5, printInc = TRUE, testSetBaserateInflation = 0.33)

Run the code above in your browser using DataLab