Last chance! 50% off unlimited learning
Sale ends in
Adds a trellis
object containing one or several labels on one or several graphical objects.
addtext(object, xcoord, ycoord, label, plot = TRUE, ...)
An object of class ADEgS
.
an object of class ADEg
, trellis
or ADEgS
an integer (or a vector) indicating where label
is(are) plotted on the x-axis,
passed to the adeg.panel.label
an integer (or a vector) indicating where label
is(are) plotted on the y-axis,
passed to the adeg.panel.label
a character string (or a vector) containing the label(s) displayed on object
a logical indicating if the graphics is displayed
Other arguments. Additional graphical parameters (see the plabels
list in
adegpar
and trellis.par.get
).
If object
is an ADEgS
, the argument which
identify which
ADEg
is/are used for superposition.
Aurelie Siberchicot aurelie.siberchicot@univ-lyon1.fr and Stephane Dray
ADEg
ADEgS
adeg.panel.label
data(dunedata, package = "ade4")
afc1 <- ade4::dudi.coa(dunedata$veg, scannf = FALSE)
g1 <- table.value(dunedata$veg, symbol = "circle", ppoints.cex = 0.5, plot = FALSE)
addtext(g1, 1, 20, "A", plabels.srt = 45, plabels.box.draw = FALSE, plabels.col = "red")
xy <- cbind.data.frame(x = runif(200, -1, 1), y = runif(200, -1, 1))
posi <- factor(xy$x > 0) : factor(xy$y > 0)
g2 <- s.class(xy, fac = posi, facets = posi, pellipses.col = 1:4, plabels.cex = 0,
plegend.drawKey = FALSE, psub.cex = 0, plot = FALSE)
addtext(g2, c(0.5, 0.5, -0.5, -0.5), c(0.5, -0.5), levels(posi), plabels.cex = 2, plabels.col = 1:4)
Run the code above in your browser using DataLab