在R中,我想重命名以函数内部的一些前缀(例如"oldprefix1", "oldprefix2", "oldprefix3", ...
到"newprefix1", "newprefix2", "newprefix3", ...
)开头的所有列。以下代码有效:
change = function(df) {
select(df, newprefix = starts_with('oldprefix') )
}
change(test)
但是,我想将带有新前缀的字符串作为参数传递给函数:
change2 = function(df, prefix) {
dots = paste0(prefix," = starts_with('oldprefix')"
select_(df, dots)
}
change2(test, "newprefix")
我尝试过使用select_()
和.dots
,但我无法与starts_with()
函数一起使用。我收到错误Error in eval(expr, envir, enclos) :
could not find function "starts_with"
。
答案 0 :(得分:5)
选项是使用rename_at
mtcars %>%
rename_at(vars(starts_with('m')), funs(paste0('prefix', .)))
要更改旧名称,请使用sub
change2 <- function(df, oldpref, newpref) {
df %>%
rename_at(vars(starts_with(oldpref)), funs(sub(oldpref, newpref, .)))
}
change2(mtcars, "m", "newprefix") %>%
names
#[1] "newprefixpg" "cyl" "disp" "hp" "drat"
#[6] "wt" "qsec" "vs" "am" "gear"
#[11] "carb"