The connectedComp
function determines a list of vertices that belong to a connected component. Is there a quick way to determine the non-redundant edges (i.e. not both A ⇔ B and B ⇔ A but one of these) in each connected component so that correlations (e.g. between pairs of protein measurements) may efficiently be calculated?
Hi Dario,
Maybe you can explain the problem to me a little more.
I'm trying to follow the example in the connectedComp help page. This is the graph the example mentions `
When I take a look at the
edges()
in the graphkm
, I only see the non redundant connections.Only the list produced by the
edges(ugraph(km))
function gives me redudant information. Am i understanding you question correctly?That's right.