powered by
Aggregates a vector of edge weights using various methods. Compatible with igraph's edge.attr.comb parameter.
aggregate_weights(w, method = "sum", n_possible = NULL)wagg(w, method = "sum", n_possible = NULL)
wagg(w, method = "sum", n_possible = NULL)
Single aggregated value
Numeric vector of edge weights
Aggregation method: "sum", "mean", "median", "max", "min", "prod", "density", "geomean"
Number of possible edges (for density calculation)
w <- c(0.5, 0.8, 0.3, 0.9) aggregate_weights(w, "sum") # 2.5 aggregate_weights(w, "mean") # 0.625 aggregate_weights(w, "max") # 0.9
Run the code above in your browser using DataLab