在我的 R 包中,我以roxygen2
格式记录了一些函数和数据,但运行devtools::document()
只会为我记录的函数生成.Rd
文件,而不是数据。这是我data.R
文件的全部内容:
#' Coordinates
#'
#' WGS84 coordinates of select communities.
#'
#' @format A data frame with 2 variables: code{lon}, code{lat}
"coords"
运行devtools::document()
不应该在man/
中创建一个coords.Rd
文件吗?
好吧,发现我将data.R
文件保存在data/
而不是R/
中。猜猜这最终可以帮助某人吗?确保正确保存内容!