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
As the node sizes are scaled to fit their labels, nodes without labels aren't drawn. Maybe we can use a minimum node size to handle those cases. Example of the problem:
Code (Plots 1.25.11 and GraphRecipes 0.5.9):
using Graphs, Plots, GraphRecipes
graph =smallgraph(:karate)
begin
node_labels =fill("", nv(graph))
node_labels[1] ="Mr. Hi"
node_labels[34] ="John A"endgraphplot(graph, names=node_labels)
The text was updated successfully, but these errors were encountered:
As the node sizes are scaled to fit their labels, nodes without labels aren't drawn. Maybe we can use a minimum node size to handle those cases. Example of the problem:
Code (Plots 1.25.11 and GraphRecipes 0.5.9):
The text was updated successfully, but these errors were encountered: