Rcpp allows for easier integration of C++ code in R.

learn more… | top users | synonyms

0
votes
1answer
49 views

What is the R to C++ syntax for vectors?

I am an R and C programmer trying to use Rcpp to create an R (and C++) wrapper for a program written in C. I'm not really familiar with C++. Can someone help me understand the documentation on how ...
1
vote
1answer
43 views

How can I improve the Makevars file for a Rcpp (RcppEigen) package?

I have a R package for which I moved an MCMC algorithm containing matrix algebra to C++ using the RcppEigen package which dramatically improved the speed. However, R CMD check gives the following ...
0
votes
1answer
31 views

After including RcppArmadillo.h, errors occur when compiling code

I would like to use some of the functionalities included in RcppArmadillo. As I read in another post on SO, if RcppArmadillo.h is included, Rcpp.h should not be included. I did just that, but when ...
0
votes
1answer
22 views

Caching intermediate results in Rcpp objects

I'm currently trying to speedup an optimisation procedurÄ™ which uses Rcpp to calculate the objective function. My current setup is similar to this: largeConstantVector <- readVector() result <- ...
1
vote
1answer
39 views

Rcpp: why I can not run the function in my defined package?

I use the following steps to achieve my own package: 1)I try to write a very simple function as follows: #include <Rcpp.h> using namespace Rcpp; // [[Rcpp::export]] int foo() { return 6; } ...
2
votes
1answer
50 views

Error installing RcppEigen on amazon ec2

I tried to install RcppEigen on amazon EC2 (on a t1.micro to make sure It works) & ubuntu 13.04. I tried with both R version was 2.15.2 and 3.0, 32bit ubuntu and 64bit unbuntu. Any time I got ...
2
votes
1answer
34 views

Using an integer parameter in Rcpp

Is it possible to convert an integer SEXP parameter to an integer directly without first converting it to an integer vector? Example: #include <Rcpp.h> SEXP f(SEXP n) { ...
0
votes
1answer
31 views

Rcpp error with sugar all() line

I've written some code for R with Rcpp and C++ to try and become more familiar with it: #include <Rcpp.h> #include <vector> using namespace Rcpp; // [[Rcpp::export]] CharacterMatrix ...
4
votes
1answer
83 views

Rewriting slow R function in C++ & Rcpp

I have this line of R code: croppedDNA <- completeDNA[,apply(completeDNA,2,function(x) any(c(FALSE,x[-length(x)]!=x[-1])))] What it does is identify the sites (cols) in a matrix of DNA sequences ...
1
vote
1answer
28 views

Rcpp: how to set the character parameter in a function?

I am the beginner of Rcpp. Could I ask a very basic question? The following is the simple code: #include <Rcpp.h> using namespace Rcpp; // [[Rcpp::export]] int test(char d) { char c; c=d; ...
3
votes
1answer
75 views

Exposing C++ class with Rcpp

I've been playing around with Rcpp and a couple of questions are currently popping up... From my understanding, if you want to expose a C++ class to R you need to write partial template ...
0
votes
1answer
21 views

Control compilation order in Rcpp

In R, using Rcpp to access C++ code, without putting all of the C++ code on a single file, how can I control the order which the files are used when compilation takes place. Lets say I have 2 ...
0
votes
0answers
53 views

How to learn Rcpp? [closed]

Rcpp is becoming popular due to the speed issue of R. But I am really struggling with how to learn Rcpp effectively and systematically. Although the book "Seamless R and C++ Integration with Rcpp" is ...
2
votes
1answer
78 views

RcppEigen svd is very slow [closed]

Did RcppEigen's JacobiSVD become slower with upgrading to 3.0 ? My library using RcppEigen is now working fast anymore. > n<-1000 > m<-matrix(rnorm(n*n),n,n) > ...
3
votes
1answer
90 views

My R has memory leaks?

I'm using R 2.15.3 on Ubuntu 12.04 (precise) 64-bit. If I run R in valgrind: R -d "valgrind" --vanilla I then exit the program using q() and I get the following report: ==7167== HEAP SUMMARY: ...
1
vote
2answers
89 views

Error when compiling Rcpp code in an R package using RStudio

I am using Rstudio to create a package, and exploring the use of the Rcpp package to gain access to C++ code, however, when trying to build the package, and error is being thrown as follows: fatal ...
0
votes
2answers
77 views

Large SpMat object with RcppArmadillo

I am trying to learn and use Rcpp and RcppArmadillo for the sparse linear algebra routines. Code below is adaptation of the example here: http://gallery.rcpp.org/articles/armadillo-sparse-matrix/ ...
0
votes
1answer
61 views

How to use Boost library in C++ with Rcpp

I am using Rcpp package on R 3.0.0. I am trying to run this example, but I cannot because I don't know how to use Boost. I installed Boost in the directory /Users/giorgi/boost_1_53_0 therefore I set ...
0
votes
1answer
97 views

Calling an R function using inline and Rcpp is still just as slow as original R code

I need to evaluate a function (posterior distribution) which requires long loops. Clearly I don't want to do this within R itself, and so I'm using "inline" and "Rcpp" to implement C++. However, I'm ...
-3
votes
1answer
104 views

How do I run Rcpp Hello World?

OK, so I have created an R package foo with function Rcpp.package.skeleton. I have also compiled the Hello World C++ file with R CMD SHLIB foo/src/rcpp_hello_world.cpp However, when I call ...
0
votes
1answer
33 views

variable scope in c++ function called through R with sourceCpp

I have one function nested inside another in R. Since the deeper one is a bit slow, I decided to use sourceCpp to swap in some compiled code. However, that inner function uses variables defined in the ...
0
votes
1answer
49 views

Why I cannot use the extension R with Rcpp?

#include "rcpp_add.h" using namespace Rcpp ; SEXP rcpp_add(SEXP a, SEXP b) { std::vector< std::map<std::string,int> > v; std::map<std::string,int> m1; ...
2
votes
3answers
109 views

Templated Rcpp function to erase NA values

I would write a function (using Rcpp) that removes all the NA values from a R vector. Before doing so, I did a little test function through Rcpp::cppFunction function. library(inline) cppFunction(' ...
2
votes
1answer
57 views

Access “natural coercion” logic from C/C++ code

When calling unlist or c, the type will be promoted to the smallest type capable of representing everything: > c(as.integer(1), 2.3, '3') [1] "1" "2.3" "3" > c(TRUE, 5) [1] 1 5 > ...
0
votes
2answers
111 views

sorting columns of Rcpp NumericMatrix for median calculations

I've been testing Rcpp and RcppArmadillo for calculating summary stats on big matrices. This was a lot faster (5 or 10 times faster) than the base R colMeans or the the Armadillo on ~4million rows, 45 ...
0
votes
1answer
43 views

More info on Rcpp exception

When writing R extensions using Rcpp is it possible to get more information when an exception is thrown? For instance by default when an index is out of bound I get: Error in myfunction(V) : index ...
0
votes
1answer
116 views

How to install R packages that use header files (RJSONIO, Rcpp)?

I'm unable to install several R packages because they always fail on the first include statement. This is the error I get for Rcpp: install.packages("/Users/nacho/Downloads/Rcpp_0.10.3.tar.gz", ...
0
votes
1answer
44 views

Renaming exported function using Rcpp::export fails on a specific installation

Exporting an Rcpp function with a different name succeeds on one machine but fails on the other. The R environments are very similar. What am I doing wrong? Details I have an R package with an Rcpp ...
7
votes
5answers
143 views

Fast function to add vector elements by their names

I wrote this R function that, given any number of vectors (...) combines them by summing the respective element values ​​based on their names. add_vectors <- function(...) { a <- list(...) ...
2
votes
2answers
156 views

Passing by reference a data.frame and updating it with rcpp

looking at the rcpp documentation and Rcpp::DataFrame in the gallery I realized that I didn't know how to modify a DataFrame by reference. Googling a bit I found this post on SO and this post on the ...
1
vote
2answers
165 views

Rcpp+Eclipse on Mac OS X

I am trying to get started using Rccp and decided to use Eclipse as a development environment since I already use StatEt for R. I am having trouble getting even a simple program to compile and run ...
3
votes
1answer
81 views

Most efficient way to run many repetitions of an Rcpp function for a simulation study?

I wrote an Rcpp function that returns a sample from a population, and to test the estimation method I'd like to run it thousands or millions of times. It seems that invoking Rcpp takes a little bit of ...
1
vote
1answer
73 views

Converting element of 'const Rcpp::CharacterVector&' to 'std::string'

I am wondering if there is a Rcpp way to convert an element or iterator of const CharacterVector& to std::string. If I try the following code void as(const CharacterVector& src) { ...
0
votes
1answer
144 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 ...
-4
votes
1answer
164 views

Rcpp How to generate random multivariate normal vector in Rcpp?

I would like to generate some large random multivariate (more than 6 dimensions) normal samples. In R, many packages can do this such as rmnorm, rmvn... But the problem is the speed! So I tried to ...
-3
votes
2answers
127 views

How to call the r function rnorm in C++

Sorry I am a beginner but I am having trouble with this issue. I am just looking for the simplest way to call the rnorm function in R from C ++. I have looked into the rcpp package but even after ...
0
votes
1answer
97 views

Converting Rcpp NumericMatrix for use with Boost Geometry

I am finding that I am lost without the nice <as> and <wrap> commands that Rcpp and their related packages provide for conversion between different object types. I have a matrix of points ...
5
votes
1answer
52 views

Rcpp: Save compiled function as Robj

If I define a function in R, I can save the function object using the save function. Then I can load that function object using the load function and use it directly. However, if I have a rcpp ...
2
votes
1answer
71 views

RNGscope segmentation fault

I've been coding some simulations using inline/RcppArmadillo and stumbled upon a problem with RNGScope. Is this a bug or am I doing something really dumb?? I've emptied the function out to make it ...
0
votes
1answer
90 views

How to pass a map<double,T> from C++ to R with Rcpp

looking at Rcpp authors's paper, I see on page 6 and 7 that map<T> and map<string,T> can be passed from C++ to R as long as T is "wrappable". I have a map<double,vector<double> ...
0
votes
1answer
87 views

Error from cppFunction(Rcpp) under R 15.2 Windows XP [duplicate]

When I've called : cppFunction(' int add(int x, int y, int z) { int sum = x + y + z; return sum; }' ) Error with below message occured, anyone have meet similar problem ? Any clues how ...
0
votes
0answers
74 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
81 views

Rcpp error, learning Rcpp and C++ on mac

I've decided to start learning Rcpp and C++ so I can make aspects of my R code faster. For a start I'm using the tutorial hadley has in the devtools wiki. I have a c++ compiler on this machine in that ...
1
vote
1answer
58 views

How to use pi in RcppEigen?

I am very new to Rcpp, or more specifically RcppEigen, and struggling with how to use pi as a constant in my code. The code runs numerous time in a MCMC algorithm, so any speed improvement would be ...
0
votes
1answer
76 views

using a user defined function in Rcpp (cppFunction)

I have a user defined function in r: blacksch<-function(s_0,k,sigma,r,t) { d1=(log(s_0/k) + (r + (sigma^2)/2)*(t))/(sigma*sqrt(t)) d2=(log(s_0/k) + (r - (sigma^2)/2)*(t))/(sigma*sqrt(t)) ...
0
votes
1answer
153 views

Rcpp inline package error in compileCode

I have R installed along with these two packages Rcpp and inline. (I am doing a project that consists of speeding up a painfully slow program in R and I decided to use Rcpp)...I know I am doing ...
4
votes
1answer
69 views

Rcpp or rdyncall

I'm looking for some kind of references which explain the pro's en con's of using Rcpp when compared to using rdyncall. Can someone who has used both explain the basic differences from an R package ...
2
votes
2answers
93 views

How to pass an environment to an Rcpp chunk with knitr?

I'm trying to take the following code and translate it into a knitr chunk (borrowed from the Rcpp examples): library(Rcpp) library(inline) openMPCode <- ' std::vector<double> x = ...
0
votes
1answer
140 views

element wise matrix multiplication in Rcpp

I am trying to speed up some R code with Rcpp that takes a vector of length L (psi) and a matrix of dimensions (L,L) and does some element-wise operations. Is there a more efficient way to be doing ...
5
votes
2answers
367 views

R vs. Matlab: Explanation for speed difference for rnorm, qnorm and pnorm functions

I compared the performance of the inbuilt R functions rnorm, qnorm and pnorm to the equivalent Matlab functions. It seems as if the rnorm and pnorm functions are 3-6 times slower in R than in Matlab, ...

1 2 3 4 5