我正在尝试查看是否可以在我的用户帐户中运行代码示例,而不是testuser
帐户。为此,我做了以下事情:
example-fraud-score
(不是教程中列出的testuser
,在此处找到:https://msdn.microsoft.com/en-us/microsoft-r/deployr-data-scientist-getting-started)analytics/
的内容上传到DeployR服务器上的example-fraud-score
目录。ccFraudScore.R
,内容:https://github.com/Microsoft/js-example-fraud-score-basics/blob/master/analytics/ccFraudScore.R。单击DeployR中的文件名后右侧的选项卡。当我这样做时,我收到错误:
Connecting to 172.31.232.190:8000
3:53:26 PM Stream Connect matthew.pettis connection established, waiting for an event...
> require(deployrUtils)
> deployrInput("{\"name\": \"bal\", \"render\":\"integer\", \"default\": 5000, \"min\" : 0, \"max\": 25000 }")
> deployrInput("{\"name\": \"trans\", \"render\":\"integer\", \"default\": 12, \"min\" : 0, \"max\": 100 }")
> deployrInput("{\"name\": \"credit\", \"render\":\"integer\", \"default\": 8, \"min\" : 0, \"max\": 75 }")
> if (!exists("fraudModel")) {
+ load("fraudModel.rData")
Console Error cannot open the connection
API Error cannot open the connection
我尝试按照此处的帖子进行问题排查,但我无法找到目录的位置:deployR cannot open the connection
当我使用脚本查找工作目录(和列表内容)时,我看到:
> require(deployrUtils)
> getwd()
[1] "C:/PROGRA~1/MICROS~2/DEPLOY~1.0/rserve/workdir/conn2209460"
> list.files(getwd())
[1] "DeployREngineSource.r" "unnamedplot001.png"
这似乎是要使用的错误目录。当我试图为我的用户寻找我的目录时,我似乎无法找到它。我的DeployR版本是8.0.0。
非常感谢帮助。
谢谢, 马特
答案 0 :(得分:0)
那是远程目录(第二个框)吗?
如果是这样,为什么不拨打setwd()
?