similar to: R Data Frame to C# DataGridView - R.NET

Displaying 7 results from an estimated 7 matches similar to: "R Data Frame to C# DataGridView - R.NET"

2017 Sep 02
0
New package: rDotNet
I?ve published a package on CRAN called ?rDotNet?. rDotNet allows R to access .NET libraries. From R one can: * create .NET objects * call member functions * call class functions (i.e. static members) * access and set properties * access indexing members The package will run with either mono on OS X / Linux or the Microsoft .NET VM on windows. Find the source and description of the package
2017 Sep 02
0
New package: rDotNet
I?ve published a package on CRAN called ?rDotNet?. rDotNet allows R to access .NET libraries. From R one can: * create .NET objects * call member functions * call class functions (i.e. static members) * access and set properties * access indexing members The package will run with either mono on OS X / Linux or the Microsoft .NET VM on windows. Find the source and description of the package
2011 Apr 07
5
R licence
Hi, is it possible to use some statistic computing by R in proprietary software? Our software is written in c#, and we intend to use http://rdotnet.codeplex.com/ to get R work there. Especially we want to use loess function. Thanks, Best regards, Stanislav [[alternative HTML version deleted]]
2013 Nov 21
2
Running R embedded in an mpiexec spawned process - Fatal error: you must specify '--save', '--no-save' or '--vanilla'
I'd like someone familiar with the R options initialization to comment on a difference of behavior within/without mpiexec I have a (.NET) application with embedded R that is proven to run in a single process: ./Sample1.exe on a Debian Linux with R 3.0.2 Running the same code with mpiexec, it fails at the R engine initialization: mpiexec -n 1 ./Sample1.exe Fatal error: you must
2012 May 22
1
How to evaluate R things from Visual Studio?
Hello all, I’m new here and this is actually my very first post. My name is Giannis and I am an undergraduate student. I am programming in Microsoft’s Visual Studio 2010 (VB.NET mostly) and I want to create a program for the research group I am in. I merely want to evaluate actions and use simple statistical things such as ks test (Kolmogorov-Smirnov), and some plots. The reason I need to call R
2015 Apr 17
2
Integración de R y C#
Hola a todos. Se me está plantendo la posibilidad de empezar a aprender C# para hacer algunos programillas (nada grande). El tema es que el otro día en un mail de esta misma lista alguien (lo siento, no recuerdo quien) puso un link a un post en el que se hablaba de la integración entre R y C#. Por supuesto para llegar a poder hacer esto primero tengo que entender las bases de .NET y C#, pero me
2012 May 02
1
returning value from source() in R .Net
Hello I would like to source an R script from within a C# .Net application equivalent to: source("my_r_code.r") I can get this to run but am not sure how to retrieve R objects defined with script my_r_code.r at runtime. For example, if "my_r_code.r" contains #-- contents of my_r_code.r--------------------- x <- 1:10 xmean <- mean(x)