plotSubGroups {kml} | R Documentation |
plot the trajectories of all the subgroups of an object ClusterizLongData
relativly
to a Clusterization
.
plotSubGroups(x, y, ...)
x |
[ClusterizLongData]: Object containing the trajectories to plot. |
y |
[numeric] or [vector(numeric)]: Give the Clusterization
to represent. If y is missing, the Clusterization with
the highest Calinski creterion is selected. If y is a number,
the first Clusterization of the sublist c-y is
selected. If y is a couple of numeric, the y[2] th
Clusterization of the sublist c-y[1] is selected. |
... |
Graphical
parameters to be passed to methods (see plot ). More precisely:
|
Christophe M. Genolini
PSIGIAM: Paris Sud Innovation Group in Adolescent Mental Health
INSERM U669 / Maison de Solenn / Paris
Contact author : <genolini@u-paris10.fr>
Raphaël Ricaud
Laboratoire "Sport & Culture" / "Sports & Culture" Laboratory
University of Paris 10 / Nanterre
Article submited
Web site: http://christophe.genolini.free.fr/kml
Overview: kml-package
Classes : ClusterizLongData
, ArtificialLongData
Plot : plot: overview
, plot(ClusterizLongData)
,
plot(Calinski)
, plotAll(ClusterizLongData)
ld <- gald() kml(ld,,5) par(ask=TRUE) ### Default ploting plotSubGroups(ld) ### Only the trajectories in black plotSubGroups(ld,colorMean="no",colorTraj="black") ### Only the mean trajectories, with letters (for publication ?) plotSubGroups(ld,colorTraj="no",colorMean="black",point="letters",size=2) ### All at once. plotSubGroups(ld,colorMean="both",point="letters",size=2) par(ask=FALSE)