Rstudio - 如何在浏览器中打开帮助文件?
Rstudio - How do I open help files in browser?
如何在浏览器而不是内部 Rstudio 查看器中打开帮助文件?
我已经准备好在 .Rprofile
中设置以下选项 options(help_type="html")
并已添加
# custom browseURL implementation
options(browser = function(url)
{
.Call("rs_browseURL", url) ;
})
到options.R
每次我更新 Rstudio 时,此首选项都会更改。
我发现Options.R中的这部分代码需要注释掉。此代码与之前答案中提到的之前使用的代码略有不同。
# custom browseURL implementation.
# .rs.setOption("browser", function(url)
# {
# .Call("rs_browseURL", url, PACKAGE = "(embedding)")
# })
还要确保您已在 Rprofile.site 中设置 options(help_type="html")
,其中包含启动时设置的所有首选项
如何在浏览器而不是内部 Rstudio 查看器中打开帮助文件?
我已经准备好在 .Rprofile
中设置以下选项options(help_type="html")
并已添加
# custom browseURL implementation
options(browser = function(url)
{
.Call("rs_browseURL", url) ;
})
到options.R
每次我更新 Rstudio 时,此首选项都会更改。
我发现Options.R中的这部分代码需要注释掉。此代码与之前答案中提到的之前使用的代码略有不同。
# custom browseURL implementation.
# .rs.setOption("browser", function(url)
# {
# .Call("rs_browseURL", url, PACKAGE = "(embedding)")
# })
还要确保您已在 Rprofile.site 中设置 options(help_type="html")
,其中包含启动时设置的所有首选项