roxygen2
開発中のパッケージのデータセットを文書化するために使用しています。roxygen を使用してデータセットを文書化できることは知っていますが、シェーンの答えは最終的にハックを示唆していますが、これは避けたいと思います。だから、私の質問は:
データの roxygen ドキュメントはどこに置くべきですか?
現在、/R フォルダーにanorexia.sub.roxygen
拒食症データセットのデータ ドキュメント ファイル ( ) があります。
私が知る限り、それが roxygen2 が検索する唯一の場所だからです。
#' Family Treatment Weight change data for young female anorexia patients.
#'
#'
#' The MASS package includes the dataset \code{anorexia}, containing pre and
#' post treatment weights for young female anorexia patients. This is a subset
#' of those data, containing only those patients who received Family Treatment.
#'
#'
#' @name anorexia.sub
#' @docType data
#' @format A dataframe with 17 observations on the following 2 variables, no
#' NAs.
#'
#' \describe{
#'
#' \item{list("Prewt")}{Pretreatment weight of subject, in pounds.}
#'
#' \item{list("Postwt")}{Postreatment weight of subject, in pounds.}
#'
#' }
#' @references Venables, W. N. and Ripley, B. D. (2002) Modern Applied
#' Statistics with S. Fourth edition. Springer.
#' @source Hand, D. J., Daly, F., McConway, K., Lunn, D. and Ostrowski, E. eds
#' (1993) A Handbook of Small Data Sets. Chapman & Hall, Data set 285 (p.
#' 229)
#' @keywords datasets
NULL
roxygen2
ドキュメントをうまく生成します。しかし、それはanorexia.sub.roxygen.R
私のCollate
フィールドに追加しますDESCRIPTION
:
Collate:
'granova.R'
'theme-defaults.R'
'granovagg.1w.R'
'granovagg.contr.R'
'granovagg.ds.R'
'help.R'
'anorexia.sub.roxygen.R'
私の質問は次のとおりだと思います:どうすればroxygen2を手に入れることができますか
- roxygen ブロックからデータ ドキュメントを自動的に生成し、
Collate
呼び出しにデータ ドキュメント ファイルを追加しない、および- ハックを必要とする解決策を避ける