I have a social network of approximately 1,400 cases and partners. I am using igraph to create the network and also extract some metrics (density, average degree, betweenness etc)
I want to analyze the data by component size (create categories for small components (2-3 members), medium components (8-20 members) and large components(more than 20 members)
Using the following code: components<-components(allcases.g) I get some information such as: $membership, $scize and $number.
However, $csize just tells me the size of all of the the different components (total= 250 components), but the size is not linked to the individual vertices.
Does anybody know the best way to link back the component size to each of the vertices in my network?
Thanks!