作为this question的后续措施,我决定沿用Rcpp和R中的复杂语法的路线。我认为这将提供更好的可读性(并且可能还会更快)。

假设我有一个data.frame列表(我可以通过as轻松将其转换为矩阵)。给定先前的answe -r -s,这似乎是最好的方法。

# input data
my_list <- vector("list", length= 10)
set.seed(65L)
for (i in 1:10) {
  my_list[[i]] <- data.frame(matrix(rnorm(10000),ncol=10))
  # alternatively
  # my_list[[i]] <- matrix(rnorm(10000),ncol=10)
}


从矩阵中提取行的合适方法是什么?目标是创建一个列表,其中每个列表元素都包含原始列表的每个data.frames的第nr行的列表。我尝试了几种不同的语法,并不断出错:

#include <Rcpp.h>
using namespace Rcpp;
using namespace std:

List foo(const List& my_list, const int& n_geo) {
  int n_list = my_list.size();
  std::vector<std::vector<double> > list2(n_geo);

  // needed code....

  return wrap(list2);
}


选项

for (int i = 0; i < n_list; i++) {
  for (int nr = 0; nr < n_geo; nr++) {
    list2[nr][i] = my_list[i].row(nr);
    // or list2[nr].push_back(my_list[i].row(nr));
    // or list2[nr].push_back(as<double>(my_list[i].row(nr)));
    // or list2[nr].push_back(as<double>(my_list[i](nr, _)));
  }
}

// or:
NumericMatrix a = my_list[1]
...
NumericMatrix j = my_list[10]

for (int nr = 0; nr < n_geo; nr++) {
  list2[nr][1] = // as above
}


这些都不对我有用。我究竟做错了什么?这是我从上述语法选择中收到的错误。


  错误:没有匹配的函数调用'as(Rcpp :: Matrix :: Row)'


要么


  错误:分配中的'Rcpp :: Matrix :: Row {aka Rcpp :: MatrixRow }'无法转换为'double'

最佳答案

这是一种实现方法:

#include <Rcpp.h>

// x[[nx]][ny,]  ->  y[[ny]][[nx]]

// [[Rcpp::export]]
Rcpp::List Transform(Rcpp::List x) {
    R_xlen_t nx = x.size(), ny = Rcpp::as<Rcpp::NumericMatrix>(x[0]).nrow();
    Rcpp::List y(ny);

    for (R_xlen_t iy = 0; iy < ny; iy++) {
        Rcpp::List tmp(nx);
        for (R_xlen_t ix = 0; ix < nx; ix++) {
            Rcpp::NumericMatrix mtmp = Rcpp::as<Rcpp::NumericMatrix>(x[ix]);
            tmp[ix] = mtmp.row(iy);
        }
        y[iy] = tmp;
    }

    return y;
}

/*** R

L1 <- lapply(1:10, function(x) {
    matrix(rnorm(20), ncol = 5)
})

L2 <- lapply(1:nrow(L1[[1]]), function(x) {
    lapply(L1, function(y) unlist(y[x,]))
})

all.equal(L2, Transform(L1))
#[1] TRUE

microbenchmark::microbenchmark(
    "R" = lapply(1:nrow(L1[[1]]), function(x) {
        lapply(L1, function(y) unlist(y[x,]))
    }),
    "Cpp" = Transform(L1),
    times = 200L)

#Unit: microseconds
#expr    min      lq      mean  median       uq      max neval
#  R 254.660 316.627 383.92739 347.547 392.7705 1909.097   200
#Cpp  18.314  26.007  71.58795  30.230  38.8650  945.167   200

*/




我不确定这会如何扩展;我认为这只是一种固有的低效转换。根据我在源代码顶部的评论,似乎您只是在进行某种坐标交换-输入列表中第ny个元素的第nx个行变成了该元素的第nx个元素输出列表的第ny个元素:

x[[nx]][ny,]  ->  y[[ny]][[nx]]




为了解决您遇到的错误,Rcpp::List是通用对象-从技术上讲是Rcpp::Vector<VECSXP>-因此,当您尝试执行此操作时,例如

my_list[i].row(nr)


编译器不知道my_list[i]NumericMatrix。因此,您必须使用Rcpp::as<>进行显式转换,

Rcpp::NumericMatrix mtmp = Rcpp::as<Rcpp::NumericMatrix>(x[ix]);
tmp[ix] = mtmp.row(iy);




我只是在示例数据中使用了matrix元素来简化操作。实际上,与直接在R ++中强制将data.frame强制为matrix对象相比,在C ++中尝试这样做可能更好。它将更加简单,而且很有可能,强制只是调用底层C代码,因此尝试执行此操作实际上并没有任何收获。



我还应该指出,如果您使用均质类型的Rcpp::List,则可以使用Rcpp::ListOf<type>挤出更多性能。这将使您跳过上面完成的Rcpp::as<type>转换:

typedef Rcpp::ListOf<Rcpp::NumericMatrix> MatList;

// [[Rcpp::export]]
Rcpp::List Transform2(MatList x) {
    R_xlen_t nx = x.size(), ny = x[0].nrow();
    Rcpp::List y(ny);

    for (R_xlen_t iy = 0; iy < ny; iy++) {
        Rcpp::List tmp(nx);
        for (R_xlen_t ix = 0; ix < nx; ix++) {
            tmp[ix] = x[ix].row(iy);
        }
        y[iy] = tmp;
    }

    return y;
}

/*** R

L1 <- lapply(1:10, function(x) {
    matrix(rnorm(20000), ncol = 100)
})

L2 <- lapply(1:nrow(L1[[1]]), function(x) {
    lapply(L1, function(y) unlist(y[x,]))
})

microbenchmark::microbenchmark(
    "R" = lapply(1:nrow(L1[[1]]), function(x) {
        lapply(L1, function(y) unlist(y[x,]))
    }),
    "Transform" = Transform(L1),
    "Transform2" = Transform2(L1),
    times = 200L)

#Unit: microseconds
#      expr      min       lq     mean   median       uq       max neval
#         R 6049.594 6318.822 7604.871 6707.242 8592.510 64005.190   200
# Transform  928.468 1041.936 3130.959 1166.819 1659.745 71552.284   200
#Transform2  850.912  957.918 1694.329 1061.183 2856.724  4502.065   200

*/

关于c++ - RCPP-从矩阵/数据框列表中提取行,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/35996245/

10-12 23:27