plotEdgeFrequency {mcMST} | R Documentation |
Visualization of edge frequency among solution set.
Description
Given a list of graphs and a list of solutions (encoded as edge lists) for each graph the function generates each one plot. This is a 2D-scatterplot of edge weights of the graph. Size and colour of each point indicate the number of solutions the edge is part of.
Usage
plotEdgeFrequency(graphs, approx.sets, facet.args = list(), names = NULL)
Arguments
graphs |
[ |
approx.sets |
[ |
facet.args |
[ |
names |
[ |
Value
[ggplot
]
See Also
Other result visualization:
plotEdges()
Examples
g = genRandomMCGP(50L)
res = mcMSTEmoaBG(mu = 10L, max.iter = 50, instance = g, scalarize = TRUE)
## Not run:
plotEdgeFrequency(list(g), list(res$pareto.set))
## End(Not run)
[Package mcMST version 1.1.1 Index]