我目前正在编写一个运行一些python代码的bash文件DialogFragment
,后面是run.sh
文件中的一些代码。我使用.R
内的data_analysis.r
来调用文件Rscript data_analysis.r
。
每次运行脚本时,它都会生成一个run.sh
文件,我可以使用它,但我想将文件设置为在自定义位置生成。
现在,我只需在Rplots.pdf
中添加一行,将run.sh
文件重命名并移动到预定位置,但我对此解决方案不太满意。
有谁知道如何为Rplots.pdf
生成的Rplots.pdf
文件设置自定义位置?
答案 0 :(得分:2)
data_analysis.r中应该有一行代表
pdf(file="RPlots.pdf")
您可以将此行编辑到您想要的位置并进行硬编码。
pdf(file="/mylocation/RPlots.pdf")