Azure机器学习执行R脚本 - 找不到函数“rowid”错误
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Azure机器学习执行R脚本 - 找不到函数“rowid”错误相关的知识,希望对你有一定的参考价值。
我试图在Azure ML工作室中运行以下R脚本,将数据帧从长格式转换/重新整形(example)。我的脚本在Rstudio中运行得很好。但同样不会在Azure ML工作室中运行并抛出以下错误 - 无法找到函数“rowid”。很高兴知道我怎么能摆脱这个以及究竟是什么造成了这个错误,尽管它足以在Rstudio中整齐地运行。
#loading all libraries in Azure ML environment
x <- c('plyr','reshape2','data.table','reshape')
lapply(x, library, character.only = TRUE)
#Map 1-based optional input ports to variables
cross_sell <- maml.mapInputPort(1) # class: data.frame
#sample maml.mapInputPort(1) output looke like this -
#cross_sell <- data.table(Order.number c('01234567','03221345','01234567'), Art_name = c('cheese','choc','cheese'))
xx_cross_sell <- as.data.frame(dcast(setDT(cross_sell),Order.number ~ rowid(Order.number, prefix = "Article"), value.var = "Art.name"))
cross_sell_tf <- as.data.frame(xx_cross_sell[,2:7])
#Error: Error 0063: The following error occurred during evaluation of R script:
# ---------- Start of error message from R ----------
could not find function "rowid"
# ----------- End of error message from R -----------
我试过R版本CRAN R 3.1.0和Microsoft R open 3.2.2中的代码。非常感谢你提前。
答案
嗨,我在2天前遇到了同样的问题,功能pull()
,总是包dplyr
。问题是Azure Machine Learning Studio支持的R版本(CRAN R 3.1.0和Microsoft R open 3.2.2)不支持0.7.4
软件包的版本dplyr
。如果您阅读与documentation软件包相关的dplyr
,您会发现该软件包仅适用于R版本> = 3.1.2。
然后,您必须等待Azure Machine Learning Studio使用的R版本更新,或者找到您的功能的替代解决方案。
以上是关于Azure机器学习执行R脚本 - 找不到函数“rowid”错误的主要内容,如果未能解决你的问题,请参考以下文章
尝试使用 powershell 从 Azure 还原数据库时,Octopus 部署找不到 SQL 凭据
在 Azure SQL 数据库中找不到 sp_configure?