I am writing my first R-package using devtools and roxygen2 in the RStudio IDE. The problem I have is with the preview of the .Rd files that I get when I "oxygenate" .R files. I use devtools::document() to get .Rd files, but when I try to view the help pages by writing any of them:
help("FunctionName") ?FunctionName
the message "Using development documentation for ..." is displayed on the console, but there is an empty space in the help window. Using devtools:load_all() causes the same problem. This may be due to the way devtools loads the package into the environment, but neither the R-Extensibility Writing document (which should not be handled to use roxygen ), nor the Hadley Wickham R-Book book provides a working solution.
r documentation roxygen2 devtools
Servadac
source share