找不到功能"演员"尽管reshape2安装和加载

时间:2012-09-18 00:24:55

标签: r reshape2

在2.4节中的Hadley Wickham的"Practical tools for exploring data and models"示例中, Casting molten data 我得到了Error: could not find function "cast"。我安装并加载了reshape2包。

> cast(msmithsm, time + subject ~ variable)
Error: could not find function "cast"

2 个答案:

答案 0 :(得分:20)

reshape2 中,cast()已被两个函数取代:acast()dcast()

来自?cast,在 reshape2

包中
  

说明

     

根据您的需要使用'acast'或'dcast'      向量/矩阵/数组输出或数据帧输出。

答案 1 :(得分:0)

有相关问题(错误:无法找到功能“dcast”)。我有旧图书馆,图书馆(plyr),所以只是添加到代码......

install.packages("reshape2") # may already be installed
library(reshape2)

然后dcast再次工作