Representation of the link between a variable and a set of qualitative variables
represents the link between a variable and a set of qualitative variables.
sco.boxplot(score, df, labels = names(df), clabel = 1, xlim = NULL, grid = TRUE, cgrid = 0.75, include.origin = TRUE, origin = 0, sub = NULL, csub = 1)
score
: a numeric vectordf
: a data frame with only factorslabels
: a vector of strings of characters for the labels of variablesclabel
: if not NULL, a character size for the labels, used with par("cex")*clabel
xlim
: the ranges to be encompassed by the x axis, if NULL they are computedgrid
: a logical value indicating whether the scale vertical lines should be drawncgrid
: a character size, parameter used with par("cex")*cgrid
to indicate the mesh of the scaleinclude.origin
: a logical value indicating whether the point "origin" should be belonged to the graph spaceorigin
: the fixed point in the graph space, for example 0 the origin axissub
: a string of characters to be inserted as legendcsub
: a character size for the legend, used with par("cex")*csub
Daniel Chessel
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))
Useful links