gpt4 book ai didi

r - mutate_each 中的 one_of(vector) 导致找不到对象

转载 作者:行者123 更新时间:2023-12-01 23:49:49 24 4
gpt4 key购买 nike

我有一个名为 test 的小数据集,我想在其中对向量 cm 中定义的列执行一些变异操作。

安装和加​​载一些包

require(devtools)
devtools::install_github("hadley/dplyr")
require(dplyr)

首先创建测试数据框

test <- data.frame(col1 = c(1,1),
col2=as.character(c(2,2)),
col3=as.character(c(3,3)), stringsAsFactors=F)

然后我们创建 cm 向量

 cm <- c("col2", "col3")

我现在可以选择以厘米为单位的列

test %>% select(one_of(cm))

但是当我想执行一个操作时,比如 as.numeric 我得到一个错误。

> test %>% mutate_each(funs(as.numeric), one_of(cm))
Error in one_of(vars, ...) : object 'cm' not found

虽然我可以手动粘贴矢量

test %>% mutate_each(funs(as.numeric), one_of("col2","col3")) %>% str()
'data.frame': 2 obs. of 3 variables:
$ col1: num 1 1
$ col2: num 2 2
$ col3: num 3 3

这是错误还是功能?我错过了什么吗?还有其他方法吗?

谢谢!马丁

最佳答案

您需要安装并加载包lazyeval,然后您可以使用以下选项之一:

require(lazyeval)
require(dplyr)
test %>%
mutate_each_(funs(as.numeric), interp(~one_of(cm), var = as.name(cm))) %>%
str()

或者,更短的版本:

test %>% mutate_each_(funs(as.numeric), cm) %>% str()

在这种情况下两者都会做同样的事情。

关于r - mutate_each 中的 one_of(vector) 导致找不到对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27061792/

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