1 |
x |
|
y |
|
alpha |
|
con |
|
est |
|
plotit |
|
grp |
|
nboot |
|
hoch |
|
SEED |
|
... |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 | ##---- Should be DIRECTLY executable !! ----
##-- ==> Define data, use random,
##-- or do help(data=index) for the standard data sets.
## The function is currently defined as
function (x, y = NULL, alpha = 0.05, con = 0, est = onestep,
plotit = TRUE, grp = NA, nboot = NA, hoch = TRUE, SEED = TRUE,
...)
{
if (!is.null(y[1]))
x <- cbind(x, y)
if (!is.list(x) && !is.matrix(x))
stop("Data must be stored in a matrix or in list mode.")
if (is.list(x)) {
if (is.matrix(con)) {
if (length(x) != nrow(con))
stop("The number of rows in con is not equal to the number of groups.")
}
}
if (is.list(x)) {
mat <- matl(x)
}
if (is.matrix(x) && is.matrix(con)) {
if (ncol(x) != nrow(con))
stop("The number of rows in con is not equal to the number of groups.")
mat <- x
}
if (is.matrix(x))
mat <- x
if (!is.na(sum(grp)))
mat <- mat[, grp]
x <- mat
mat <- elimna(mat)
x <- mat
J <- ncol(mat)
n = nrow(mat)
if (n >= 80)
hoch = T
Jm <- J - 1
if (sum(con^2) == 0) {
d <- (J^2 - J)/2
con <- matrix(0, J, d)
id <- 0
for (j in 1:Jm) {
jp <- j + 1
for (k in jp:J) {
id <- id + 1
con[j, id] <- 1
con[k, id] <- 0 - 1
}
}
}
d <- ncol(con)
if (is.na(nboot)) {
nboot <- 5000
if (d <= 10)
nboot <- 3000
if (d <= 6)
nboot <- 2000
if (d <= 4)
nboot <- 1000
}
n <- nrow(mat)
crit.vec <- alpha/c(1:d)
connum <- ncol(con)
xx <- x %*% con
xx <- as.matrix(xx)
if (SEED)
set.seed(2)
psihat <- matrix(0, connum, nboot)
bvec <- matrix(NA, ncol = connum, nrow = nboot)
data <- matrix(sample(n, size = n * nboot, replace = TRUE),
nrow = nboot)
if (ncol(xx) == 1) {
for (ib in 1:nboot) psihat[1, ib] <- est(xx[data[ib,
]], ...)
}
if (ncol(xx) > 1) {
for (ib in 1:nboot) psihat[, ib] <- apply(xx[data[ib,
], ], 2, est, ...)
}
test <- 1
for (ic in 1:connum) {
test[ic] <- (sum(psihat[ic, ] > 0) + 0.5 * sum(psihat[ic,
] == 0))/nboot
test[ic] <- min(test[ic], 1 - test[ic])
}
test <- 2 * test
ncon <- ncol(con)
if (alpha == 0.05) {
dvec <- c(0.025, 0.025, 0.0169, 0.0127, 0.0102, 0.00851,
0.0073, 0.00639, 0.00568, 0.00511)
if (ncon > 10) {
avec <- 0.05/c(11:ncon)
dvec <- c(dvec, avec)
}
}
if (alpha == 0.01) {
dvec <- c(0.005, 0.005, 0.00334, 0.00251, 0.00201, 0.00167,
0.00143, 0.00126, 0.00112, 0.00101)
if (ncon > 10) {
avec <- 0.01/c(11:ncon)
dvec <- c(dvec, avec)
}
}
if (alpha != 0.05 && alpha != 0.01) {
dvec <- alpha/c(1:ncon)
dvec[2] <- alpha/2
}
if (hoch)
dvec <- alpha/(2 * c(1:ncon))
dvec <- 2 * dvec
if (plotit && connum == 1) {
plot(c(psihat[1, ], 0), xlab = "", ylab = "Est. Difference")
points(psihat[1, ])
abline(0, 0)
}
temp2 <- order(0 - test)
ncon <- ncol(con)
zvec <- dvec[1:ncon]
sigvec <- (test[temp2] >= zvec)
output <- matrix(0, connum, 6)
dimnames(output) <- list(NULL, c("con.num", "psihat", "p.value",
"p.crit", "ci.lower", "ci.upper"))
tmeans <- apply(xx, 2, est, ...)
psi <- 1
icl <- round(dvec[ncon] * nboot/2) + 1
icu <- nboot - icl - 1
for (ic in 1:ncol(con)) {
output[ic, 2] <- tmeans[ic]
output[ic, 1] <- ic
output[ic, 3] <- test[ic]
output[temp2, 4] <- zvec
temp <- sort(psihat[ic, ])
output[ic, 5] <- temp[icl]
output[ic, 6] <- temp[icu]
}
num.sig <- sum(output[, 3] <= output[, 4])
list(output = output, con = con, num.sig = num.sig)
}
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.