如何在控制台模式下删除R的启动消息?

时间:2015-05-05 13:37:29

标签: r

每当我们使用“R”命令启动R控制台时,我们可以看到如下消息

R version 3.2.0 (2015-04-16) -- "Full of Ingredients"
Copyright (C) 2015 The R Foundation for Statistical Computing
Platform: x86_64-apple-darwin13.4.0 (64-bit)

R is free software and comes with ABSOLUTELY NO WARRANTY.
You are welcome to redistribute it under certain conditions.
Type 'license()' or 'licence()' for distribution details.

  Natural language support but running in an English locale

R is a collaborative project with many contributors.
Type 'contributors()' for more information and
'citation()' on how to cite R or R packages in publications.

Type 'demo()' for some demos, 'help()' for on-line help, or
'help.start()' for an HTML browser interface to help.
Type 'q()' to quit R.

如果有人让我知道如何禁用它,我会很感激。

1 个答案:

答案 0 :(得分:8)

您需要使用--quiet命令行选项运行您正在使用的任何可执行文件(--silent-q也可以)。有关如何完成此操作的具体细节取决于您通常如何启动R。

从路径上带有R的计算机的命令行中,执行:

R --quiet

或者,如果(例如)您要为没有"问候"启动的Windows GUI设置可点击图标,您可以:

  1. 创建Rgui可执行文件的快捷方式(存储在类似$R_DIRECTORY/bin/i386/Rgui.exe的路径中)。
  2. 右键单击快捷方式,然后选择“属性'。
  3. 在快捷方式选项卡上,修改'目标'字段到(您机器上的等效字段)C:\R\R-current\bin\i386\Rgui.exe --quiet
  4. 修改'开始'根据需要进行调整。