is there a way to call R functions from C# and retrieve the result in C#

c#, r

Solution

Given there is a COM interface to R, you can use C#'s COM interop to control it.

See this article for more details: http://www.codeproject.com/KB/cs/RtoCSharp.aspx

Problem

Is there a way to call R functions from C# and retrieve the result in C#?

Original source

Related problems