-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathDESCRIPTION
72 lines (72 loc) · 1.83 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
Package: table.express
Type: Package
Title: Build 'data.table' Expressions with Data Manipulation Verbs
Description: A specialization of 'dplyr' data manipulation verbs that parse and build expressions
which are ultimately evaluated by 'data.table', letting it handle all optimizations. A set of
additional verbs is also provided to facilitate some common operations on a subset of the data.
Version: 0.4.2
Depends:
R (>= 3.2.0)
Imports:
methods,
stats,
utils,
data.table (>= 1.9.8),
dplyr,
magrittr,
R6,
rlang (>= 0.3.1),
tidyselect
Suggests:
knitr,
rex,
rmarkdown,
testthat
Date: 2023-04-02
Authors@R: c(
person("Alexis", "Sarda-Espinosa", role=c("cre", "aut"), email="[email protected]")
)
BugReports: https://github.com/asardaes/table.express/issues
License: MPL-2.0
URL: https://asardaes.github.io/table.express/, https://github.com/asardaes/table.express
Language: en-US
Encoding: UTF-8
RoxygenNote: 7.2.3
Roxygen: list(markdown = TRUE)
VignetteBuilder: knitr
Collate:
'DELIMITERS-chain.R'
'DELIMITERS-end_expr.R'
'DELIMITERS-start_expr.R'
'R6-ExprBuilder.R'
'R6-EagerExprBuilder.R'
'UTILS-frame_append.R'
'UTILS-joins.R'
'UTILS-misc.R'
'UTILS-nest_expr.R'
'UTILS-tidyselect.R'
'VERBS-anti_join.R'
'VERBS-arrange.R'
'VERBS-distinct.R'
'VERBS-filter.R'
'VERBS-filter_on.R'
'VERBS-filter_sd.R'
'VERBS-full_join.R'
'VERBS-group_by.R'
'VERBS-inner_join.R'
'VERBS-key_by.R'
'VERBS-left_join.R'
'VERBS-max_by.R'
'VERBS-min_by.R'
'pkg.R'
'VERBS-mutate.R'
'VERBS-mutate_join.R'
'VERBS-mutate_sd.R'
'VERBS-order_by.R'
'VERBS-right_join.R'
'VERBS-select.R'
'VERBS-semi_join.R'
'VERBS-summarize.R'
'VERBS-transmute.R'
'VERBS-transmute_sd.R'
'VERBS-where.R'