作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在 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"
.
最佳答案
选项是使用 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"
关于使用 `starts_with()` 重命名列,其中新前缀是一个字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46585296/
我是一名优秀的程序员,十分优秀!