How to make edges prominent?

Issue #857 resolved
Former user created an issue

Hello Sir, I am using Bio3D, and trying to generate communities network for my .dcd file. It is working fine but there is a slight issue, and I am unable to address it. The system generates a community file and after plotting I see all the communities overlapping each other. The problem is, that it actually hides the edges. Is there a way to make the edges prominent for a given generated community network? Cheers, Ash

Comments (2)

  1. Xinqiu Yao

    Hi,

    You may adjust the layout and/or the size of communities to fix the issue. See help(plot.cna) and the vertex.size argument of the igraph.plotting()function from the igraph package.

    You can also add interactive=TRUE to the plotting function and adjust the layout interactively. Then, save the layout using, for example, layout <- tk_coords(1) where the number “1” should match the window number for the interactive community plot. Then, you can use the saved ‘layout’ for regularly plotting, for example plot(cna, layout=layout, ...)

  2. Log in to comment