- moves oaqc back to suggested packages and removed ported code
- ported relevant code from archived R package oaqc (#83)
- fixed igraph deprecation warnings and require igraph >= 2.0.0
- removed vignette and point to tutorial
- removed dependency of ggraph
- fixed bug in disconnected layouts #80
layout_with_constrained_stress()
andlayout_with_constrained_stress3D()
work for disconnected graphs- internal code refactoring
- added
layout_as_metromap()
- added
layout_with_fixed_coords()
- removed deprecated igraph calls
- fixed bug with weighted disconnected graphs (#71) h/t @gi0na
- removed the use of
%u%
(#70)
- added install of oaqc to readme(#52)
- fixed grammar in Description (#53)
- made dynamic layout example reproducible (#54)
- replaced 1:length with seq_along (#55)
- added contributing guide (#56)
- added more tests (#60)
- added more unit tests
- added package level description
- fixed error for disconnected graphs with an explicit weights vector (#47)
- added proper citation
- fixed error for very large graphs (#45)
- added
layout_with_focus_group()
andlayout_with_centrality_group()
(#46)
- added warning in
layout_as_backbone()
if graph is disconnected and contains isolates
- added
layout_with_umap()
- fixed description of
bbox
inlayout_with_stress
- fixed bug in
layout_with_stress3D
which only produced a 2D layout
- restoring old seed after using stress layout
- added
layout_as_multilevel()
for multilevel networks - added
layout_with_stress3D()
andlayout_with_constrained_stress3D()
for 3D layouts - fixed crash in
layout_as_backbone()
when the graph has loops (#32)
- added
layout_with_constrained_stress()
- added fixed random seed for stress (stress is deterministic and produces same layout up to translation/rotation)
- speedup of
layout_with_sparse_stress()
andlayout_with_pmds()
by "smarter" distance calculation - speedup of
layout_with_sparse_stress()
by using precomputed distances inlayout_with_pmds()
- speedup of
layout_with_stress()
by dynamically switching tolayout_with_pmds()
during initialisation for large graphs
- BREAKING CHANGE: removed
qgraph()
. Now part ofggraph
. - POSSIBLE BREAKING CHANGE:
layout_with_focus()
now also returns the distance to the focus node - changed filenames (doesn't have any effect on functionality)
- added
layout_as_dynamic()
for longitudinal network data - removed
gbp
andscales
dependency and movedoaqc
to suggest - edge weights are now supported in
layout_with_stress()
andlayout_with_focus()
- added
layout_with_pmds()
(Pivot MDS for large graphs) - added
layout_with_sparse_stress()
("stress for large graphs")
- added checks for multiple and directed edges in
layout_as_backbone()
- faster implementation of reweighting for
layout_as_backbone()
- minor bug fixes in "stress" calculation
- added more examples and documentation
- changed name from
smglr
tographlayouts
(sorry) - added
layout_with_eigen()
- layouts can now be used directly in ggraph, e.g.
ggraph(g,layout="stress")+...
- added documentation, examples and references
- added
layout_with_centrality()
- added
layout_with_focus()
- added
reorder_edges()
to reorder an edgelist to control the order of plotting edges
- added
layout_as_backbone()
- added functions to rotate/mirror layouts
stress_majorization()
is now deprecated. Uselayout_with_stress()
instead
- added support for unconnected networks via external library
- added a
NEWS.md
file to track changes to the package. - basic implementation