将 R 与 NodeJS 集成
Integrate R with NodeJS
我是 Node 的新手,我正在寻找一种将 Node js 与 R 编译器集成的方法。我如何 运行 Node 中的 R 脚本或者用 R 编译它然后得到结果?谢谢
我需要这样的东西
...
// i need to compile and get the result of a R file like this
// the R script returns a number between 0 and 100
var exp = compileRFile(" **file location** ");
if (exp <= 0.1){
console.log(`your exp ${exp} is lower than 0.1`);
}else {
...
我建议使用“r-integration”包。该库允许您使用系统调用从 Node JS 环境执行任意 R 命令或脚本(文件)。
要将它安装到您的 Node JS 项目中,只需 运行
npm 安装 r-integration
您可以在此处找到更多相关信息:
r-integration
我是 Node 的新手,我正在寻找一种将 Node js 与 R 编译器集成的方法。我如何 运行 Node 中的 R 脚本或者用 R 编译它然后得到结果?谢谢
我需要这样的东西
...
// i need to compile and get the result of a R file like this
// the R script returns a number between 0 and 100
var exp = compileRFile(" **file location** ");
if (exp <= 0.1){
console.log(`your exp ${exp} is lower than 0.1`);
}else {
...
我建议使用“r-integration”包。该库允许您使用系统调用从 Node JS 环境执行任意 R 命令或脚本(文件)。
要将它安装到您的 Node JS 项目中,只需 运行 npm 安装 r-integration
您可以在此处找到更多相关信息: r-integration