New Post: Missing tab characters in RDotNet stdout output
The ConsoleDevice seems to be trimming the whitespace. I'm not certain why.https://github.com/jmp75/rdotnet/blob/master/R.NET/Devices/ConsoleDevice.cs#L33public void WriteConsole(string output, int...
View ArticleNew Post: Missing tab characters in RDotNet stdout output
Wow, thank you very very much. Commenting out that single line (output = output.Trim(' ');) fixes the problem, and now RDotNet's stdout output looks exactly like what RGui shows. Now even the output of...
View ArticleNew Post: Missing tab characters in RDotNet stdout output
Hmm. Looking at the Hg history, somebody named 'skyguy94' added that line on 2014-11-12 in the 'FontImprovements' branch. I wonder how that improves font handling? :)
View ArticleNew Post: Missing tab characters in RDotNet stdout output
Dammit...caught in the act! I have no idea. I blame the PR reviewers....
View ArticleNew Post: Missing tab characters in RDotNet stdout output
I really don't know where that line came from. I looked at the history for my private version and I got rid of it at some point. Here's the current implementation of my console device: public void...
View ArticleNew Post: Missing tab characters in RDotNet stdout output
I will remove this line from the master branch. The implementation with WriteConsoleEx is on the client_server branch. I have yet to find the time to revisit and incorporate your (@skyguy94)...
View ArticleNew Post: Missing tab characters in RDotNet stdout output
That branch is a good prototype, and meets our needs internally. I have a better rewrite of that coming that is cross-platform like people are looking for, plus a few other tweaks, like different...
View ArticleCreated Unassigned: callbackoncollecteddeligate detected error in R,Net [163]
i have got the callbackoncollecteddelegate was detected error in r.net when i run the following code private void inputCSVToolStripMenuItem_Click(object sender, EventArgs e){ REngine engine =...
View ArticleNew Post: Can't get sample to run.
Folks, I am trying to run some of the sample code (see below) but I am not having any luck. Let me know if there are other pieces of information that might help you help me. I am using Microsoft Visual...
View ArticleNew Post: Callbackcollecteddeligate error in R.NET
when i debug the code in visual studio it shows the following error same error id getting from different parts of the code i will mark that parts please help me to solve the problem A callback was made...
View ArticleNew Post: package or namespace load failed for 'rJava'
I had similar error before. The trick is to install both 32bit and 64bit Java, both have to be the same version. Afterwards it works fine for me.
View ArticleNew Post: Pull R process out of IIS process
I have a web application where I use R script and R.NET to create statistical plot based on data from database. Everything works like a charm until when R script produces an error, e.g. library not...
View ArticleNew Post: Can't get sample to run.
Looks like you need to set up NuGet, and/or then restore the R.NET NuGet packages. Please read the documentation , under "Getting set up", "Visual Studio"
View ArticleNew Post: Callbackcollecteddeligate error in R.NET
You are visibly using an outdated version of R.NET. Please read the documentation to get the latest version. You are probably trying to reinitialise the R engine twice in the same process (i.e. closing...
View ArticleNew Post: Can't get sample to run.
JP Thanks for the help. I have gone through a couple of iterations over the last week. I think it was earlier when I figured out that I needed to have "using RDotNet;” That wasn’t clear to me in the...
View ArticleNew Post: Pull R process out of IIS process
I'm about to embark on your path--webapi on iis. As a workaround to your desired approach, have you tried to catch the error in R with tryCatch function?
View ArticleNew Post: Error in deployed asp.net application
I am facing a similar problem as you. Can anyone please look at the following problem: We have integrated R 3.1.2 with ASP.NET, by using R.NET plug in. But after deploying application in IIS 6.0,...
View ArticleNew Post: Pull R process out of IIS process
subsci wrote: I'm about to embark on your path--webapi on iis. As a workaround to your desired approach, have you tried to catch the error in R with tryCatch function? Thank you very much for your...
View ArticleNew Post: Package ‘stats’ in options was not found
I had the same problem with 1.5.22. The trick with adding "c:\Program Files\R\R-3.0.1\bin\i386" to the Windows path permanently worked. Note that in my case adding of just one path of the two above is...
View ArticleNew Post: Error in deployed asp.net application
Similar things happened to me before and it was quite troublesome. The error message is too lack of details. There are several things you might wanna check first:install your packages in the default...
View Article