当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


R dtplyr intersect.dtplyr_step 设置操作


这些是 dplyr 泛型 intersect()union()union_all()setdiff() 的方法。它们被翻译为 data.table::fintersect()data.table::funion()data.table::fsetdiff()

用法

# S3 method for dtplyr_step
intersect(x, y, ...)

# S3 method for dtplyr_step
union(x, y, ...)

# S3 method for dtplyr_step
union_all(x, y, ...)

# S3 method for dtplyr_step
setdiff(x, y, ...)

参数

x, y

一对lazy_dt()

...

忽略

例子

dt1 <- lazy_dt(data.frame(x = 1:4))
dt2 <- lazy_dt(data.frame(x = c(2, 4, 6)))

intersect(dt1, dt2)
#> Source: local data table [2 x 1]
#> Call:   fintersect(`_DT18`, `_DT19`)
#> 
#>       x
#>   <int>
#> 1     2
#> 2     4
#> 
#> # Use as.data.table()/as.data.frame()/as_tibble() to access results
union(dt1, dt2)
#> Source: local data table [5 x 1]
#> Call:   funion(`_DT18`, `_DT19`)
#> 
#>       x
#>   <dbl>
#> 1     1
#> 2     2
#> 3     3
#> 4     4
#> 5     6
#> 
#> # Use as.data.table()/as.data.frame()/as_tibble() to access results
setdiff(dt1, dt2)
#> Source: local data table [2 x 1]
#> Call:   fsetdiff(`_DT18`, `_DT19`)
#> 
#>       x
#>   <int>
#> 1     1
#> 2     3
#> 
#> # Use as.data.table()/as.data.frame()/as_tibble() to access results

源代码:R/step-set.R

相关用法


注:本文由纯净天空筛选整理自Hadley Wickham等大神的英文原创作品 Set operations。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。