Skip to content

Commit 5f6163d

Browse files
committed
tag v0.5.0
1 parent 1411d39 commit 5f6163d

3 files changed

Lines changed: 19 additions & 13 deletions

File tree

DESCRIPTION

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package: narray
22
Title: Subset- And Name-Aware Array Utility Functions
3-
Version: 0.4.99
3+
Version: 0.5.0
44
Author: Michael Schubert <mschu.dev@gmail.com>
55
Maintainer: Michael Schubert <mschu.dev@gmail.com>
66
Description: Stacking arrays according to dimension names, subset-aware
@@ -26,4 +26,4 @@ Suggests:
2626
rmarkdown,
2727
testthat
2828
VignetteBuilder: knitr
29-
RoxygenNote: 6.1.1.9000
29+
RoxygenNote: 7.2.1
Lines changed: 15 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,38 +1,42 @@
1-
* 0.4.2
2-
* `mask` will now makes NA values as FALSE
1+
# git head
2+
3+
# narray 0.5.0
4+
5+
* `stack` is now compiled using `Rcpp` (#26)
6+
* `mask` will now make `NA` values `FALSE`
37
* `melt` now keeps object names for multiple arrays (#25)
4-
* `lambda` now supports `subsets` parameter (#20) TODO
5-
* map progress bar within subsets
68

7-
* 0.4.1
9+
# narray 0.4.1
10+
811
* speed improvements for `construct`, `melt` (#23)
912
* `lambda` adds `tbl_df` class if `simplify=FALSE` (#19)
1013
* `map`, `lambda`, `stack` now have progress bars after 5s (#16)
1114
* Package no longer depends on `reshape2`
1215

13-
* 0.4.0
16+
# narray 0.4.0
17+
1418
* Package no longer depends on `abind`, `pryr`
1519
* `along=-1` uses last dimension in `flatten`, `subset` (#6)
1620
* `stack` now also accepts multiple arrays as arguments
1721
* `summarize` is kept as `translate`
1822
* `construct` no longer allows value aggregation; do this on the `data.frame`
1923
before (related to #11)
20-
* `construct` now as `name_axes` option to keep column names (#12)
24+
* `construct` now has `name_axes` option to keep column names (#12)
2125
* `map` subsets that are `NA` are dropped with a warning (#13)
2226
* `map` subsets throw error if not same length as array axis
2327
* new `lambda` syntax (#14)
2428

25-
* 0.3.2
29+
# narray 0.3.2
2630
* add `collect` function as opposite to `mask`
2731
* deprecate `summarize` in favor of `map`
2832
* adjust tests for `testthat>=2`
2933

30-
* 0.2.2
34+
# narray 0.2.2
3135
* fix bug where `split` with `NA` in `subsets` caused wrong splitting; these
3236
are now dropped with a warning (#5)
3337
* fix bug where vectors are not bound along the right dimensions (#7)
34-
* add `rep` functions for arrays (add `rrep` and `crep` aliases for rows and
38+
* add `rep` functions for arrays (and `rrep` and `crep` aliases for rows and
3539
columns, respectively)
3640

37-
* 0.1.1
41+
# narray 0.1.1
3842
* Initial release on CRAN

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ functions. The latter can be done using [`box`](https://github.com/klmr/box) or
1414
[`import`](https://github.com/rticulate/import).
1515

1616
```r
17+
# do not use library() or require()
18+
1719
# example referencing the package namespace
1820
narray::stack(...)
1921

0 commit comments

Comments
 (0)