JuliaGraphs / GraphPlot.jl

Graph visualization for Julia.
http://JuliaGraphs.github.io/GraphPlot.jl/
Other
200 stars 62 forks source link

Improve arg syntax for `gplot` and cleanup repo #180

Open hdavid16 opened 1 year ago

hdavid16 commented 1 year ago

-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 some of the code in gplot (use isnothing, etc.) -move layouts to layouts.jl -add community_layout to readme -remove deprecations -remove shape.jl and pienode.jl (not used anywhere)

codecov[bot] commented 1 year ago

Codecov Report

Merging #180 (1a945c4) into master (52f4aae) will increase coverage by 3.81%. The diff coverage is 8.75%.

@@            Coverage Diff             @@
##           master     #180      +/-   ##
==========================================
+ Coverage   32.92%   36.73%   +3.81%     
==========================================
  Files           9        4       -5     
  Lines         565      471      -94     
==========================================
- Hits          186      173      -13     
+ Misses        379      298      -81     
Impacted Files Coverage Δ
src/GraphPlot.jl 100.00% <ø> (ø)
src/layout.jl 19.32% <0.00%> (-29.10%) :arrow_down:
src/plot.jl 58.66% <81.25%> (-3.98%) :arrow_down:
src/lines.jl 52.22% <100.00%> (ø)

Help us with your feedback. Take ten seconds to tell us how you rate us.

hdavid16 commented 1 year ago

This PR also fixes #148