-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDESCRIPTION
38 lines (38 loc) · 1.31 KB
/
DESCRIPTION
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
Package: wiserow
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 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.1
Imports:
methods,
glue,
Rcpp (>= 1.0.1),
RcppParallel (>= 4.4.0),
tidyselect
LinkingTo:
BH,
Rcpp,
RcppParallel,
RcppThread
Suggests:
rlang,
testthat
Date: 2025-01-01
Authors@R: c(
person("Alexis", "Sarda-Espinosa", role=c("cre", "aut"), email="[email protected]")
)
BugReports: https://github.com/asardaes/wiserow/issues
License: GPL (>= 3)
URL: https://asardaes.github.io/wiserow/, https://github.com/asardaes/wiserow
NeedsCompilation: yes
SystemRequirements: GNU make
Language: en-US
Encoding: UTF-8
RoxygenNote: 7.3.2
Roxygen: list(markdown = TRUE)
Config/testthat/edition: 3