Nothing
CritSam <- function(n = 5, Dpos = TRUE, alphalimit = 0.05, pvaluetype = "dost")
{
X <- GenerateSamples(n)
ncomp <- nrow(X)
Res <- NULL
Ds <- NULL
pval <- NULL
fA <- NULL
options(warn=-1)
for (i in 1:nrow(X)) {
fA <- c(fA, (2 * X[i, 1] + X[i, 2])/(2 * n))
Ds <- c(Ds, HWChisq(X[i, ], verbose = FALSE)$D)
pval <- c(pval, HWExact(X[i, ], alternative = "two.sided",
pvaluetype = pvaluetype, verbose = FALSE)$pval)
}
Y <- data.frame(X[, 1], X[, 2], X[, 3], fA, Ds, pval)
colnames(Y) <- c("AA", "AB", "BB", "fA", "Ds", "pval")
if (Dpos)
Y <- Y[Y$Ds > 0, ]
else Y <- Y[Y$Ds < 0, ]
Y <- Y[Y$pval < alphalimit, ]
fre <- unique(fA)
for (i in 1:length(fre)) {
Ys <- Y[Y$fA == fre[i], ]
if (nrow(Ys) > 0) {
indi <- which.max(Ys$pval)
Ys <- Ys[indi, ]
Res <- rbind(Res, c(Ys$AA, Ys$AB, Ys$BB))
}
}
Xn <- Res/n
options(warn=0)
return(list(Xn = Xn, Ds = Ds, fA = fA))
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.