Description Usage Arguments Value Author(s) See Also Examples
This function represents a two dimensional scatter plot associating labels with points.
| 1 2 3 | 
| dfxy | a data frame used to produce the plot | 
| labels | a vector of character strings for the points' labels | 
| xax | an integer (or a vector) indicating which column(s) of  | 
| yax | an integer (or a vector) indicating which column(s) of  | 
| facets | a factor splitting the rows of  | 
| plot | a logical indicating if the graphics is displayed | 
| storeData | a logical indicating if the data should be stored in
the returned object. If  | 
| add | a logical. If  | 
| pos | an integer indicating the position of the
environment where the data are stored, relative to the environment
where the function is called. Useful only if  | 
| ... | additional graphical parameters (see
 | 
An object of class ADEg (subclass S2.label) or ADEgS (if add is TRUE and/or 
if facets or vectors for xax/yax are used).
The result is displayed if plot is TRUE.
Alice Julien-Laferriere, Aurelie Siberchicot aurelie.siberchicot@univ-lyon1.fr and Stephane Dray
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | x0 <- runif(50, -2, 2)
y0 <- runif(50, -2, 2)
z <- x0 ^ 2 + y0 ^ 2
g1 <- s.label(data.frame(x0, y0), label = as.character(z < 1), paxes.draw = TRUE, 
  axis.text = list(col = "grey"))
  
data(mafragh, package = "ade4")
g2 <- s.label(mafragh$xy, nb = mafragh$nb, paxes.draw = FALSE)
data(irishdata, package = "ade4")
g3 <- s.label(irishdata$xy.utm, Sp = irishdata$Spatial.contour)   
## update irishdata$xy.utm call to irishdata$xy
## Not run: data(atlas, package = "ade4")
  g4 <- s.label(atlas$xy, lab = atlas$names.district, Sp = atlas$Spatial.contour)
  g5 <- s.label(atlas$xy, lab = atlas$names.district, Sp = atlas$Spatial)
## End(Not run)
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.