Skip to content

Commit

Permalink
Release on CRAN
Browse files Browse the repository at this point in the history
  • Loading branch information
gdemin committed Dec 3, 2019
1 parent b3b8692 commit b36b78d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ Imports: data.table (>= 1.12.6), magrittr (>= 1.5)
Suggests: knitr, tinytest
Description: Package provides pipe-style interface for 'data.table'. It 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 'mtcars %>% take(mean(mpg), by = am)' for aggregation or 'mtcars
%>% let(hp_wt = hp/wt, hp_wt_mpg = hp_wt/mpg)' for modification. Use 'take_if/let_if' for conditional
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. 'query_if' function translates its arguments one-to-one to '[.data.table' method.
Additionally there are some conveniences such as automatic 'data.frame' conversion to 'data.table'.
License: GPL-2
Expand Down
4 changes: 2 additions & 2 deletions man/reexports.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit b36b78d

Please sign in to comment.