gpt4 book ai didi

r - 将字符串解析为 dplyr 中的列名

转载 作者:行者123 更新时间:2023-12-05 08:29:20 25 4
gpt4 key购买 nike

我需要使用 dplyr(下面的代码)传递一个字符串作为列名。我无法让它工作。我试过使用 [[name]] 和 .data[[name]] 但这不起作用。我需要一个专门的解决方案,允许我将列重命名为我在变量 name 中指定的字符串。

colnames(mtcars) -> cols

rename_cols <- function(col) {

name = paste0(col, "_new") #I want to be able to parse this into the rename function below

mtcars %>%
rename(
name = col,
)
}

lapply(cols, rename_cols)

最佳答案

我会使用命名向量,而不是试图弄乱 dplyr 编程的细微差别。一个好处是此方法已经矢量化。

rename_cols <- function(col) {

name = paste0(col, "_new") #I want to be able to parse this into the rename function below

mtcars %>%
rename(setNames(col, name))
}

rename_cols(colnames(mtcars))
# mpg_new cyl_new disp_new hp_new drat_new wt_new qsec_new vs_new am_new gear_new carb_new
# Mazda RX4 21.0 6 160.0 110 3.90 2.620 16.46 0 1 4 4
# Mazda RX4 Wag 21.0 6 160.0 110 3.90 2.875 17.02 0 1 4 4
# Datsun 710 22.8 4 108.0 93 3.85 2.320 18.61 1 1 4 1
# Hornet 4 Drive 21.4 6 258.0 110 3.08 3.215 19.44 1 0 3 1
# Hornet Sportabout 18.7 8 360.0 175 3.15 3.440 17.02 0 0 3 2
# Valiant 18.1 6 225.0 105 2.76 3.460 20.22 1 0 3 1
# ...

编辑

在这种情况下,您可能还会发现 rename_with() 是您所需要的。

library(dplyr)

colnames(mtcars) -> cols

mtcars %>%
rename_with(~ paste0(., "_new"), any_of(cols))

# which is the same as the more concise but maybe less clear...
mtcars %>%
rename_with(paste0, any_of(cols), "_new")

关于r - 将字符串解析为 dplyr 中的列名,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/71400390/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com