我想知道是否可以在传入值列表的同时运行 Rscript,让该 R 脚本运行,然后将值的重新排序列表输出回 c#。
我见过人们说 R.NET 很好,但我只看到过使用它直接创建值、操作它们、访问它们等的例子,而我想要做的是运行已经创建的脚本来接收数据,处理它并返回数据。我也知道我可以用 csv 文件来做到这一点,但关键是我想去掉中间人。
这个问题大约有 5 年的历史,这里有一些可用的答案。我将使用一个非常简单的R
脚本来完成它。
最好从这个链接开始
在这个简单的示例中,我将 3 传递给 R,将其与 5 相加并返回结果 (8)。
脚步
name.r
使用您的 r 代码创建一个文本文件,如下所示。我将其命名为rcodeTest.r
library(RODBC) # you can write the results to a database by using this library
args = commandArgs(trailingOnly = TRUE) # allows R to get parameters
cat(as.numeric(args[1])+5)# converts 3 to a number (numeric)
然后像下面一样创建 ac# 类(随便叫什么,我叫它RScriptRunner
),也可以在这里找到。这是一个简单的类,它只调用一个过程(一个 exe 文件)
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Linq;
using System.Web;
/// <summary>
/// Summary description for RScriptRunner
/// </summary>
public class RScriptRunner
{
public RScriptRunner()
{
//
// TODO: Add constructor logic here
//
}
// Runs an R script from a file using Rscript.exe.
///
/// Example:
///
/// RScriptRunner.RunFromCmd(curDirectory + @"\ImageClustering.r", "rscript.exe", curDirectory.Replace('\\','/'));
///
/// Getting args passed from C# using R:
///
/// args = commandArgs(trailingOnly = TRUE)
/// print(args[1]);
///
///
/// rCodeFilePath - File where your R code is located.
/// rScriptExecutablePath - Usually only requires "rscript.exe"
/// args - Multiple R args can be seperated by spaces.
/// Returns - a string with the R responses.
public static string RunFromCmd(string rCodeFilePath, string rScriptExecutablePath, string args)
{
string file = rCodeFilePath;
string result = string.Empty;
try
{
var info = new ProcessStartInfo();
info.FileName = rScriptExecutablePath;
info.WorkingDirectory = Path.GetDirectoryName(rScriptExecutablePath);
info.Arguments = rCodeFilePath + " " + args;
info.RedirectStandardInput = false;
info.RedirectStandardOutput = true;
info.UseShellExecute = false;
info.CreateNoWindow = true;
using (var proc = new Process())
{
proc.StartInfo = info;
proc.Start();
result = proc.StandardOutput.ReadToEnd();
}
return result;
}
catch (Exception ex)
{
throw new Exception("R Script failed: " + result, ex);
}
}
}
然后调用并传递参数,如
result = RScriptRunner.RunFromCmd(path + @"\rcodeTest.r", @"D:\Programms\R-3.3.3\bin\rscript.exe", "3");
rscript.exe
位于您的 R 目录中,并且path
是您的 r 脚本 ( rcodeTest.r
)的位置