We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Trying to follow the new API, frankly few things work. import nxviz as nv ax = nv.circos(pass_graph, edge_alpha_by = "weight" )
nv.annotate.circos_group(pass_graph, group_by="group")
as from the example gives me the error in the title. I really love the module though.
Edit: this will work
import nxviz as nv from nxviz import annotate ax = nv.circos(pass_graph, edge_alpha_by = "weight" )
annotate.circos_group(pass_graph, group_by="group")
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Description
Trying to follow the new API, frankly few things work.
import nxviz as nv
ax = nv.circos(pass_graph, edge_alpha_by = "weight"
)
nv.annotate.circos_group(pass_graph, group_by="group")
as from the example gives me the error in the title.
I really love the module though.
Edit:
this will work
import nxviz as nv
from nxviz import annotate
ax = nv.circos(pass_graph, edge_alpha_by = "weight"
)
annotate.circos_group(pass_graph, group_by="group")
The text was updated successfully, but these errors were encountered: