本文介绍了单行代码,可从Windows命令行运行R代码的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我希望单行代码从Windows命令行运行闪亮的应用程序,而无需打开R应用程序.
I Want a single line code to run a shiny app from windows command line without opening the R application.
如果我从cmd打开R并运行代码,则它可以正常工作.但是它为下面的单行代码提供了错误.
If I open the R from cmd and run the code it works.But it gives error for the following single line code.
R -e 'shiny::runApp(system.file("examples/01_hello", package="shiny"), launch.browser = T)'
............
............
> 'shiny::runApp(system.file(examples/01_hello,
+
+ Error: unexpected end of input
Execution halted
请帮助.谢谢.
推荐答案
以下代码正在运行:
RScript -e "shiny::runApp(system.file('examples/01_hello', package='shiny'), launch.browser = T)"
我进行了两项更改:
- 用RScript替换R
- 互换单引号和双引号
这篇关于单行代码,可从Windows命令行运行R代码的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!