【发布时间】:2015-08-03 14:25:25
【问题描述】:
我试图了解 Rserve 参数 --save、--no-save 和 --vanilla 之间的区别。我在文档或任何论坛中看不到任何描述这些影响的内容。有谁知道这些具体是做什么的?
在 OSX 中,我需要指定其中之一来运行 Rserve。
【问题讨论】:
标签: rserve
我试图了解 Rserve 参数 --save、--no-save 和 --vanilla 之间的区别。我在文档或任何论坛中看不到任何描述这些影响的内容。有谁知道这些具体是做什么的?
在 OSX 中,我需要指定其中之一来运行 Rserve。
【问题讨论】:
标签: rserve
这些是 R 参数,并记录在 R 文档以及 --help 中:
$ R --help
[...]
--save Do save workspace at the end of the session
--no-save Don't save it
--no-environ Don't read the site and user environment files
--no-site-file Don't read the site-wide Rprofile
--no-init-file Don't read the user R profile
--restore Do restore previously saved objects at startup
--no-restore-data Don't restore previously saved objects
--no-restore-history Don't restore the R history file
--no-restore Don't restore anything
--vanilla Combine --no-save, --no-restore, --no-site-file,
--no-init-file and --no-environ
【讨论】: