On 01/10/2017 12:42 PM, Mohammad Tanvir Ahamed via R-package-devel wrote:
I am building package R-studio (Roxygen2).
In the package function documentation, now the standard format is to show all 
function name.

Now I want to categorize those function under some section/heading.
Can any one please hey me regarding this issue?
Is there any way or idea how one can do it ?


I don't know how to do this with Roxygen2, but what you want to get is a package help page (typically yourpackage-package.Rd with \alias{yourpackage-package}, and maybe also \alias{yourpackage}). On that page you can have sections using

\section{section_title}{
   some content
}

The "some content" can be a list of links to your help topics using \itemize, \enumerate, or \tabular. See the built-in manual "Writing R Extensions", and presumably some Roxygen2 documentation to tell you how to let all of this get through to the .Rd file.

Duncan Murdoch

______________________________________________
R-package-devel@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-package-devel

Reply via email to