我知道roxygen2::roxygenise()
或可以使用甘蔗从.Rdevtools::document()
文件生成.Rd文件。
例如,如果Test.R如下
#' Add together two numbers
#'
#' @param x A number
#' @param y A number
#' @return The sum of \code{x} and \code{y}
#' @examples
#' add(1, 1)
#' add(10, 1)
add <- function(x, y) {
x + y
}
那么 roxygen2::roxygenise()
or的输出devtools::document()
将是
% Generated by roxygen2 (3.2.0): do not edit by hand
\name{add}
\alias{add}
\title{Add together two numbers}
\usage{
add(x, y)
}
\arguments{
\item{x}{A number}
\item{y}{A number}
}
\value{
The sum of \code{x} and \code{y}
}
\description{
Add together two numbers
}
\examples{
add(1, 1)
add(10, 1)
}
但是,我对反之亦然感兴趣。我确实有.Rd,我想将其转换为.R文件。有什么想法吗!