New Post: Save object but file doesn't find
Please provide self-contained sample code reproducing the issue; as it stands some packages and variables are implied and would require second-guessing.
View ArticleNew Post: A begginer in C# and fluent in R!
Hi, Yes essentially R.NET is very likely to be helpful to your mission. Your question is broad, however. The examples in the home page and the Documentation page should let you get started if you have...
View ArticleNew Post: Save object but file doesn't find
Sorry, I lost some script in my question here are my R script: __ Those script can work in R __library("rpart"); basicData <- iris; tranprec <-0.7; testprec <- 0.3; index<-...
View ArticleNew Post: Save object but file doesn't find
It is a bug. Since R.NET conducts incorrect syntax parsing, some complex syntax would fail to evaluate. I committed a workaround patch (changeset:71eb087eba38) for the issue. I tried your source code...
View ArticleCreated Unassigned: Support for .NET method callback [53]
see the thread on stackoverflow: [optimizing a C# function from R](http://stackoverflow.com/questions/17214741/is-it-possible-to-call-a-r-statistics-function-to-optimize-c-sharp-function).
View ArticleEdited Feature: Support for .NET method callback [53]
see the thread on stackoverflow: [optimizing a C# function from R](http://stackoverflow.com/questions/17214741/is-it-possible-to-call-a-r-statistics-function-to-optimize-c-sharp-function).I am...
View ArticleNew Post: Underlying R error for debug
Hello RdotNet, Great library! When I make an incorrect call to R, or there is otherwise some kind of issue with Evaluating my instruction, I always get the same error "ParseException was unhandled",...
View ArticleCommented Feature: Support for .NET method callback [53]
see the thread on stackoverflow: [optimizing a C# function from R](http://stackoverflow.com/questions/17214741/is-it-possible-to-call-a-r-statistics-function-to-optimize-c-sharp-function).I am...
View ArticleNew Post: Underlying R error for debug
Don't worry: now see it outputs to console. Apologies for the oversight !!
View ArticleCommented Feature: Support for .NET method callback [53]
see the thread on stackoverflow: [optimizing a C# function from R](http://stackoverflow.com/questions/17214741/is-it-possible-to-call-a-r-statistics-function-to-optimize-c-sharp-function).I am...
View ArticleNew Post: Restart engine
I also have this problem, I even try --- rEngine.Close(); rEngine.Dispose(); rEngine = null; rEngine = REngine.CreateInstance("RDotNet"); rEngine.Initialize(); But it just hangs (without error) on...
View ArticleNew Post: Restart engine
I have also tried to clear the memory for the rEngine without restarting (though restarting does seem like a surefire solution). When I try and clear my memory I use -...
View ArticleNew Post: Why only the first definition of matrix in R code is returned?
Yeah!! I've got it! The solution is to put semicolon after each statement in for loop. So, the next code will workengine.Evaluate(@"library(som) DatTable<-read.table(""clipboard"", header=FALSE)...
View ArticleNew Post: Why only the first definition of matrix in R code is returned?
I'm sorry, I miss the discussion. I might solve this problem in the recent changeset. The latest source code might go without semicolons.
View ArticleNew Post: Why only the first definition of matrix in R code is returned?
Sent with AquaMail for Androidhttp://www.aqua-mail.comOn September 10, 2013 8:43:08 AM "kos59125" wrote:From: kos59125I'm sorry, I miss the discussion. I might solve this problem in the recent...
View ArticleNew Post: Could not load file or assembly 'RDotNet, Version=1.5.4.0
Hello. I'm a new C# user trying to get R.NET working in Linux. I just copied one of the examples from this page to see if it works, but I think I am making some mistakes on setting the directories...
View ArticleNew Post: Restart engine
I just tried to quit R before the rEngine.Close() command, in the hope it would help - rEngine.Evaluate("q()"); But this quit out of my whole c# application! Anyone got any ideas? I'll take workarounds...
View ArticleNew Post: R Engine Reuse (re-initialize)
jperraud, Is it possible to run the REngine instance in an isolated process, close that process, close the REngine - and then create a new process with a new (fresh) REngine? Any work around is good!!...
View Article