Nothing
chisq.theo.bintest <-
function(formula,data,p) {
if (missing(formula)||(length(formula)!=3)) {stop("missing or incorrect formula")}
m <- match.call()
if (is.matrix(eval(m$data,parent.frame()))) {m$data <- as.data.frame(m$data)}
m[[1]] <- as.name("model.frame")
m$p <- NULL
mf <- eval(m,parent.frame())
mf <- droplevels(mf[complete.cases(mf),])
dname <- paste(names(mf)[1],paste(names(mf)[2:ncol(mf)],collapse=":"),sep=" by ")
resp.mf <- mf[,1]
resp <- factor(as.numeric(factor(resp.mf))-1)
if (nlevels(resp)!=2) {stop(paste(names(mf)[1],"is not a binary variable"))}
resp.num <- as.numeric(as.character(resp))
fact <- interaction(mf[,2:ncol(mf)],sep=":")
proba <- tapply(resp.num,fact,mean)
names(proba) <- paste("proba in group ",levels(fact),sep="")
null.value <- p
names(null.value) <- paste("proba in group ",levels(fact),sep="")
tab.cont <- table(fact,relevel(resp,ref="1"))
result <- list(data.name=dname,alternative="two.sided",null.value=null.value,estimate=proba)
test <- suppressWarnings(prop.test(tab.cont,p=p))
result$statistic <- test$statistic
result$parameter <- test$parameter
result$p.value <- test$p.value
result$method.test <- "Pearson's Chi-squared test"
class(result) <- "htest"
return(result)
}
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.