Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Rserve() 启动 Rserve:/usr/lib/R/bin/R CMD /home/dipti/R/x86_64-pc-linux-gnu-library/3.1/Rserve/libs//Rserve
致命错误:您必须指定“--save”、“--no-save”或“--vanilla”
正如错误告诉您的那样,R 至少需要三个选项之一,例如,
Rserve(args="--no-save")
我认为您不能从 Rstudio 中启动 Rserve,因为这不会以--save、--no-save或开头--vanillaR。解决方案是使用适当的命令行参数从命令行启动 R,然后从中启动 Rserve。
--save
--no-save
--vanilla