BootstrapProperty.Rd
BootstrapProperty computes igraph analytics function on ensemble
BootstrapProperty(
graph,
property,
directed,
selfloops,
nsamples = 1000,
xi = NULL,
omega = NULL,
model = NULL,
m = NULL,
seed = NULL,
...
)
igraph graph
igraph function that can be applied to a graph
boolean
boolean
number of samples from ensemble. defaults to 1000
matrix, default null
matrix, default null
ghype model from which to extract xi and omega, default to null
int, number of edges to sample from model
seed
other parameters to pass to `property`
vector of length nsamples
# \donttest{
library(igraph)
#>
#> Attaching package: ‘igraph’
#> The following objects are masked from ‘package:stats’:
#>
#> decompose, spectrum
#> The following object is masked from ‘package:base’:
#>
#> union
data('adj_karate')
result <- BootstrapProperty(adj_karate, page_rank, FALSE, FALSE, nsamples=10)
# }