RInside is an R package providing C++ classes that simplify the embedding of R in C++ code.

learn more… | top users | synonyms

0
votes
1answer
43 views

Using Rcpp and RInside in Windows 7 Without Specific IDEs [closed]

Most of the people who have asked about this topic so far seem to be either halfway through the process of installing these packages (whereas I barely know how to begin) or are using things like ...
0
votes
1answer
24 views

RInside Callbacks

I try to set some callbacks of RInside but I realise that there is a definition of variable RINSIDE_CALLBACKS which prevents the compilation of function causing a linker error void ...
0
votes
1answer
42 views

Error in loadNamespace(name) : there is no package called 'Rcpp'

I am trying to embed RInside to my application on win7 64-bit system but when I initialize an RInside Rin = new RInside(argc, argv); the following message appears Error in loadNamespace(name) ...
0
votes
1answer
178 views

Getting Started with RInside C++ [closed]

I've been an R user for about 4 years and over the past two weeks I've been developing a simple package of functions which analyse some data and plot some graphs in a way suitable for a project other ...
1
vote
0answers
91 views

windows r inside rcpp eclipse

I'm trying to use Rinside in an IDE, Eclipse. Follow step by step manual http://blog.fellstat.com/?p=170 However, when you Build All I mark the following errors ...
0
votes
1answer
91 views

creating an RInside instance inside a thread

I am interested in writing a c++ program that is capable of running R scripts. For several design reasons I would like to create an instance of RInside, execute a script, grab the result, and destroy ...
-1
votes
1answer
32 views

libRInside.a an empty file

I'm trying to compile the qtdensity example from the RInside examples folder, using Qt, Windows 7, R 32bit. I have followed all the instructions posted online on how to set up these tools since my ...
4
votes
2answers
277 views

Understanding passing armadillo matrices to R functions via RInside

I'm trying to use R within C++ via RInside. I'm having trouble passing armadillo matrices to R and returning a result. Below I am able to return a results from an R library function, however I get the ...
1
vote
1answer
65 views

How to create a TCP Server using RInside?

Does anyone has an experience in creating a TCP server in C++ for calling R functions and serving the results to the clients? I implemented my own using POCO C++ libraries, but got an error message ...
-2
votes
2answers
151 views

multiple definition of `imp_ZTVN4Rcpp14not_compatibleE` on WindowsXP with RInside

The software I am talking of contains 5 files and compiles "perfectly fine" on openSUSE 11.3 with gcc-4.5.1: The same software shows the following error on Windows XP with Mingw (gcc-4.6.3). UPDATE ...
1
vote
1answer
109 views

RCpp/RInside C++ main method queries and limitations?

A couple question about RInside I could not find on the RCpp mailing list. Can you define the RInside() outside out the C++ main() method? Are there any examples of that? Or can I only have one R ...
-1
votes
1answer
399 views

Fatal error: Unable to open the base package [closed]

So, now I have managed to compile the hello program of RInside on WindowsXP (VirtualBox). But, when I click on its executable, I get a dialogbox showing the above error. Searching Google led me to ...
0
votes
1answer
121 views

Rpp, Rinside support for R packages?

Does anyone have decent insight on certain R packages that can work with RInside out of box? I am looking for hopeful support with the R packages of: quantstrat, quantmod, PerformanceAnalytics, and ...
1
vote
1answer
253 views

C++ with a math library like GSL, LAPACK, or CBLAS performance vs C++ with Rinside with an R function?

Has anyone ever done a straight up apple to apple comparison between: A C++ application calling an algorithm done in a R functions using RInside A C++ application calling the equivelant algorithm ...
0
votes
2answers
215 views

Compiling RInside programs on Windows [duplicate]

Possible Duplicate: Problem with compiling RInside examples under Windows On Windows XP: > sessionInfo() R version 2.15.1 (2012-06-22) Platform: i386-pc-mingw32/i386 (32-bit) locale: ...
0
votes
2answers
144 views

RInside segmentation fault and linking issue

I'm trying to call R from c++ on linux via RInside, I compiled R-2.15.1 from source with gcc version 4.5.3 (Debian 4.5.3-1) , I don't have sudo rights to use apt-get install. I'm using OpenBlas and a ...
0
votes
2answers
239 views

RInside installation error

I am trying to make a R development environment in my computer. During last hour, I could successfully install RTools and RCpp. But when I tried the last element RInside package, I get following ...
0
votes
2answers
112 views

RInside linking on mac osx

Hi i'm trying to compile and run simple RInside examples on mac osx. I'm using R installed form macports and RInside installed via R as well with the latest release of all libraries heres my R ...
1
vote
1answer
119 views

Map displayed on R's widget doesn't get maximized when run through Qt

When I load a map on R's widget (through ggmap) and run the program directly though R's console, the map gets properly maximized when I maximize the R's window. The same doesn't happen when I run R ...
2
votes
3answers
365 views

using rinside with qt in windows

I am beginning using rinside and rcpp within c++. I just want to start from zero so my QT project has nothing but the creation of a RInside instance and I have a problem I cannot solve. I have only ...
1
vote
1answer
81 views

Using RInside destructor

A simple experiment shows that only one RInside instance is allowed per thread at a time. #include <RInside.h> int main() { RInside R1; R1.parseEval("cat('Hello, R1\n')"); RInside R2; ...
0
votes
1answer
290 views

compiling an OpenMPI app with the Intel compiler suite

I have the latest OpenMPI on linux which I compiled with the Intel compiler suite. I am trying to compile an OpenMPI application. My particular application uses RInside and RcppEigen. If I comment out ...
1
vote
1answer
131 views

Multiple definition error building RInside samples on Windows 7 x64

I'm trying to build rinside_sample1.cpp from RInside\examples\standard directory on Windows 7 x64 using g++ from RTools in the following way: set RCPP=%R_HOME%\library\Rcpp set ...
0
votes
1answer
229 views

How to display coordinates on the static map PNG file as they are received from the GPS in R?

So, currently I have successfully compiled the program (with RInside) for plotting coordinates on the static maps of Google (on Qt). Now, I have to plot the coordinates on the map as they are ...
0
votes
2answers
410 views

Compiling RInside program with g++ on Linux

I have installed R through RPM (with Yast). anisha@linux-y3pi:~> locate RInside.so /usr/lib64/R/library/RInside/lib/libRInside.so /usr/lib64/R/library/RInside/libs/RInside.so ...
0
votes
1answer
282 views

how to include dll library with makefile, when using rcpp/rinside package

I am using R with Rinside/Rcpp package. I was able to generate .exe/.o/.dll files (A) from come C++ code I wrote based on Rinside package. However, later I found I would like to use A.dll as library ...
0
votes
1answer
278 views

Problems with assigning large vectors

i have the following program. #include <iostream> #include <vector> #include <algorithm> #include <cassert> #include <ctime> #include <cmath> #include ...
3
votes
1answer
209 views

Using Valgrind with RInside programs

Does anyone know how to use Valgrind to memory debug RInside programs?
1
vote
3answers
442 views

g++ ld can't find RInside symbols for x86_64 architecture

I get a linker error saying that symbol(s) cannot be found when I try to compile an RInside sample file with g++. Any assistance would be appreciated. R version 2.13.1 is installed on Mac OS X 10.5. ...
1
vote
1answer
152 views

mvrnorm & riwish

I would like to sample from a multivariate normal and inverse-wishart distribution. I know R has mvrnorm (MASS) and riwish (MCMCpack). Is it possible through RInside to use those functions?
1
vote
1answer
187 views

RInside: parseEvalQ 'Parse Error' causes each subsequent call to parseEvalQ to give a 'Parse Error' even if exception handled

My code, which tries to emulate an R shell via C++, allows a user to send R commands over a tcp connection which are then passed to the R instance through the RInside::parseEvalQ function, during ...
7
votes
3answers
1k views

Problem with compiling RInside examples under Windows

I am trying to setup RInside at work where we are forced to use a Windows environment. I have installed RTools and downloaded an RInside binary from CRAN. My R installation resides in c:\R\R-2.12.2 ...
1
vote
1answer
229 views

Passing RInside's 'R' instance as a parameter between classes/methods

I have been using Rcpp and RInside, to integrate R and C++. We have a complex, yet well designed C++ architecture, and I am finding it difficult to access R from within just 1 function. Is it possible ...
5
votes
2answers
744 views

Call R plots from c++ using RInside/ Rcpp

Is it possible to call the plot functions from the c++ ? Currently when I try to do that, the ubuntu terminal sort of freezes for sometime ( may be the duration for which the 3d plot would be created ...
1
vote
1answer
88 views

R instantiation when called from c++

I am using Rcpp and RInside, to interconnect my R based code to c++. I make multiple distinct calls to R from c++. I wanted to know if each call to R, creates a new instance of R ? The reason I ...
2
votes
1answer
307 views

Error while compiling RInside code

I want to compile a R code using RInside. But I am getting errors while using the function read.csv. The code snippet is given below: include "RInside.h" include <iomanip> include ...
2
votes
3answers
876 views

Undefined reference error while linking to R and RInside libraries from C++ code using g++ compiler in UNIX

I want to embed R into a C++ program. So I installed R, Rcpp and RInside also. But I get a lot of "undefined reference to" errors while compiling with g++ in UNIX. The command I give for compiling is ...