Description Usage Arguments Value Author(s) References Examples
This function will perform Miller's Jackknife Procedure to test differences in scale between 2 samples. It is best for large samples.
1 2 | miller.jack(x, y, alpha = NULL,
alternative =c("two.sided", "greater", "less"), exact = FALSE)
|
x |
A vector containing data from the first sample. |
y |
A vector containing data from the second sample. |
alpha |
The Significance level, defaults to 0.05. |
alternative |
Defaults to two.sided. Used to determine what type of test to run. |
exact |
Defaults to FALSE. Used to determine whether to run the exact procedure or a large sample approximation. |
J |
The test statistic. |
Significance Level |
Returns the alpha value. |
P-value |
Returns the p-value from Miller's Jackknife Procedure. |
D. Lukke Sweet
Wiley Series in Probability and Statistics: Nonparametric Statistical Methods (3rd Edition). (2013). John Wiley & Sons.
1 2 3 | ## Run Miller's Jackknife Procedure on the 2 vectors.
miller.jack(x= c(6.2, 5.9, 8.9, 6.5, 8.6),
y = c(9.5, 9.8, 9.5, 9.6, 10.3), alpha=0.05, alternative="less")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.