How can I document data sets with roxygen?
Asked Answered
T

3

65

Is it possible to include .R files in the data directory of my package in the roxygen process?

I have put several .R files in the data directory. When they are sourced with data(), they read in raw data files and perform some transformations.

Turley answered 22/2, 2010 at 11:3 Comment(0)
P
54

Roxygen can be used anywhere within an R file (in other words, it doesn't have to be followed by a function). It can also be used to document any docType in the R documentation.

So you can just document your data in a separate block (something like this):

#' This is data to be included in my package
#'
#' @name data-name
#' @docType data
#' @author My Name \email{blahblah@@roxygen.org}
#' @references \url{data_blah.com}
#' @keywords data
NULL
Premedical answered 22/2, 2010 at 14:35 Comment(6)
Except you're better off using NULL instead of roxygen() so that you don't induce a run-time dependency on roxygenDegrade
@hadley: it might be nice to add an example like this into the roxygen vignette, and make the point about roxygen dependency? I found that to be a little confusing in terms of how to structure the files.Premedical
Thank you both Shane and Hadley for the excellent help. I see now much clearer how to use roxygen; and now R CMD check does not complain anymore. One question is left: Do I need to put the data documentation in the R subdirectory? It would be nice to teach roxygenize to look in the data directory, too...Turley
@Karsten: I tend to think that the only thing that should go in the data subdirectory is data. Roxygen provides literate programming as R code, so I like to have that all within my R files. But beyond that you might try this: roxygenize uses an environment variable "R.DIR". Set that to "data" instead and it should process R files in the data directory. @hadley: you could make a simple patch to allow for an R.DIR vector?Premedical
@Shane: I've already complained about that to the roxygen devs, and it should change in the next releaseDegrade
@Degrade I am using roxygen2 now. Is this implemented in this version? I put an .R file to describe my data objects in there but R CMD Check seems to not parse it.Gambill
D
51

As of roxygen2 >4.0.0, you can document the data object defined elsewhere by documenting the name of the object defined as a string:

#' This is data to be included in my package
#'
#' @author My Name \email{blahblah@@roxygen.org}
#' @references \url{data_blah.com}
"data-name"
Degrade answered 23/3, 2014 at 22:59 Comment(1)
Example: github.com/tidyverse/dplyr/blob/main/R/data-bands.RHartford
G
34

I found it useful to study the examples in the ggplot2 package.

See ggplot2.r on github

A few things of note:

  • All the Roxygen code for datasets can be included in a single .r file in the R directory of the package.

See for examples, the diamonds dataset:

#' Prices of 50,000 round cut diamonds
#'
#' A dataset containing the prices and other attributes of almost 54,000
#'  diamonds. The variables are as follows:
#'
#' \itemize{
#'   \item price. price in US dollars (\$326--\$18,823)
#'   \item carat. weight of the diamond (0.2--5.01)
#'   \item cut. quality of the cut (Fair, Good, Very Good, Premium, Ideal)
#'   \item colour. diamond colour, from J (worst) to D (best)
#'   \item clarity. a measurement of how clear the diamond is (I1 (worst), SI1, SI2, VS1, VS2, VVS1, VVS2, IF (best))
#'   \item x. length in mm (0--10.74)
#'   \item y. width in mm (0--58.9)
#'   \item z. depth in mm (0--31.8)
#'   \item depth. total depth percentage = z / mean(x, y) = 2 * z / (x + y) (43--79)
#'   \item table. width of top of diamond relative to widest point (43--95)
#' }
#'
#' @docType data
#' @keywords datasets
#' @name diamonds
#' @usage data(diamonds)
#' @format A data frame with 53940 rows and 10 variables
NULL

This results in a help file that looks like this:

roxygen documentation example

Gauldin answered 20/8, 2014 at 7:28 Comment(2)
Probably since that answer Roxygen documentation has changed. this is how it looks nowPasha
How it works now works because 'Lazyload: true'. If you don't 'Lazyload', those data objects are not defined. In that case, you need to use the 'old' Roxygen2 code.Hudson

© 2022 - 2024 — McMap. All rights reserved.