unlistClu function

Function for "unlisting" a partition.

Function for "unlisting" a partition.

Essentially, if the argument is a list (otherwise function just returns its argument), the function calls unlist on it. Before it, it however makes sure that names from different elements of the list to not repeat. The opposite of splitClu. The n argument of the splitClu is returned as an attribute. If renumber=TRUE (default), it is practically identical to unlistCluInt. UTF-8

unlistClu(clu, renumber = FALSE)

Arguments

  • clu: A list representing a partition of units from different sets. Each element should be a partition for one set.
  • renumber: If TRUE (default), are renumbered so that they are 1:"total number of clusters". If any cluster "ID" is present in more than one set of units (one partition, one element of the list), this is done even if renumber = FALSE.

Returns

A vector representing a partition. It also has an attribute n with the number of units that were in each set.

Examples

n <- c(8,8) cluList <- c(rep(1:2, times = c(3, 5)), rep(5:6, times = c(3, 5))) unlistClu(clu = clu) unlistClu(clu = clu, renumber = FALSE)

See Also

clu, splitClu, unlistCluInt

Author(s)

  • Maintainer: Aleš Žiberna
  • License: GPL (>= 2)
  • Last published: 2023-08-23

Useful links