Tag Info

Hot answers tagged

17

roxygen2 is working just as intended, but I experienced the same confusion when I first used it to document a package. The important bit to understand is that there are a couple of different package-describing files in the mix. When the roxygen markup in rlandscape-package.R is processed, it produces a file rlandscape-package.Rd in the man directory of ...


16

Here is an example that should work for most S4 methods. For documenting S4 generics, I find the following three lines necessary in most of my generic headers: #' @export #' @docType methods #' @rdname helloworld-methods Where helloworld-methods is replaced with the_name_of_your_generic-methods. This will be the name of the Rd file that holds the ...


14

Since it is good practise to document your package at the package level as well as function level, I always have a file inside the R folder called packagename-package.R (e.g. granovaGG-package.R in your case) where I keep the package documentation as well as data documentation. So your granovaGG-package.R file might look something like: #' One sentence ...


14

Use \dontrun{} #'@examples #'\dontrun{ #'geocode("3817 Spruce St, Philadelphia, PA 19104") #'geocode("Philadelphia, PA") #'dat <- data.frame(value=runif(3),address=c("3817 Spruce St, Philadelphia, PA 19104","Philadelphia, PA","Neverneverland")) #'geocode(dat) #'}


11

The @method tag generates \method entries in the \usage field in Rd files. The @S3method tag generates S3method() entries in the NAMESPACE file. The @export tag generates export() entries in the NAMESPACE file. Here is my example: #' A description of MyHappyFunction #' #' A details of MyHappyFunction #' #' @title MyHappyFunction: The my happy function #' ...


8

There are two ways to achieve this: As described in ?collate_roclet, you can use the @include tag to specify which class should be read before which. In this case, you can add to the file classB.r the following line right before the actual R code: #' @include classA.r These tags are read specifically to update the Collate field in the DESCRIPTION file, ...


8

For S4, I would say current best practice is documentation in the form: \section{Slots}{ \describe{ \item{\code{a}:}{Object of class \code{"numeric"}.} \item{\code{b}:}{Object of class \code{"character"}.} } } This is consistent with the internal representation of slots as a list inside the object. As you point out, this syntax is different ...


8

The \usage section in the Rd file needs to include the following: \method{names}{surveydata}(x) <- value If this is not automatically inserted by the @method line (I presume that will only add \method{names}{surveydata}(x)?) then you need an explicit @usage section that includes the above. Something like #' @usage \\method{names}{surveydata}(x) <- ...


7

Importing non-RData files within examples/tests I found a solution to this problem by peering at the JSONIO package, which obviously needed to provide some examples of reading files other than those of the .RData variety. I got this to work in function-level examples, and satisfy both R CMD check mypackage as well as testthat::test_package(). (1) ...


7

The solution provided by Full Decent is OK if you go for documenting slots in the Rd files itself. When using roxygen2, you can use the tag @section to do basically the same with \describe. An example: #' The EXAMPLE class #' #' This class contains an example. This line goes into the description #' #' This line and the next ones go into the details. #' This ...


6

In the DESCRIPTION file of your package make sure that there is a field called LazyData that is set to TRUE. From the "Writing R Extensions" guide: The ‘data’ subdirectory is for data files, either to be made available via lazy-loading or for loading using data(). (The choice is made by the ‘LazyData’ field in the ‘DESCRIPTION’ file: the default is ...


6

I switched my build scripts to call roxygen2 instead of roxygen, and everything worked as before, except that now I get a nice, auto-generated NAMESPACE file. So learning roxygen means that you are learning the basics of roxygen2. I'm sure I'm not using all the new features, but for the basics roxygen2 works just like roxygen. I'd also add that ...


6

I have tracked down that the answer to part (3) -- the not-so-missing documentation of S4 methods -- is because of quotation marks being added erroneously around the \alias tags when the S4 naming convention is used; most likely a bug resulting from text-handling of an alias that contains a comma as part of its name. This is still true of the latest version ...


5

You can use the roxygen tag @usage Here is an example from one of my packages: #' @rdname pattern #' @usage pattern(x) <- value #' @param value New value #' @export pattern<- "pattern<-" <- function(x, value=c("^", "($|(_\\d+(_\\d+)*)$)")){ attr(x, "pattern") <- value x } This results in my desired documentation: Usage pattern(x) ...


5

Expanding on my comment, if you want to automatically add namespace directives for packages/functions you import, you can do so by adding the @imports package or @imports package function line to the roxygen2 documentation header of your function. However, as @hadley pointed out, it will only modify the NAMESPACE, but not affect the package DESCRIPTION


5

The silence that followed your question should tell you something... The answer, currently, is NO is doesn't. I know of several people who use EMACS for precisely this reason, and would not consider switching to RStudio until that has full roxygen support. That said, there has been some discussion about this between users and the makers of RStudio. ...


5

I'm surprised @hadley says to not use package.skeleton in his comment. I would use package.skeleton, add roxygen comment blocks, then delete all the files in the "man" directory and run roxygenize. However, since Hadley says "Noooooooooo", here's the minimum you need to be able to build a package that passes R CMD check and exports your functions. Create ...


5

This required 2 fixes: As explained in Writing R extensions 1.1.5, Data in packages, save the objects as .rda instead of .RDa remove @export from the Roxygen


4

For data, see this previous question on SO which suggests: #' 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 I would suspect that you can do the same for pkg-package.Rd. If it must be in roxygen format, consider ...


4

General info on roxygen and S4 classes The first version of roxygen had an @slot tag, but that version isn't maintained any more in favor of roxygen2. So it's advised against to use that old version. As for now, roxygen2 doesn't have real support for S4 classes. Hadley is working hard to make that happen in roxygen3 (https://github.com/hadley/roxygen3). In ...


4

According to Hadley Wickham, line wrapping will be removed in future versions of roxygen. So the solution for roxygen2 is to roxygenize the file (or package), then manually update the text equation in the affected .Rd file(s).


4

EDIT: Using only the functions exported in NAMESPACE, and assuming they do not have an @export statement somewhere in their Roxygen block, we can do a hacky parse of all the exported functions: NAMESPACE <- readLines("NAMESPACE") exported_fns <- grep( "^export\\(", NAMESPACE, value=TRUE ) exported_fn_names <- gsub( "export\\((.*)\\)", "\\1", ...


3

I'm compiling my comments above into an answer, for the benefit of others. First, I do not actually know whether or not .Rd supports tagging of equations. However, the .Rd format is such a strict subset of LaTeX, and produces very primitive text output, that shoehorning extensive equations into its format could be a painful undertaking without much benefit ...


3

As you've seen, the following line in an roxygen documentation block #' @examples msearch("published_in:\"Journal of Ecology\"") is converted to this in an *.Rd file msearch("published_in:\\"Journal of Ecology\\"") on its way to becoming the following, in the various help file formats msearch("published_in:\"Journal of Ecology\"") I'm guessing that ...


3

This error occurs because the function install_github sets username='hadley' by default (see install-github.r source) In this case, there is no github branch hadley/roxygen, and now download from https://github.com/hadley/roxygen/zipball/master This will work: install_github('roxygen',username = 'klutometis') note: even though the package is called ...


3

I think, @usage are needed. A dot-dot-dot argument is needed in the MyMethod.ClassName function for S3 generic/method consistency. Not #' @export MyMethod.ClassName but rather #' @S3method MyMethod ClassName? An example code: #' Title. More Info. #' #' @usage MyMethod(...) #' @param this this. #' @param someParam Param info. #' @param ... other ...


3

You need to escape the %s in the usage section. Also, I think you may need to specify an rdname #' Inverse Value Matching #' #' Complement of \code{%in%}. Returns the elements of \code{x} that are #' not in \code{y}. #' @usage x \%nin\% y #' @param x a vector #' @param y a vector #' @export #' @rdname nin "%nin%" <- function(x, y) { return( !(x %in% ...


3

The bug you are seeing is mostly likely caused because the list method of the common generic is not being exported, so common.default gets called instead. You can pick up this problem using devtools::missing_s3 - the function is a bit heuristic, so you may get a few false positives (e.g. it can't currently tell that is.list isn't a method). This is an ...


2

After some trial & error, here's what I came up with. This solution ensures that all objects are exported properly, that R CMD build/check does not puke, that there is no redundant documentation, and that examples will execute. Note that the solution won't work if @export is replaced with @method/@S3method. Theoretically that should work, but it ...


2

The roxygen2 parser didn't parse setOldClass() and setAs(). We need to obtain appropriate @name tags. #' "Foo" class #' #' @name Foo-class #' @aliases Foo #' @family Foo #' #' @exportClass Foo setOldClass("Foo") #' As("Foo", "SpatialPointsDataFrame") #' #' @name as #' @family Foo #' #' @importClassesFrom sp SpatialPointsDataFrame setAs("Foo", ...



Only top voted, non community-wiki answers of a minimum length are eligible