gpt4 book ai didi

r - 如何在shell脚本中运行R代码?

转载 作者:行者123 更新时间:2023-12-04 11:28:05 24 4
gpt4 key购买 nike

我有一个 R 文件(myfile.R)。我想使用 shell 脚本运行它。我怎样才能做到这一点?
我试过这个:

#! /bin/bash
Rscript myfile.R

但它给了我这个错误: Rscript: command not found

我也试过这个:
#! /bin/bash
R --not-save-- < myfile.R

它也给出了这个错误:R:找不到命令

最好的方法是什么?

最佳答案

这个想法不是写一个shell而是写一个R脚本。就是这样Rscript是为了和我们的 littler提供的套餐/usr/bin/r甚至在那之前。

所以就做

 #!/usr/bin/Rscript

cat("Hello, world\n")
# rest of your code below

或使用
 #!/usr/bin/r

littler -- 我有多个 cron 工作就是这样做的。

这显然假设你有 Rscriptr/usr/bin就像你会的,例如在常规的 Debian 或 Ubuntu 机器上。

关于r - 如何在shell脚本中运行R代码?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24642281/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com