-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make adjustments according to CRAN feedback
- Loading branch information
Showing
4 changed files
with
36 additions
and
11 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 |
---|---|---|
|
@@ -3,9 +3,10 @@ Type: Package | |
Title: Multi-Threaded, Coercion-Free Implementations of Common Row-Wise Operations | ||
Description: Fast row-oriented operations implemented in C++, all of which are multi-threaded by | ||
leveraging 'RcppParallel' and 'RcppThread'. Virtually no deep copies of input data are made, | ||
even of character data thanks to Boost's 'string_ref'. In contrast to other functions, the ones | ||
in this package support data frames with differently typed columns as input without coercion to | ||
a matrix, performing on-the-fly type promotion following R rules, where necessary. | ||
even of character data thanks to the 'string_ref' class from the C++ 'Boost' library. In | ||
contrast to other functions, the ones in this package support data frames with differently typed | ||
columns as input without coercing to a matrix, performing, if necessary, on-the-fly type | ||
promotion according to R rules (like transforming logicals to integers to allow summation). | ||
Version: 0.1.0 | ||
Depends: | ||
R (>= 3.1.0) | ||
|
@@ -22,7 +23,7 @@ LinkingTo: | |
RcppThread | ||
Suggests: | ||
testthat | ||
Date: 2020-02-10 | ||
Date: 2020-02-20 | ||
Authors@R: c( | ||
person("Alexis", "Sarda-Espinosa", role=c("cre", "aut"), email="[email protected]") | ||
) | ||
|
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
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.