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


R dtplyr relocate.dtplyr_step 使用变量名称重新定位变量


这是 dplyr relocate() 泛型的方法。它被转换为 [.data.tablej 参数。

用法

# S3 method for dtplyr_step
relocate(.data, ..., .before = NULL, .after = NULL)

参数

.data

一个lazy_dt()

...

<tidy-select > 要移动的列。

.before, .after

< tidy-select > ... 选择的列的目标。两者都不提供会将列移动到左侧;指定两者都是错误的。

例子

library(dplyr, warn.conflicts = FALSE)

dt <- lazy_dt(data.frame(x = 1, y = 2, z = 3))

dt %>% relocate(z)
#> Source: local data table [1 x 3]
#> Call:   setcolorder(copy(`_DT33`), c("z", "x", "y"))
#> 
#>       z     x     y
#>   <dbl> <dbl> <dbl>
#> 1     3     1     2
#> 
#> # Use as.data.table()/as.data.frame()/as_tibble() to access results
dt %>% relocate(y, .before = x)
#> Source: local data table [1 x 3]
#> Call:   setcolorder(copy(`_DT33`), c("y", "x", "z"))
#> 
#>       y     x     z
#>   <dbl> <dbl> <dbl>
#> 1     2     1     3
#> 
#> # Use as.data.table()/as.data.frame()/as_tibble() to access results
dt %>% relocate(y, .after = y)
#> Source: local data table [1 x 3]
#> Call:   `_DT33`
#> 
#>       x     y     z
#>   <dbl> <dbl> <dbl>
#> 1     1     2     3
#> 
#> # Use as.data.table()/as.data.frame()/as_tibble() to access results

相关用法


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