How to suppress R startup message?

前端 未结 1 1968
时光说笑
时光说笑 2020-12-19 03:30

Running on Windows 7

rterm < foo.r > temp.txt

The output file starts with:

R         


        
相关标签:
1条回答
  • 2020-12-19 04:14

    Invoking R from the command line:

    --quiet
    --silent
    -q
    

    Do not print out the initial copyright and welcome messages.

    --slave
    

    Make R run as quietly as possible. This option is intended to support programs which use R to compute results for them. It implies --quiet and --no-save.

    0 讨论(0)
提交回复
热议问题