Automatically load RDocumentation and make it active, so that it overrides the default documentation?
enable_autoload()makeDefault()
disable_autoload()
enable_rdocs()
disable_rdocs()
When you load in the RDocumentation package, you'll be prompted to autoload the package whenever you start R. When RDocumentation is loaded, it will automatically override the default help functionality with documentation from RDocumentation.org.
The autoloading is done by modifying the .RProfile file that is in your working directory.
With enable_autoload
and disable_autoload
you can update the
.RProfile file to enable or disable the automatic loading of RDocumentation
when you start R. With enable_rdocs
and disable_rdocs
you can enable or
disable the overriding of the default help viewer.