标签: c++ r rcpp syntactic-sugar
我一直试图使用Rcpp在c ++中获得向量的等级。我使用过其他糖功能,比如
is_na();
c ++中的rank R函数是否有类似的糖函数。还有Rcpp /
答案 0 :(得分:8)
1) order函数here和order(order(x)) rank(x, ties = "first")。
order
order(order(x))
rank(x, ties = "first")
2)第二种方式是:match(x, sort(x))
match(x, sort(x))
ADDED 第二种方法。