cBohnWolfe: Function to compute a critical value for the Bohn-Wolfe U...

View source: R/cBohnWolfe.R

cBohnWolfeR Documentation

Function to compute a critical value for the Bohn-Wolfe U distribution.

Description

This function uses Monte Carlo sampling to compute the critical value for the Bohn-Wolfe U distribution at (or close to) the given alpha level. The Monte Carlo samples are simulated based on the order statistics of a uniform(0,1) distribution.

Usage

cBohnWolfe(alpha,k,q,c,d,method="Monte Carlo",n.mc=10000)

Arguments

alpha

A numeric value between 0 and 1.

k

A numeric value indicating the set size of the first data group in the RSS (X).

q

A numeric value indicating the set size of the second data group in the RSS (Y).

c

A numeric value indicating the number of cycles for the first data group in the RSS (X).

d

A numeric value indicating the number of cycles for the second data group in the RSS (Y).

method

For this procedure, method is currently set automatically to "Monte Carlo" as the only option that is available. For standardization with other critical value procedures in the NSM3 package, "Asymptotic" and "Exact" will be supported in future versions.

n.mc

Number of Monte Carlo samples used to estimate the distribution of U.

Value

Returns a list with "NSM3Ch5c" class containing the following components:

m

number of observations in RSS for the first data group (X)

n

number of observations in RSS for the second data group (Y)

cutoff.U

upper tail cutoff at or below user-specified alpha

true.alpha.U

true alpha level corresponding to cutoff.U

Author(s)

Grant Schneider

References

Bohn, Lora L., and Douglas A. Wolfe. "Nonparametric two-sample procedures for ranked-set samples data." Journal of the American Statistical Association 87.418 (1992): 552-561.

Examples

cBohnWolfe(.0515,4,4,5,5)
cBohnWolfe(.0303,2,3,3,3)

NSM3 documentation built on Sept. 8, 2023, 5:52 p.m.

Related to cBohnWolfe in NSM3...