在R文档中返回后创建列表

fnatzsnv  于 2023-10-13  发布在  其他
关注(0)|答案(1)|浏览(109)

我正在编写一个R函数,并试图使用.Rd格式来记录该函数。我似乎找不到这方面的任何文档,所以我想知道的是如何在@retrun之后创建列表。例如,我想有一些像
#' @return This list contains the following values:

a some description
b some description

@return之后需要做什么才能得到一个看起来像使用@param的列表?

tkclm6bt

tkclm6bt1#

我只是用这个:

#' @returns
#' A list containing the following:
#'
#' \item{mle_params}{Maximum likelihood estimates for the parameters.}
#' \item{mle_value}{The value of the log-likelihood at the maximum.}

相关问题