gpt4 book ai didi

r - 使用 dplyr 选择列

转载 作者:行者123 更新时间:2023-12-04 10:53:47 24 4
gpt4 key购买 nike

我正在尝试使用 select dplyr 的功能提取另一个数据帧的列。

这里的数据框:

dput(df1)
structure(list(Al = c(30245, 38060, 36280, 24355, 27776, 35190,
38733.8, 36400, 29624, 33699.75), As = c(9, 8.75, 13.5, 7.75,
7.6, 8.33, 8, 8.75, 7.4, 8.25), Cd = c(0.15, 0.13, 0.15, 0.1,
0.16, 0.13, 0.24, 0.15, 0.22, 0.13), Cr = c(108.5, 111.75, 104.5,
81.25, 93.2, 109.75, 105, 104, 87.8, 99.75), Hg = c(0.25, 0.35,
0.48, 1.03, 1.12, 0.2, 1.14, 0.4, 2, 0.48)), row.names = c(NA,
10L), class = "data.frame", .Names = c("Al", "As", "Cd", "Cr",
"Hg"))

这里是我想用作过滤器的字符向量:
dput(vec_fil)
c("Elemento", "As", "Cd_totale", "Cr_totale", "Cu_totale", "Hg",
"Ni_totale", "Pb_totale", "Zn_totale", "Composti_organostannici",
"PCB_totali", "Sommatoria_DDD", "Sommatoria_DDE", "Sommatoria_DDT",
"Clordano", "Dieldrin", "Endrin", "Esaclorocicloesano", "Eptacloro_epossido",
"Sommatoria_IPA", "Acenaftene", "Antracene", "Benzo.a.antracene",
"Benzo.a.pirene", "Crisene", "Dibenzo.ac._.ah.antracene", "Fenantrene",
"Fluorantene", "Fluorene", "Naftalene", "Pirene")

如您所见 vec_fil有许多与 df1 的列不匹配的字符,所以我收到此错误:
require("dplyr")
df2 <- select(df1, one_of(vec_fil))
Error: Each argument must yield either positive or negative integers

我可以使用任何提示来仅获取新数据框中过滤器向量的匹配字符?

最佳答案

您可以在基本 R 中尝试此代码

df1[, names(df1) %in% vec_fil]

如果你想使用包 dplyr
select(df1, which(names(df1) %in% vec_fil))

关于r - 使用 dplyr 选择列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29229275/

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