ordered {longitudinalData} | R Documentation |
Given a Partition
, ordered
order its clusters letters
according to the effectif of each clusters. The is meanly a "label changing".
ordered(x,...)
x |
[Partition)] : Partition to be ordered. |
... |
For compatibility only, no other arguments are accepted. |
Given a Partition
, ordered
order its clusters letters
according to the effectif of each clusters. So A will be the cluster
with be biggest frequency, then B, then C...
An object of class Partition
.
### Small partition smallPart <- partition(clusters=c("A","B","A","C","C","C"),nbClusters=3) ### Same partition but ordered ordered(smallPart)