高速な R コードを作成するには、関数の作成方法を再考する必要があります。一度に 1 つの観測値だけでなく、ベクトル全体を操作する必要があります。
C スタイルのループを書くことに本当に行き詰まっている場合は、Rcpp を試すこともできます。C++ に慣れていて、そのように関数を書くことを好む場合に便利です。
library(Rcpp)
do_stuff <- cppFunction('NumericMatrix do_stuff(
int steps,
int samples,
double s_0,
double r,
double sigma,
double k ) {
// Ensure RNG scope set
RNGScope scope;
// allocate the output matrix
NumericMatrix at( steps+1, samples );
// fill the first row
for( int i=0; i < at.ncol(); i++ ) {
at(0, i) = s_0;
}
// loop over the matrix and do stuff
for( int j=0; j < samples; j++ ) {
for( int i=1; i < steps+1; i++ ) {
at(i, j) = at(i-1, j) + sigma * sqrt(0.0008) * R::rnorm(0, 1);
}
}
return at;
}')
system.time( out <- do_stuff(500, 100000, 2.1, 0.02, 0.2, 1.9) )
私にくれます
user system elapsed
3.205 0.092 3.297
そのため、すでに C++ のバックグラウンドがある場合は、Rcpp を使用して R との間でデータをマップする方法を学習することを検討してください。