如何创建一个包含20个以上条目的Rcpp NumericVector?

时间:2015-11-05 09:41:38

标签: r rcpp

创建包含20个以上元素的NumericVector会导致出现错误消息。 这与本文件(最底层)一致:http://statr.me/rcpp-note/api/Vector_funs.html

目前,我公开了一个类(使用RCPP_MODULE),其中一个方法返回所需的NumericVector。如何返回超过20个元素?

#include <Rcpp.h>
class nvt {
public:
   nvt(int x, double y) {...}

   NumericVector run(void) {
       ....
       return NumericVector::create(_["a"]=1,_["b"]=2, .....,_["c"]=21);
   }
};

RCPP_MODULE(nvt_module){
  class_<nvt>("nvt")
  .constructor<int,double>("some description")
  .method("run", &nvt::run,"some description")
 ;
}

2 个答案:

答案 0 :(得分:5)

使用您需要的尺寸创建矢量,然后指定值&amp;名。这是一个Rcpp&#34; inline&#34;功能(人们更容易尝试)但它可以在你的环境中工作:

library(Rcpp)
library(inline)

big_vec <- rcpp(body="
NumericVector run(26); 
CharacterVector run_names(26);

# make up some data
for (int i=0; i<26; i++) { run[i] = i+1; };

# make up some names
for (int i=0; i<26; i++) { run_names[i] = std::string(1, (char)('A'+i)); };

run.names() = run_names;

return(run);
")

big_vec()
## A  B  C  D  E  F  G  H  I  J  K  L  M  N  O  P  Q  R  S  T  U  V  W  X  Y  Z 
## 1  2  3  4  5  6  7  8  9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26

答案 1 :(得分:5)

Bob已经向您展示了a)您错误地将宏定义的create()帮助器上的约束绑定到了绑定,以及b)如何通过内联包和循环执行此操作。

这是使用Rcpp属性的替代解决方案。将以下内容复制到文件中,例如/tmp/named.cpp

#include <Rcpp.h>

using namespace Rcpp;

// [[Rcpp::export]]
NumericVector makevec(CharacterVector nm) {
    NumericVector v(nm.size());
    v = Range(1, nm.size());
    v.attr("names") = nm;
    return v;
}

/*** R
makevec(LETTERS)
makevec(letters[1:10])
*/

只需调用sourceCpp("/tmp/named.cpp")即可编译,链接,加载并执行底部的R插图:

R> sourceCpp("/tmp/named.cpp")

R> makevec(LETTERS)
 A  B  C  D  E  F  G  H  I  J  K  L  M  N  O  P  Q  R  S  T  U  V  W  X  Y  Z 
 1  2  3  4  5  6  7  8  9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 

R> makevec(letters[1:10])
 a  b  c  d  e  f  g  h  i  j 
 1  2  3  4  5  6  7  8  9 10 
R>