weighted_transitivity {clustAnalytics} | R Documentation |
Weighed transitivity of a weighted graph.
Description
Computed using the definition given by McAssey, M. P. and Bijma, F. in "A clustering coefficient for complete weighted networks" (2015).
Usage
weighted_transitivity(g, upper_bound = NULL)
Arguments
g |
igraph graph |
upper_bound |
upper bound to the edge weights used to compute the integral |
Value
The weighted transitivity of the graph (a scalar).
See Also
Other cluster scoring functions:
FOMD()
,
average_degree()
,
average_odf()
,
conductance()
,
coverage()
,
cut_ratio()
,
density_ratio()
,
edges_inside()
,
expansion()
,
internal_density()
,
max_odf()
,
normalized_cut()
,
scoring_functions()
,
weighted_clustering_coefficient()
Examples
data(karate, package="igraphdata")
weighted_transitivity(karate)
[Package clustAnalytics version 0.5.5 Index]