Nothing
cramer <-
function (x,y) {
if (is.matrix(x)) {
if (is.null(rownames(x))) {rownames(x) <- letters[1:nrow(x)]}
if (is.null(colnames(x))) {colnames(x) <- LETTERS[1:ncol(x)]}
var1 <- rep(colnames(x),colSums(x))
var2 <- rep(rep(rownames(x),ncol(x)),as.vector(x))
} else {
var1 <- x
var2 <- y
}
if (length(var1)!=length(var2)) {
stop(paste("'",deparse(substitute(var1)),"' and '",deparse(substitute(var2)),"' lengths differ",sep=""))
}
if (!is.factor(var1)) {var1 <- factor(var1)}
if (!is.factor(var2)) {var2 <- factor(var2)}
nul <- as.numeric(row.names(table(c(which(is.na(var1)), which(is.na(var2))))))
var1.2 <- if (length(nul)>0) {var1[-nul]} else {var1}
var2.2 <- if (length(nul)>0) {var2[-nul]} else {var2}
if (any(tapply(var1.2,var1.2,function(x) length(x)/length(var1.2))<0.05) |
any(tapply(var2.2,var2.2,function(x) length(x)/length(var2.2))<0.05)) {
warning("at least 1 level contains less than 5% of total number of individuals")
}
tab.cont <- table(var1.2,var2.2)
v <- sqrt(as.numeric(suppressWarnings(chisq.test(tab.cont)$statistic))/(sum(tab.cont)*(min(dim(tab.cont))-1)))
return(v)
}
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.