Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Call R (programming language) from .net

I'm working on an application that requires a great deal of stastical processing and output as images in a .net desktop application. The problems, including generating the output images, seem like a natural fit for R http://www.r-project.org/

Is there a wrapper, API, SDK, or port that will allow me to call R from .net?

like image 499
detroitpro Avatar asked Feb 17 '11 05:02

detroitpro


People also ask

Is R similar to C#?

For array, matrix and object indices, R is a 1-based language, rather than 0-based like the C# language.

What language is R coded in?

So in conclusion: while R itself is mostly written in C (with hefty chunks in R and Fortran), R packages are mostly written in R (with hefty chunks written in C/C++).

Can R connect with other languages?

R is a great language, but it can't do everything well. Thus, it is sometimes desirable to call code written in other languages from R. Conversely, when working in other great languages, you may encounter tasks that could be better done in R.

Do developers use R?

R uses several standard tools to enhance statistical models and conduct data analysis, but it is also efficient for software development. Developers can create various applications using an interactive web application package such as R Shiny. R programming is also used in developing statistical software applications.


2 Answers

R.NET is pretty buggy with the newer version of R. And if it doesn't work right, it works terribly (and will continue to do so unless you know exactly how to fix it).

Personally, I'd recommend using R script files and executing them. What you should do is start your R script with

> sink() > #set your working directory here with setwd() > #your code comes in here > sink(#name your output file here - could label it with a .txt if you please + ) 

And from .NET, you have to include the System.Diagnostics namespace by typing using System.Diagnostics and then write this code:

string strCmdLine; strCmdLine = "R CMD BATCH" + /* the path to your R script goes here */; System.Diagnostics.Process.Start("CMD.exe",strCmdLine); process1.Close(); 

You can then use a StreamReader like this:

StreamReader ROutput = new StreamReader(/* your R output file's path should go here */) 

And then parse it as you please (see RegEx and a string's split method if you need help with that too).

Hope this helps!

like image 151
Moriarty Snarly Avatar answered Oct 04 '22 08:10

Moriarty Snarly


I found this library easier to use:

http://rdotnet.codeplex.com/

Some reasons why:

  • Only a single .NET assembly is required
  • The DCOM Server actually requires several components from different places
  • One of the components has a very restrictive license. Only direct downloads from the website are allowed - no other form of distribution is permitted, by default, which is going to make deployment interesting
like image 39
Thomas Bratt Avatar answered Oct 04 '22 07:10

Thomas Bratt