使用roxygen2在sysdata.rda中导出多个对象

时间:2014-01-17 09:52:21

标签: r roxygen2

我的包中的page.height文件中有两个对象(page.widthsysdata.rda)。我用roxygen2这样记录了它们

#'@name page.height
#'@aliases page.width
#'@title Standard dimensions
#'\itemize{
#'  \item{page.height}{Maximal height of a figuur (in inch)}
#'  \item{page.width}{Width of a figure covering two columns (in inch)}
#'}
#'@docType data
#'@export
#'@usage page.height
#'@keywords datasets
NULL

导出page.height对象,但page.width对象不导出。我应该如何记录这一点,以便将它们导出并记录在同一个帮助文件中?

1 个答案:

答案 0 :(得分:5)

我在Roxygen2文档中找到了它:明确命名要导出的对象

#'@export page.height page.width