Nothing
"score.acm" <- function (x, xax = 1, which.var = NULL, mfrow = NULL, sub = names(oritab),
csub = 2, possub = "topleft", ...)
{
if (!inherits(x, "acm"))
stop("Object of class 'acm' expected")
if (x$nf == 1)
xax <- 1
if ((xax < 1) || (xax > x$nf))
stop("non convenient axe number")
def.par <- par(no.readonly = TRUE)
on.exit(par(def.par))
oritab <- eval.parent(as.list(x$call)[[2]])
nvar <- ncol(oritab)
if (is.null(which.var))
which.var <- (1:nvar)
if (is.null(mfrow))
par(mfrow = n2mfrow(length(which.var)))
if (prod(par("mfrow")) < length(which.var))
par(ask = TRUE)
par(mar = c(2.6, 2.6, 1.1, 1.1))
score <- x$l1[, xax]
for (i in which.var) {
y <- oritab[, i]
moy <- unlist(tapply(score, y, mean))
plot(score, score, type = "n")
h <- (max(score) - min(score))/40
abline(h = moy)
segments(score, moy[y] - h, score, moy[y] + h)
abline(0, 1)
scatterutil.eti(moy, moy, label = as.character(levels(y)),
clabel = 1.5)
scatterutil.sub(sub[i], csub = csub, possub = possub)
}
}
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.