Learn R Programming

adegraphics (version 1.0-21)

addpoint: Adds points on graphics.

Description

Adds a trellis object containing one or several points on one or several graphical objects.

Usage

addpoint(object, xcoord, ycoord, plot = TRUE, ...)

Value

An object of class "ADEgS".

Arguments

object

an object of class ADEg or ADEgS

xcoord

an integer (or a vector) indicating where label is(are) plotted on the x-axis, passed to the panel.points function of the lattice package

ycoord

an integer (or a vector) indicating where label is(are) plotted on the y-axis, passed to the panel.points function of the lattice package

plot

a logical indicating if the graphics is displayed

...

Other arguments. Additional graphical parameters (see the ppoints list in adegpar and trellis.par.get). If object is an ADEgS, the argument which identify which ADEg is/are used for superposition.

Author

Aurelie Siberchicot aurelie.siberchicot@univ-lyon1.fr and Stephane Dray

See Also

ADEg ADEgS panel.points

Examples

Run this code
data(deug, package = "ade4")
deug$cent[1]
g1 <- s1d.density(deug$tab[, 1], plot = FALSE)
addpoint(g1, xcoord = deug$cent[1], ycoord = 0, ppoints = list(col = "black",
  pch = "*", cex = 3))

Run the code above in your browser using DataLab