1-D plot of a numeric score by Gaussian curves
s1d.gauss.RdThis function represents a score with a Gauss curve for each level of a factor.
Arguments
- score
a numeric vector (or a data frame) used to produce the plot
- fac
a factor (or a matrix of factors) to split
score- wt
a vector of weights for
score- steps
a value for the number of segments used to draw the Gauss curves
- col
a logical, a color or a colors vector for labels, rugs, lines and polygons according to their factor level. Colors are recycled whether there are not one color by factor level.
- fill
a logical to yield the polygons Gauss curves filled
- facets
a factor splitting
scoreso that subsets of the data are represented on different sub-graphics- plot
a logical indicating if the graphics is displayed
- storeData
a logical indicating if the data are stored in the returned object. If
FALSE, only the names of the data arguments are stored- add
a logical. If
TRUE, the graphic is superposed to the graphics already plotted in the current device- 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
storeDataisFALSE- ...
additional graphical parameters (see
adegparandtrellis.par.get)
Details
Graphical parameters for rugs are available in plines of adegpar and the ones for Gauss curves filled in ppolygons.
Some appropriated graphical parameters in p1d are also available.
Value
An object of class ADEg (subclass C1.gauss) or ADEgS (if add is TRUE and/or
if facets or data frame for score or data frame for fac are used).
The result is displayed if plot is TRUE.
Author
Alice Julien-Laferriere, Aurelie Siberchicot aurelie.siberchicot@univ-lyon1.fr and Stephane Dray
Examples
data(meau, package= "ade4")
envpca <- ade4::dudi.pca(meau$env, scannf = FALSE)
dffac <- cbind.data.frame(meau$design$season, meau$design$site)
g1 <- s1d.gauss(envpca$li[, 1], fac = dffac, fill = TRUE, col = 1:6)
#> Error in multi.variables.C1(thecall, "fac"): object 'envpca' not found
update(g1, steps = 10)
#> Error in h(simpleError(msg, call)): error in evaluating the argument 'object' in selecting a method for function 'update': object 'g1' not found
g2 <- s1d.gauss(envpca$li[, 1], dffac[, 2], ppoly.col = 1:4, paxes.draw = TRUE, ylim = c(0, 2),
fill = TRUE, p1d.hori = FALSE)