0

我正在尝试查看是否可以在我的用户帐户而不是testuser帐户中运行代码示例。为此,我做了以下工作:

  • example-fraud-score在我的 DeployR 用户帐户下创建了一个文件夹(不是testuser教程中列出的文件夹,可在此处找到:https ://msdn.microsoft.com/en-us/microsoft-r/deployr-data-scientist-getting-started )
  • analytics/将教程中的内容上传到example-fraud-scoreDeployR 服务器上的目录。
  • 尝试运行该文件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。

帮助表示赞赏。

谢谢,马特

4

1 回答 1

0

那是远程目录(第二个框)吗?如果是这样,你为什么不打电话setwd()

于 2017-02-21T18:23:03.810 回答