Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Use dplyr verbs to build data.table expressions

License

NotificationsYou must be signed in to change notification settings

asardaes/table.express

Repository files navigation

CRAN_Status_BadgeR-CMD-checkcodecov

Table express

Usedplyr verbs, as well as custom ones, to builddata.tableexpressions. Check thevignettefor more information.

Essence

The basic idea is to parse the input from all the verbs and create asingle expression that, after evaluation, simply delegates all theactual computations todata.table, letting it handle all optimizationsas usual.

# the expression is what matters here, input is left emptydata.table() %>%start_expr %>%    select(col) %>%    where(var==val) %>%    order_by(v)#> .DT_[var == val, list(col)][order(v)]

The inputdata.table is always assigned in the evaluation’senvironment as the.DT_ pronoun

In many cases character input can also be supported, which could beuseful for other packages that usedata.table.

License

Mozilla Public License Version 2.0

This software package was developed independently of any organization orinstitution that is or has been associated with the author.

About

Use dplyr verbs to build data.table expressions

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Contributors2

  •  
  •  

Languages


[8]ページ先頭

©2009-2025 Movatter.jp