search for: my_r_function

Displaying 4 results from an estimated 4 matches for "my_r_function".

Did you mean: my_c_function
2007 Jun 28
2
using self-written functions
Hi, I am pretty new to R, so I apologize for the obvious question. I have worked with R for a few months now and in the process have written several functions that I frequently use in various data analysis projects. I tend to give each project a directory of its own and set the working directory to that. Since there are several tasks that need to be accomplished in many of my projects, I
2010 Jan 22
1
MAC R crashes
...ofile, R will sometimes run but hangs and goes non-responsive when I type only one letter of a command. cat .Rprofile # Example of .Rprofile .First <- function() { library(bayesm) library(tcltk) cat(" tcltk,bayesm loaded \n\n") } source("my_R_functions.R") cat(" custom functions loaded \n") .Last <- function() cat("\n Goodbye!\n\n") I have fully updated by mac os. Any help would be most appreciated. Peter Rossi
2006 Mar 21
1
R functionality from within C# .NET
Dear all (especially R-Win users), I'm looking for a good way to use R functionality from within a C# application. One way would be via (D)COM, but I would prefer a more "direct" solution: My main concern is to ship all necessary files in one easy-to-install package, so that users do not need to download and install R separately. Any help, advice, or example code would be greatly
2012 May 22
1
Capturing signals from within external libs
I have a continuous loop running in an external library that I am calling from C (R API). This loop is processing events in real time with the possibility of significant lag between events. When processing an event, I can make use of R_CheckUserInterrupt, but while the external library code is waiting on a new event, I don't have an opportunity to call this - my entry points are only on