我正在运行 64 位 Windows 7 平台。
我已添加到已安装的程序/库中:
工具
R(软件)
Rcpp(R 包)
内联(R 包)
我尝试了一个在这里找到的片段
## now with Rcpp and C++
library(inline)
# and define our version in C++
src <- "int n = as<int>(ns);
double x = as<double>(xs);
for (int i=0; i<n; i++) x=1/(1+x);
return wrap(x); "
l <- cxxfunction(signature(ns="integer", xs="numeric"),
body=src, plugin="Rcpp")
但这不起作用(说实话,这并不奇怪,因为我什至没有指定例如 Rtools 的位置)。我收到以下错误消息:
Error in system(cmd, intern = !verbose) : 'C:/Program' not found
我不确定那是什么意思。而且,我已经被困在那里几个小时了。谁能帮帮我,好吗?