RDotNet.dll 中发生了 'RDotNet.EvaluationException' 类型的未处理异常

An unhandled exception of type 'RDotNet.EvaluationException' occurred in RDotNet.dll

R.Net 在 Windows Forms 应用程序中使用网络文件路径时抛出错误。

engine.Evaluate("source('\\Something.x.y.z.edu/SomeLocation/SomeFile.R');");

如果我尝试 运行 R 或 RStudio 中的 source('\\Something.x.y.z.edu/SomeLocation/SomeFile.R'); 行,则相同的语句有效。

如有任何想法或建议,我们将不胜感激。谢谢你。

您可能需要使用 C#

engine.Evaluate("source('\\\\Something.x.y.z.edu/SomeLocation/SomeFile.R');");

所以字符串

"source('\\Something.x.y.z.edu/SomeLocation/SomeFile.R');"

传递给R。