Skip to content

Commit

Permalink
ready for CRAN submission
Browse files Browse the repository at this point in the history
  • Loading branch information
schochastics committed Oct 30, 2021
1 parent af8a195 commit 9c4bf98
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 8 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: edgebundle
Title: Algorithms for Bundling Edges in Networks and Visualizing Flow and Metro Maps
Version: 0.2.1.9999
Version: 0.3.0
Authors@R:
person(given = "David",
family = "Schoch",
Expand Down
6 changes: 3 additions & 3 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# edgebundle 0.2.1.9999
# edgebundle 0.3.0

added `edge_bundle_path()`
* added `edge_bundle_path()`

# edgebundle 0.2.1

Fixed an error that occurred with valgrind
* Fixed an error that occurred with valgrind

# edgebundle 0.2.0

Expand Down
1 change: 1 addition & 0 deletions R/bundle_path.R
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ edge_bundle_path <- function(g,xy,max_distortion = 2,weight_fac = 2,segments = 2
cpoints[[e]] <- xy[sp_verts,]
}
cpoints_bezier <- lapply(cpoints,approximateBezier,n=segments)

idx <- seq(0, 1, length.out = segments)
data_bundle <- as.data.frame(cbind(
do.call("rbind",cpoints_bezier),
Expand Down
13 changes: 9 additions & 4 deletions cran-comments.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
# Update to 0.2.1
# Update to 0.3.0

Fixed the valgrind issue that occurred here:
https://www.stats.ox.ac.uk/pub/bdr/memtests/valgrind/edgebundle/edgebundle-Ex.Rout
added a new edge bundling function

## Test environments

Expand All @@ -10,6 +9,12 @@ https://www.stats.ox.ac.uk/pub/bdr/memtests/valgrind/edgebundle/edgebundle-Ex.Ro

## R CMD check results

0 errors | 0 warnings | 1 note
0 errors | 0 warnings | 0 note

* This is a new release.


# Update to 0.2.1

Fixed the valgrind issue that occurred here:
https://www.stats.ox.ac.uk/pub/bdr/memtests/valgrind/edgebundle/edgebundle-Ex.Rout

0 comments on commit 9c4bf98

Please sign in to comment.