remove_small_components: Remove small components

Description Usage Arguments Details Value Examples

View source: R/remove_small_components.R

Description

keep only the largest component of graph

Usage

1

Arguments

g

An igraph object of the graph to embed.

Details

As setse only works on connected components this function removes all but the largest component. This is a helper function to quickly project a network with setse.

Value

An igraph object.

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
library(igraph)
set.seed(1284)
#generate a random erdos renyi graph with 100 nodes and 150 edges
g <- erdos.renyi.game(n=100, p.or.m = 150, type = "gnm" )
#count the number of components
components(g)$no

#remove all but the largest component
g2 <-remove_small_components(g)

#Now there is only 1 component
igraph::components(g2)$no

rsetse documentation built on June 11, 2021, 5:07 p.m.