我可以在一个mutate_at步骤中在同一列上连续使用多个函数,例如:(sqrt(log(x)))
library(dplyr)
head(mtcars) %>%
select(mpg, disp) %>%
mutate_at(vars(mpg,disp)
, funs(sqrt)) %>%
mutate_at(vars(mpg,disp)
, funs(log))
#> mpg disp
#> 1 1.522261 2.537587
#> 2 1.522261 2.537587
#> 3 1.563380 2.341066
#> 4 1.531695 2.776480
#> 5 1.464262 2.943052
#> 6 1.447956 2.708050
我在尝试
时得到了这个head(mtcars) %>%
select(mpg, disp) %>%
mutate_at(vars(mpg,disp)
, funs(sqrt,log))
#> mpg disp mpg_sqrt disp_sqrt mpg_log disp_log
#> 1 21.0 160 4.582576 12.64911 3.044522 5.075174
#> 2 21.0 160 4.582576 12.64911 3.044522 5.075174
#> 3 22.8 108 4.774935 10.39230 3.126761 4.682131
#> 4 21.4 258 4.626013 16.06238 3.063391 5.552960
#> 5 18.7 360 4.324350 18.97367 2.928524 5.886104
#> 6 18.1 225 4.254409 15.00000 2.895912 5.416100
道歉,如果这是重复的q,尝试搜索
答案 0 :(得分:4)
你可以但你需要这样做:
library(dplyr)
head(mtcars) %>%
select(mpg, disp) %>%
mutate_at(vars(mpg,disp)
, funs(log(sqrt(.))))
mpg disp
1 1.522261 2.537587
2 1.522261 2.537587
3 1.563380 2.341066
4 1.531695 2.776480
5 1.464262 2.943052
6 1.447956 2.708050
答案 1 :(得分:0)
您始终可以构建自己的函数并在funs()
中运行它。
require(tidyverse)
myFunc <- function(x) {log(sqrt(x))}
head(mtcars) %>%
select(mpg, disp) %>%
mutate_at(vars(mpg,disp), funs(myFunc))
答案 2 :(得分:0)
如果您想保留原始列,请使用@phiver公式:
head(mtcars) %>%
select(mpg, disp) %>%
dplyr::mutate_at(.vars=c("mpg","disp")
,.funs=funs(logsqrt = log(sqrt(.))))
mpg disp mpg_logsqrt disp_logsqrt
1 21.0 160 1.522261 2.537587
2 21.0 160 1.522261 2.537587
3 22.8 108 1.563380 2.341066
4 21.4 258 1.531695 2.776480
5 18.7 360 1.464262 2.943052
6 18.1 225 1.447956 2.708050