Last active
August 20, 2018 20:11
-
-
Save jsilve24/18c869d55669e0312893ba0d2974545d to your computer and use it in GitHub Desktop.
Fast calculation of quantiles for each column of a matrix using Rcpp
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <Rcpp.h> | |
using namespace Rcpp; | |
// q is a vector of quantiles to calculate for each column of x | |
// [[Rcpp::export]] | |
NumericMatrix colQuantiles(NumericMatrix x, NumericVector q) { | |
int c = x.ncol(); | |
int r = x.nrow(); | |
int n = q.length(); | |
NumericMatrix out(n, c); | |
NumericVector y(r); | |
IntegerVector z(n); | |
// calculate positions for quantiles | |
for (int i=0; i<n; i++){ | |
z[i] = std::floor(q(i)*(r-1) + 0.5); | |
} | |
// sort all elements | |
for (int i=0; i<c; i++){ | |
y = x(_, i); | |
std::sort(y.begin(), y.end()); | |
for (int j=0; j<n; j++){ | |
out(j, i) = y(z(j)); | |
} | |
} | |
return out; | |
} | |
/*** R | |
colQuantiles(matrix(1:12, 3, 4), c(0, .9, 1)) | |
*/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment