简体   繁体   中英

Documentation page always opens at the bottom

When I open a help page in RGui (R 3.3.2 on Windows 7) using the text help page viewer, it is opened at the bottom of the help page. See the screenshot below after typing ?help , where the scrollbar of the help page is at the bottom. Is there a way to change the behaviour such that help pages are openend at the beginning rather than at the end?

帮助页面查看器的屏幕截图

Try this.

help(help, help_type = "html")

Since, you might have older version of R. it's default help type might be "text" which takes you to the end of the page which is in text form. Use help_type as "html"

Note that options(help_type = "html") must be set to actually make use of HTML help, although it might be the default for an R installation.

Read this

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM