Sorts an fcm in alphabetical order of the features.
fcm_sort(x)
x | fcm object |
---|
A fcm object whose features have been alphabetically sorted.
Differs from fcm_sort
in that this function sorts the fcm by
the feature labels, not the counts of the features.
#> Error in get(".SigLength", envir = env): object '.SigLength' not foundrownames(myfcm)[3] <- colnames(myfcm)[3] <- "Z"#> Error in colnames(myfcm)[3] <- "Z": object 'myfcm' not foundmyfcm#> Error in eval(expr, envir, enclos): object 'myfcm' not foundfcm_sort(myfcm)#> Error in fcm_sort(myfcm): object 'myfcm' not found#> Error in get(".SigLength", envir = env): object '.SigLength' not foundrownames(myfcm)[3] <- colnames(myfcm)[3] <- "Z"#> Error in colnames(myfcm)[3] <- "Z": object 'myfcm' not foundmyfcm#> Error in eval(expr, envir, enclos): object 'myfcm' not foundfcm_sort(myfcm)#> Error in fcm_sort(myfcm): object 'myfcm' not found