January 11th, 2008, 3:47 pm
QuoteOriginally posted by: balajianIs it possible to call R methods from languages like c++,C# etc. ?I know that you can run a R routine by calling them from a C++, but, for using R functions directly in C++ I'm not sure if exists a link for that.One trick you can use for artificially use R functions at C++ is to use .txt (or .csv) files for exchange data between a R routine and C++. That way you can use data from C++, input it at a R function and get the output. But, if you're dealing with a large scale system, that possibly a bad solution..