You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The code below can be found in the method draw_networkx_nodes . I added a line that computes node_chart in the event a subset of nodes is specified via the nodelist argument. Without this line, the entire graph is drawn regardless of the nodelist argument.
# ---------- Handle arguments ------------
###### node list argument
if isinstance(nodelist, list):
# Subset dataframe.
df_nodes = df_nodes.loc[nodelist]
# Build a chart (GE) <<<<< ADDED THESE TWO LINES
node_chart = alt.Chart(df_nodes)
The text was updated successfully, but these errors were encountered:
This issue was fixed by PR #19, which is accepted in my fork (which was originally made precisely to have a version with fixes from issues and PRs).
The fork has now been detached and released as its own library, altair-nx, because the original has been inactive since 2020 and because the fork diverged from it considerably after a full code-base rework and the implementation of new features (e.g. curved edges, self loops, and much greater customisability).
HI,
The code below can be found in the method
draw_networkx_nodes
. I added a line that computes node_chart in the event a subset of nodes is specified via thenodelist
argument. Without this line, the entire graph is drawn regardless of thenodelist
argument.The text was updated successfully, but these errors were encountered: