Re: [R] returning value from source() in R .Net

2012-05-01 Thread Jeff Newmiller
I am mystified as to why you think you can source a snippet of one interpreted language into a different compiled language. Fortunately this is not the correct forum for your question, so I can punt. Google suggests that you look at rdotnet.codeplex.com, and perhaps read their documentation, an

[R] returning value from source() in R .Net

2012-05-01 Thread Paul.Rustomji
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---