New Post: Forecast
That parse exception indicates something is wrong with your code. Have you tried the raw R code in RStudio to see if it runs correctly?
View ArticleNew Post: How to get "User Function Code" Via R.NET?
I'm sorry, I can't understand what you are asking for? Have you read the R.Net documentation?
View ArticleCommented Unassigned: Real-Time plotting [159]
I launch the code below to emulate a realtime chart building``` using (REngine engine = REngine.GetInstance()){ var values = new double[100]; var rnd = new Random(); for (int i = 0; i <...
View ArticleNew Post: Forecast
Yes, It working fine in R studio, without any error. But when i try to apply in .net, i get the error.
View ArticleNew Post: package or namespace load failed for 'rJava'
I've installed the java on my machine and I can run the two below lines in R environment : __ install.packages('rJava', repos='http://rweb.quant.ku.edu/cran/' ,dep=FALSE) library(rJava)__ however when...
View ArticleNew Post: package or namespace load failed for 'rJava'
I resolved it by re-installing Java !
View ArticleCreated Unassigned: execute script [161]
I'm using VS2013 and R.net to execute some R script which is suppose to return matrix but it doesn't work.here is the script :m0 <- matrix(NA, 4, 0)m2 <- cbind(1, 1:4) colnames(m2) <-...
View ArticleEdited Unassigned: execute script [161]
I'm using VS2013 and R.net to execute some R script which is suppose to return matrix but it doesn't work.here is the script :m0 <- matrix(NA, 4, 0)m2 <- cbind(1, 1:4) colnames(m2) <-...
View ArticleEdited Unassigned: execute script [161]
I'm using VS2013 and R.net to execute some R script which is suppose to return matrix but it doesn't work.here is the script :m0 <- matrix(NA, 4, 0)m2 <- cbind(1, 1:4) colnames(m2) <-...
View ArticleCreated Unassigned: ASP.NET MVC: there is no package called 'twitteR' [162]
People, I am having the same issue as other users, only that adding R to path didnt work.I tried adding both folders, i386 and x64, so my path variable is as follows:C:\Program...
View ArticleCommented Unassigned: ASP.NET MVC: there is no package called 'twitteR' [162]
People, I am having the same issue as other users, only that adding R to path didnt work.I tried adding both folders, i386 and x64, so my path variable is as follows:C:\Program...
View ArticleNew Post: Raw output from R
Hello, I am currently trying to return the output from R exactly the way R would show in its console. I am open to any method that works. I tried using GenericVectors and iterating through it but the...
View ArticleCommented Unassigned: ASP.NET MVC: there is no package called 'twitteR' [162]
People, I am having the same issue as other users, only that adding R to path didnt work.I tried adding both folders, i386 and x64, so my path variable is as follows:C:\Program...
View ArticleNew Post: Raw output from R
Try ThisAddIn.engine.AutoPrint = true before evaluating any R code. Manually needing to enable AutoPrint is a 'by design' bevhavior of the REngine. You can find out more in the R team's R-Internals...
View ArticleNew Post: Forecast
Again, a ParseError is a syntax error in your R code. I've replaced the variables in your code with hardcoded constants as such:var value = engine.CreateNumericVector(new double[] { 1,2,3,4,5});...
View ArticleNew Post: Raw output from R
It works! I spent a lot of time trying to get this to work. Thanks a bunch!
View ArticleCommented Issue: NullReference exception when using CharacterDevice [154]
I tried updating to the latest version of R.NET in RProvider, but I keep getting an exception when running R provider on Mac (this might be failing on Windows too, but I only tried on Mac). Version...
View ArticleCommented Issue: NullReference exception when using CharacterDevice [154]
I tried updating to the latest version of R.NET in RProvider, but I keep getting an exception when running R provider on Mac (this might be failing on Windows too, but I only tried on Mac). Version...
View ArticleNew Post: Missing tab characters in RDotNet stdout output
In RGui on Windows 7, if I create the following vector and print it...> ar = c(1, 12, 123, 1234, 12345, 123456, 1234567, 12345678) > print(ar) [1] 1 12 123 1234 12345 123456 1234567 12345678 Now...
View Article