Skip to content

Commit

Permalink
tag v0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mschubert committed Aug 10, 2022
1 parent 1411d39 commit 5f6163d
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 13 deletions.
4 changes: 2 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: narray
Title: Subset- And Name-Aware Array Utility Functions
Version: 0.4.99
Version: 0.5.0
Author: Michael Schubert <[email protected]>
Maintainer: Michael Schubert <[email protected]>
Description: Stacking arrays according to dimension names, subset-aware
Expand All @@ -26,4 +26,4 @@ Suggests:
rmarkdown,
testthat
VignetteBuilder: knitr
RoxygenNote: 6.1.1.9000
RoxygenNote: 7.2.1
26 changes: 15 additions & 11 deletions CHANGES.md → NEWS.md
Original file line number Diff line number Diff line change
@@ -1,38 +1,42 @@
* 0.4.2
* `mask` will now makes NA values as FALSE
# git head

# narray 0.5.0

* `stack` is now compiled using `Rcpp` (#26)
* `mask` will now make `NA` values `FALSE`
* `melt` now keeps object names for multiple arrays (#25)
* `lambda` now supports `subsets` parameter (#20) TODO
* map progress bar within subsets

* 0.4.1
# narray 0.4.1

* speed improvements for `construct`, `melt` (#23)
* `lambda` adds `tbl_df` class if `simplify=FALSE` (#19)
* `map`, `lambda`, `stack` now have progress bars after 5s (#16)
* Package no longer depends on `reshape2`

* 0.4.0
# narray 0.4.0

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

* 0.3.2
# narray 0.3.2
* add `collect` function as opposite to `mask`
* deprecate `summarize` in favor of `map`
* adjust tests for `testthat>=2`

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

* 0.1.1
# narray 0.1.1
* Initial release on CRAN
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ functions. The latter can be done using [`box`](https://github.com/klmr/box) or
[`import`](https://github.com/rticulate/import).

```r
# do not use library() or require()

# example referencing the package namespace
narray::stack(...)

Expand Down

0 comments on commit 5f6163d

Please sign in to comment.