非常基本的问题,但我无法通过搜索找到答案:
我正在尝试将序数变量的值重新编码为新值。
我尝试使用car包中的recode()函数,如下所示:
recode(x, "0=1; 1=2; 3=2")
我收到以下错误消息:
Error in recode(threecat, "0=1; 1=2; 3=2") :
(list) object cannot be coerced to type 'double
感谢您的帮助。
答案 0 :(得分:3)
在我看来,threecat
是一个列表,car :: recode需要一个向量。 threecat
中的内容是什么?请遵循@ mnel的建议,以包含dput(head(threecat))
的结果。
> x<-c(0,1,2,3,4)
> recode(x, "0=1; 1=2; 3=2")
[1] 1 2 2 2 4
> y<-list(x)
> y
[[1]]
[1] 0 1 2 3 4
> recode(y, "0=1; 1=2; 3=2")
Error in recode(y, "0=1; 1=2; 3=2") :
(list) object cannot be coerced to type 'double'
如果threecat的元素是向量,则可以在向量元素上运行recode:
> recode(y[[1]], "0=1; 1=2; 3=2")
[1] 1 2 2 2 4
如果threecat是元素列表,则必须将其取消列出:
> yy <- list(0,1,2,3,4)
> yy
[[1]]
[1] 0
[[2]]
[1] 1
[[3]]
[1] 2
[[4]]
[1] 3
[[5]]
[1] 4
> recode(unlist(yy), "0=1; 1=2; 3=2")
[1] 1 2 2 2 4
如果没有看到您实际使用的变量,很难说更多。