ci.ratio.mad2 | R Documentation |
Computes a confidence interval for a ratio of population MADs (mean absolute deviation from median) in a 2-group design.
ci.ratio.mad2(alpha, y1, y2)
alpha |
alpha level for 1-alpha confidence |
y1 |
vector of scores for group 1 |
y2 |
vector of scores for group 2 |
Returns a 1-row matrix. The columns are:
MAD1 - estimated MAD for group 1
MAD2 - estimated MAD for group 2
MAD1/MAD2 - estimate of MAD ratio
LL - lower limit of the confidence interval
UL - upper limit of the confidence interval
Bonett2003bstatpsych
y1 <- c(32, 39, 26, 35, 43, 27, 40, 37, 34, 29)
y2 <- c(36, 44, 47, 42, 49, 39, 46, 31, 33, 48)
ci.ratio.mad2(.05, y1, y2)
# Should return:
# MAD1 MAD2 MAD1/MAD2 LL UL
# 5.111111 5.888889 0.8679245 0.4520879 1.666253
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.