plot {kml} | R Documentation |
Four fonctions plot
are define in the package KmL. See detail.
plot(x, y, ...)
x |
See details |
y |
See details |
... |
See details |
Four methods plot
are define in the package KmL, depending on the
data they plot :
plot(ClusterizLongData)
or plotTraj(ClusterizLongData)
Clusterization
plot(Calinski)
or plotCalinski(Calinski)
plotSubGroups(ClusterizLongData)
Clusterization
plotAll(ClusterizLongData)
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
, Clusterization
, ArtificialLongData
Plot : plot(ClusterizLongData)
,
plot(Calinski)
,
plotSubGroups(ClusterizLongData)
, plotAll(ClusterizLongData)
ld <- gald() kml(ld,,5) par(ask=TRUE) ### Default ploting plot(ld) ### Plot all the trajectories plotTraj(ld) ### Plot by subgroups plotSubGroups(ld) ### Calinski and all at once plotAll(ld,point="symbols",size=1) par(ask=FALSE)