Description Usage Arguments Author(s) Examples
represents the link between a variable and a set of qualitative variables.
1 2 3 |
score |
a numeric vector |
df |
a data frame with only factors |
labels |
a vector of strings of characters for the labels of variables |
clabel |
if not NULL, a character size for the labels, used with |
xlim |
the ranges to be encompassed by the x axis, if NULL they are computed |
grid |
a logical value indicating whether the scale vertical lines should be drawn |
cgrid |
a character size, parameter used with |
include.origin |
a logical value indicating whether the point "origin" should be belonged to the graph space |
origin |
the fixed point in the graph space, for example 0 the origin axis |
sub |
a string of characters to be inserted as legend |
csub |
a character size for the legend, used with |
Daniel Chessel
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | w1 <- rnorm(100,-1)
w2 <- rnorm(100)
w3 <- rnorm(100,1)
f1 <- gl(3,100)
f2 <- gl(30,10)
sco.boxplot(c(w1,w2,w3), data.frame(f1,f2))
data(banque)
banque.acm <- dudi.acm(banque, scan = FALSE, nf = 4)
par(mfrow = c(1,3))
sco.boxplot(banque.acm$l1[,1], banque[,1:7], clab = 1.8)
sco.boxplot(banque.acm$l1[,1], banque[,8:14], clab = 1.8)
sco.boxplot(banque.acm$l1[,1], banque[,15:21], clab = 1.8)
par(mfrow = c(1,1))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.