Re: [R-pkg-devel] Roxygen: function documentation to get \item{...} in .rd file

2018-03-16 Thread Knut Krueger
Am 12.03.2018 um 20:58 schrieb Joris Meys: Hi Knut, on a sidenote: did you try the Rd2roxygen package? That could also make your work a lot easier. https://cran.r-project.org/web/packages/Rd2roxygen/index.html Cheers Joris Hi Joris, thank's a lot. Rd2roxygen is very helpful Knut _

Re: [R-pkg-devel] Roxygen: function documentation to get \item{...} in .rd file

2018-03-12 Thread Joris Meys
Hi Knut, on a sidenote: did you try the Rd2roxygen package? That could also make your work a lot easier. https://cran.r-project.org/web/packages/Rd2roxygen/index.html Cheers Joris On Mon, Mar 12, 2018 at 8:15 PM, Joris Meys wrote: > Hi Knut, > > If you want to add parameters, you need to use t

Re: [R-pkg-devel] Roxygen: function documentation to get \item{...} in .rd file

2018-03-12 Thread Joris Meys
Hi Knut, If you want to add parameters, you need to use the tag @param : #' @param x a numeric vector will translate to: \item{x}{a numeric vector} in the \arguments section of the .Rd file. If you want to add extra description lists (eg for elements of a list in the output), you can use \des