You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This book is really useful. A naive question: Which files need to provide roxygen annotation? roxygenize('rmini') will creat all the Rd files right? How to determine the fileanme of the Rd files?
The text was updated successfully, but these errors were encountered:
Roxygen comments are written in .R files under the R/ directory.
The Rd filenames are determined by the function names, unless you explicitly provide the @rdname tag . For example, a function foo will generate foo.Rd; if you provide @rdname bar, the Rd will be bar.Rd. More info here: https://cran.rstudio.com/web/packages/roxygen2/vignettes/rd.html
This book is really useful. A naive question: Which files need to provide roxygen annotation? roxygenize('rmini') will creat all the Rd files right? How to determine the fileanme of the Rd files?
The text was updated successfully, but these errors were encountered: