GraphRecipes.jl
GraphRecipes.jl copied to clipboard
Graph-related recipes to be used with Plots.jl
`GraphRecipes.jl` has a dependency on an old version of `AbstractTrees.jl` and thus prevents the use of the current version 0.4.2 of that package in any environment where `GraphRecipes` are used....
This pull request changes the compat entry for the `Interpolations` package from `0.12.8, 0.13.0` to `0.12.8, 0.13.0, 0.14`. This keeps the compat entries for earlier versions. Note: I have not...
An option to have multiple edge colors would be awesome. I would like to able to do something like this: ``` using Plots, GraphRecipes, Colors g = [0 1 1;...
There is a tiny dot inside the nodes when using the plotly backend; it doesn't appear with GR. It is possible to see when the node fill color is white....
Suppose I wish to plot two random graphs: ```julia using Graphs, Plots, GraphRecipes function rand_gs(n, p) g1 = Graph(n) g2 = Graph(n) for e in [Edge(i, j) for i=1:n for...
I generally want my nodes to have there size not determined by the length of the `name`. Either i want to use the size to indicate some property of the...
I started using GraphRecipes v0.5.6 with Plots v0.28.4. My plots all have a small dot in the middle of each node. The example code ``` using GraphRecipes, Plots g =...
I tried to plot some binary trees with `TreePlot` and noticed that sometimes the left and right subtrees are plotted in the correct order and sometimes not. Here is a...
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...
## Details I copied and pasted the exact example code and the graph that showed up didn't have any arrows. It may or may not make a difference that it...