Number of individuals having an attribute
This function computes the total number of individuals being in a category of an attribute in a partition. It also computes the sum of the proportion in each group of individuals being in a category.
number_categories(partition, attribute, stat, category)
partition
attribute
stat
category
The statisic chosen in stat depending on the value of category. If category = 'all', returns a vector.
p <- c(1,2,2,3,3,4,4,4,5) at <- c(1,0,0,0,1,1,0,0,1) number_categories(p,at,'avg','all')
Useful links