-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathDESCRIPTION
22 lines (22 loc) · 1.18 KB
/
DESCRIPTION
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Package: maditr
Type: Package
Title: Fast Data Aggregation, Modification, and Filtering with Pipes and 'data.table'
Version: 0.8.5
Maintainer: Gregory Demin <[email protected]>
Authors@R: person("Gregory", "Demin", email = "[email protected]", role = c("aut", "cre"))
Depends: R (>= 3.3.0)
Imports: data.table (>= 1.12.6), magrittr (>= 1.5)
Suggests: knitr, tinytest, utils, rmarkdown, stats
Description: Provides pipe-style interface for 'data.table'. Package preserves all 'data.table' features without
significant impact on performance. 'let' and 'take' functions are simplified interfaces for most common data
manipulation tasks. For example, you can write 'take(mtcars, mean(mpg), by = am)' for aggregation or
'let(mtcars, hp_wt = hp/wt, hp_wt_mpg = hp_wt/mpg)' for modification. Use 'take_if/let_if' for conditional
aggregation/modification. Additionally there are some conveniences such as automatic 'data.frame'
conversion to 'data.table'.
License: GPL-2
URL: https://github.com/gdemin/maditr
BugReports: https://github.com/gdemin/maditr/issues
VignetteBuilder: knitr
Encoding: UTF-8
RoxygenNote: 7.3.1
Roxygen: list(markdown = TRUE)