GraphPlot.jl icon indicating copy to clipboard operation
GraphPlot.jl copied to clipboard

Graph visualization for Julia.

Results 66 GraphPlot.jl issues
Sort by recently updated
recently updated
newest added

This PR merges the following individual PR's that address feature requests. I merged them to avoid conflicts when rebasing each time a different PR is merged. #178 - set background...

This is a rebase of #131, after I messed it up. I added some documentation

-breaking change: linetype changed from String to Symbol -breaking change: default for edgelabel is nothing (not []) to make consistent with nodelabel default -remove all caps args (Fix #177) -improve...

I see that these are used for converting from relative sizes to absolute sizes. Why not just use absolute sizes in the first place? I think having two keyargs with...

using LightGraphs, GraphPlot; using Colors; n = 198 graph = barabasi_albert(n, 3, 3) mapping = ones(n) mapping[1:100] .= 2 nodecolor = [colorant"green", colorant"red"] nodefillc = nodecolor[convert(Array{Int}, mapping)] gplot(graph, nodefillc=nodefillc) -->...

Inspired by a stackoverflow question. It would be nice to allow the vertices' positions to be specified by, say, a vector of `(x, y)` tuples, which are then normalized to...

doc

The documentation for `spring_layout`says, that the algorithm uses the the forces ``` Attractive force: f_a(d) = d^2 / k Repulsive force: f_r(d) = -k^2 / d ``` but what it...

hacktoberfest

It would be nice if the node size automatically stretched out to fit the label text. (Also, currently you can only change the node radius, but for this you would...

Thanks for making a great package! Would it be possible to integrate this with the above two mentioned packages? I'm thinking that we then could write ```julia gplot(g; layout=NetworkLayout:Stress) ```...

Hey there, I would like to be able to color nodes in multiple colors. For example using color1 for half of the size of the node and color one for...