-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
19 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|
@@ -26,4 +26,4 @@ Suggests: | |
rmarkdown, | ||
testthat | ||
VignetteBuilder: knitr | ||
RoxygenNote: 6.1.1.9000 | ||
RoxygenNote: 7.2.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters