score {jmuOutlier} | R Documentation |
Generating van der Waerden and Exponential Scores
Description
Generates van der Waerden scores (i.e., normal quantiles) and exponential
(similar to Savage) scores, for combined data x
and y
.
Usage
score(x, y = NULL, expon = FALSE)
Arguments
x |
A positive integer equal to the number of desired scores when |
y |
An optional vector of observations, typically used with two-sample tests. |
expon |
Logical; if |
Details
The scored values for x
are the output, when y
is NULL
.
Value
x |
Scored values for |
y |
Scored values for |
Note
The formulas computed within score
are based on the textbook by Higgins (2004).
Author(s)
Steven T. Garren, James Madison University, Harrisonburg, Virginia, USA
References
Higgins, J. J. (2004) Introduction to Modern Nonparametric Statistics.
Examples
score( 10 )
score( 15, expon=TRUE )
score( c(4,7,6,22,13), c(15,16,7) ) # Two samples, including a tie.