I have a C# application which needs a Deedle Frame as input data. I also have a R script that return a data frame, and I don't want to re-implement the algorithm in R script by C#. I tried using R.Net, I can get the data frame from R script in C# application, but its type is RDotNet.DataFrame. Is there any to convert RDotNet.DataFrame to Deedle Frame in C# code?
I am also thinking about creating a F# dll library that calls the R script, then use that dll library in C# code. Is it possible?