Error 0063: The following error occurred during evaluation of R script:

泄露秘密 提交于 2019-12-25 06:57:37

问题


I have uploaded some CSV files in Azure ML Studio as a Zip file. Now, when I try to read these CSV files in the R Script module using the below statements, it fails with below error. The Zip file dataset it attached to the R Script module at the Script bundle port.

Code Statements:

feed <- read.csv("src/KMTS-MORI-NMV-5000-1213-PATH_FEEDRATE-ACTUAL.csv", header=F)
feed <- read.csv("./src/KMTS-MORI-NMV-5000-1213-PATH_FEEDRATE-ACTUAL.csv", header=F)
feed <- read.table("src/KMTS-MORI-NMV-5000-1213-PATH_FEEDRATE-ACTUAL.csv", header=F, sep=",")
feed <- read.table("./src/KMTS-MORI-NMV-5000-1213-PATH_FEEDRATE-ACTUAL.csv", header=F, sep=",")
feed <- read.table(file="src/KMTS-MORI-NMV-5000-1213-PATH_FEEDRATE-ACTUAL.csv", header=F, sep=",")

Error Message:

Error 0063: The following error occurred during evaluation of R script:
 ---------- Start of error message from R ----------
 cannot open the connection

 cannot open the connection
 ----------- End of error message from R -----------
Start time: UTC 08/29/2015 23:20:28
End time: UTC 08/29/2015 23:20:37

回答1:


You could check if the files appear in a subfolder under ./src, for example by running this R script in the module.

data.set <- as.data.frame(list.files("src",full.names=TRUE,recursive=TRUE))



来源:https://stackoverflow.com/questions/32291745/error-0063-the-following-error-occurred-during-evaluation-of-r-script

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!