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
_
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
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
I am converting a package from creating the .rd files manually to roxygen.
I do not know how to add the additional parameters to the function
description, so that the \item{...}{ some parameters } will be created
in the .rd file
Kind regards Knut
__