QBoard » Artificial Intelligence & ML » AI and ML - R » Call R (programming language) from .net

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?

      September 2, 2021 2:01 PM IST
    0
  • 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!

      September 3, 2021 1:32 PM IST
    0
  • Shiny is an option.

    You can run a shiny app and open your report both in your browser and your wpf browser control.

    Here is a more detailed explanation. It is in other language, but I tried to insert English keywords. All italic text is English.

      November 3, 2021 2:08 PM IST
    0
  • 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
      November 13, 2021 2:33 PM IST
    0
  • As other people said, R.NET is pretty buggy. To shield yourselfs from effects of new R versions, you can use R-server (rserve) here.

    You can then use a rserve-client to execute your R scripts.
    On sourceforge, you will find the C# version.

    You will need R 1.5+ installed on the server.

      October 2, 2021 12:03 AM IST
    0
  • 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!
      September 2, 2021 4:49 PM IST
    0