as.clusterizLongData {kml} | R Documentation |
as.cld
(or as.clusterizLongData
) turns data into an object of class ClusterizLongData
.
as.cld(data, ...) as.clusterizLongData(data, ...)
data |
data is either a matrix , a data.frame or an object
of class ArtificialLongData . See each method
for detail. |
... |
See each method for detail. |
For matrix
see as.cld.matrix
.
For data.frame
see as.cld.data.frame
.
For ArtificialLongData
, see as.cld.artificialLongData
.
An object of class ClusterizLongData
.
Christophe Genolini
PSIGIAM: Paris Sud Innovation Group in Adolescent Mental Health
INSERM U669 / Maison de Solenn / Paris
Responsable : <genolini@u-paris10.fr>
Raphaël Ricaud
Laboratoire "Sport & Culture" / "Sports & Culture" Laboratory
University of Paris 10 / Nanterre
as.cld.matrix
, as.cld.data.frame
,as.cld.artificialLongData
,kml-package
### as.cld for data.frame : dn <- data.frame(i=11:13,size12=c(15,13,14),size14=c(16,15,17),size20=c(18,16,16)) as.cld(dn) ### as.cld for matrix ma1 <- matrix(rnorm(50),ncol=5) as.cld(ma1) ### as.cld for ArtificialLongData ga1 <- generateArtificialLongData() as.cld(ga1)