|
For your second problem, the reason is R help providing 3 types of documents, "text", "html" and "pdf", in your case, I think the default setting is "html", that's why it always goes to the default explorer to open it.
The solution is simple and permanently:
1. Locate the Rprofile.site file, It should be in C:\Program Files\R\R-<version>\etc\Rprofile.site (on
Windows). # Here you can change the default options and you don't need to fix it every time.
2. Open the Rprofile.site file on text editor #notepad
3. Find the lines as follows, and in your case, it should looks like
# set the default help type
# options(help_type="text")
options(help_type="html")
and now comment out html and un-comment text, like
# set the default help type
options(help_type="text")
# options(help_type="html")
4. problem should be solved.
|