Created Unassigned: I don't know Why r plot is broken. [176]
I want Displaying an R Graph within a C# .NET Winform.So, I use RGraphHoot code form [here](https://rdotnet.codeplex.com/workitem/7).But I have some problem.Plot is broken when display with in panel.I...
View ArticleCommented Unassigned: R.Net Error: could not find function "memory.limit" [175]
Hi, I have the following lines of code in C#: string RpathOld = @"C:\Program Files\R\R-3.1.0\bin\x64"; string RpathNew = @"C:\Program Files\R\R-3.2.0\bin\x64"; try {...
View ArticleCommented Unassigned: Dataset Pass into R function C# [174]
Hi,I want to pass dataset into r function in c# how its possible.R Code :```fnData<-function(df){ret<-df#apply(df,1,mean)return(df)}```C# Code :``` DataFrame df = engine.Evaluate("fnData('" + d +...
View ArticleClosed Unassigned: Dataset Pass into R function C# [174]
Hi,I want to pass dataset into r function in c# how its possible.R Code :```fnData<-function(df){ret<-df#apply(df,1,mean)return(df)}```C# Code :``` DataFrame df = engine.Evaluate("fnData('" + d +...
View ArticleClosed Unassigned: Rengine initialization: while running from visual studio...
Rengine initialization: while running from visual studio first time i got the result on button click .But the second time while click on button, same hangs in engine.initialize....pls help...
View ArticleClosed Unassigned: Getting error while browsing the rdotnet application from...
Hi all,'Please help me for the below issue. I have attached the error while browsing application from IIS. I am getting library tm not found. But the same is working from dotnetframework. I am facing...
View ArticleClosed Unassigned: rdotnet is very slow [170]
Please help me to avoid slowness in rdotnet
View ArticleNew Post: Plot display only half
I want Displaying an R Graph within a C# .NET Winform. So, I use RGraphHoot code form here. But I have some problem. Plot is broken when display with in panel. It display half of a plot. I just call...
View ArticleNew Post: Precision of calculations
Could you tell me something about precision and reproducibility of calculations using R. Aren't there any problems using double data type? Thanks a lot.
View ArticleUpdated Wiki: Home
Project Description: R.NET is an in-process interoperability bridge to R from the .NET Framework. R.NET requires .NET Framework 4 and the native R DLLs installed with the R environment. R.NET works on...
View ArticleReviewed: R.NET 1.5.19 (NuGet) (Aug 10, 2015)
Rated 5 Stars (out of 5) - Really appreciate the effort you guys are putting here - opening up R to .NET users like this is extremely helpful. Where can I donate?
View ArticleNew Post: p-value question
Hi, I'd like to know how to access the p-value in a regression model. The code below will print out regression statistics, including the p-value, but how can I access the p-value in m?> m <- lm(y...
View ArticleNew Post: p-value question
After some googling I found out how you can access the p-values of the coefficients:> summ <- summary(m)> pvalues <- summ$coefficients[, 4]
View ArticleNew Post: Inside SQLCLR
Did anyone come up with anything on this front? I'm attempting to use R.Net in SQL CLR and I'm not getting very far. I don't have the .Net version issue but when I try to run the following code, my...
View ArticleNew Post: R.NET and Web application
I have an R script that can be run easily using the following code: public DataFrame RunXCMS() { REngine.SetEnvironmentVariables(); REngine engine = REngine.GetInstance();...
View ArticleNew Post: Precision of calculations
Your question is way too broad to answer, and not even an R.NET specific topic. The only thing I can say is that the numeric vectors in R use double precision. As for reproducibility, the issue (the...
View ArticleNew Post: Inside SQLCLR
You are sending either a null or an empty string to your Sql Pipe. Not sure whether this in intended, but just look at what R is doing even without R.NET with: str(as.list(cat('Hello World!')))...
View ArticleNew Post: R.NET and Web application
This is a common issue encountered when using R.NET in conjunctions with ASP.NET I just added some documentation about it in the new documentation site, page...
View Article