roxygen2 is a Doxygen-like in-source documentation system for Rd, collation, and NAMESPACE. Its primary use is in documenting R functions in-line with the function definition.
1
vote
1answer
23 views
Can I check if roxygenize failed?
Is it possible to detect if there was a problem when running roxygenize (package roxygen2)?
I want to automate the process documenting, checking and building a package, and would like to stop when ...
3
votes
0answers
32 views
Include matrix in equation in R function documentation
I would like to typeset a matrix in an equation in the context of documenting an R function. As a matter of fact, amsmath isn't available for R documentation per default and eqnarray doesn't work ...
6
votes
1answer
120 views
roxygen two functions in one .Rd file
Short version: Can I emulate the documentation of Normal in package stats using roxygen?
Long version:
I'm working on a package and was trying make the documentation more readable by having a number ...
0
votes
1answer
47 views
do not show function help document in building R package by roxygen2
I am using devtools to build R package, and there are some functions that are NOT designed to be visible to end-users. However, since these functions involve calling C codes by .Call, so that I have ...
4
votes
0answers
72 views
Pre- or post-process roxygen snippets?
Is there some mechanism by which I can transform the comments that roxygen sees, preferably before it does the roxygen->rd conversion?
For example, suppose I have:
#' My function. Does stuff with ...
1
vote
0answers
41 views
Error Objects in \usage without \alias in documentation object from R CMD Check
I have written a small package for my own use, and using devtools everything has gone very well. However, I tried to run R CMD Check on it, and got a number of errors, seemingly because my usage and ...
3
votes
2answers
61 views
How can I retain the initial white space in a line when writing Rd documentation?
In conjunction with trying to find a solution for myself in regards to this question, I find myself plunged into trying to write valid Rd markup. What I want is to add a section named Raw Function ...
0
votes
2answers
62 views
Is there a global flag that can be set to provide code alongside ROxygen documentation?
I have taught a class in which I have had students use a package I have written. Now that the class is ending, I'd like to provide them the code for each of those functions inline with the ...
2
votes
1answer
58 views
Using Roxygen2 Template tags
Could someone provide an example of how to properly use the Template Tags in Roxygen2. I have tried to do the most obvious thing (to me):
In my packageName-package.R file:
#' [... other Roxygen ...
2
votes
1answer
135 views
how can I add an roxygen @export all functions in a package
I am taking over an existing package. The package was written with .Rd documentation before R required functions to be explicitly exported.
My first step was to convert the documentation to roxygen ...
6
votes
1answer
86 views
Prevent line overflow in R documentation?
This is more of an annoyance than it is a problem, but is there any way to prevent the line "overflow" that occurs when documentation in R is compiled and a line is too long?
A snippet of some ...
2
votes
1answer
51 views
S3 method help (roxygen2)
I am trying to use a S3 method in a package and thought I understood how to set it up after asking a question here: S3 method consistency
But now I get results I don't expect. If I run the code ...
13
votes
1answer
347 views
Documenting equations with deqn and roxygen
I'm using \deqn{}{} with roxygen2 to document equations for a function in a package. The LaTeX (the 1st argument to deqn) renders fine because white space is ignored in LaTeX equations, but I have a ...
2
votes
1answer
64 views
How does Roxygen to handle infix binary operators (eg. %in%)?
As a simple, concrete example:
#' 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
#' ...
1
vote
1answer
59 views
Generic print function roxygen2
I have a generic print function that I think I've set up correctly based on Generic functions (LINK, admittedly a bit hard for me to grasp) and this question(LINK). However, it still throws up a ...
4
votes
1answer
71 views
Using a @ sign with roxygen2 [duplicate]
Possible Duplicate:
Escaping “@” in Roxygen2 Style Documentation
How can I use @ in roxygen documentation as in:
#' @param arg An argument that uses the symbol @
This will throw up an ...
2
votes
1answer
123 views
What's the recommended package build workflow with packages that contain S4 classes? [duplicate]
Possible Duplicate:
How to properly document S4 class slots using Roxygen2
I would like to build a package that contains S4 classes using R Studio and roxygen2.
I had already documented ...
2
votes
1answer
68 views
supply two usages in roxygen2
I have two functions in the same family. I am documenting with roxygen2 and can put them together in the same help file but do not know how to make the usage field in the documentation have both ...
6
votes
1answer
92 views
How to specify in which order to load S4 methods when using roxygen2
I ran into following problem already multiple times.
Say you have two classes, classA and classB described in the following files classA.R :
#' the class classA
#'
#' This is a class A blabla
#' ...
0
votes
1answer
63 views
roxygenise just one .R file to add the file and its documentation to a package
I created a package and pushed it up to github, such that the devtools function install_github() function works for easy installation. i.e. the github repo file structure is such that the DESCRIPTION ...
0
votes
1answer
337 views
devtools roxygen package creation and rd documentation
I am new to roxygen and am struggling to see how to be able to use it to quickly create a new/custom package.
I.e. I would like to know the minimum requirements are to make a package called package1 ...
4
votes
1answer
121 views
Assignment function documentation fails R CMD CHECK
I'm having trouble with checking assignment functions with Roxygen.
Here's a fairly minimal example:
#' Get sp feature IDs
#' @aliases IDs IDs.default IDs.SpatialPolygonsDataFrame IDs<- ...
47
votes
1answer
556 views
Rd file name conflict when extending a S4 method of some other package
Actual question
How do I avoid Rd file name conflicts when
a S4 generic and its method(s) are not necessarily all defined in the same package (package containing (some of) the custom method(s) ...
0
votes
0answers
62 views
RStudio for making R package documentation similar to Emacs C-c C-o [duplicate]
Possible Duplicate:
Can RStudio automatically generate an roxygen template for a function?
I use Emacs for developing R packages (using roxygen2) and find the C-c C-o over a function to ...
9
votes
1answer
89 views
Documenting function closures
Suppose I have a function closure in my package, for example
f = function(x) {
x = x
g = function(y) x <<- y
h = function() x
list(g=g, h=h)
}
l = f(5)
l$g(10)
l$h()
What's ...
2
votes
0answers
169 views
Documenting S4 methods with roxygen2: clearly distinguishing methods in help files
Before you aim and shoot
I'm aware that this question is closely related to this post. In fact, I followed the advice given in the various answers, but still feel that the resulting help file is a ...
10
votes
1answer
318 views
Processing example files with roxygen2: backslashes are duplicated (\dontrun becomes \\dontrun)
Actual question
How can I avoid that \dontrun{ in a separate file containing examples becomes \\dontrun{ in the respective Rd file after roxygenizing?
I did find a workaround, but feel as if I'm ...
3
votes
1answer
264 views
Package .Rd files using roxygen2 package
I have a question about creating an .Rd file for my R package using the roxygen2 package.
It is clear to me that, for documenting R functions, I can use C-c C-o in emacs to generate comments above ...
2
votes
1answer
168 views
Efficiently consolidating source code from multiple files to a single file including (Roxygen) comments
Question
What is an efficient way to consolidate source code from multiple source files to a single source file - including Roxygen documentation comments and possibly also including other comments?
...
1
vote
1answer
165 views
Include data examples in developing R packages
I am eager to learn how to incorporate data examples as comments written above the functions, such as:
##' @examples
##' ## Set working directory...
##' ## Load data into R session:
##' data <- ...
1
vote
0answers
62 views
Best practice for package creation when importing packages with functions of same name
I am creating a package called rmetadata here. The purpose of the package is to make requests to the OAI-PMH services of many data sources on scholarly publications/metadata. I wrote other packages ...
10
votes
1answer
234 views
How to not run an example using roxygen2?
I'm writing a geocoding function right now that relies on having a Bing Maps Key. Obviously I'd rather not publish mine, and the examples fail without one.
How do I include an example for users to ...
5
votes
1answer
112 views
Exporting data in Roxygen2 so that they are available without requiring data()
After reading questions such as this SO question on documenting a data set with Roxygen I have managed to document a dataset (which I will refer to as cells) and it now appears in the list generated ...
9
votes
1answer
283 views
R CMD check warning: Functions/methods with usage in documentation object … but not in code
I am writing a package but one persistent R CMD check warning prevents me from finishing the package and posting it to CRAN. I use roxygen2 for inline documentation, although that possibly isn't the ...
7
votes
1answer
316 views
Can RStudio automatically generate an roxygen template for a function?
Does RStudio support any automated roxygen template creation?
In Emacs-ESS, C-x C-o will produce an roxygen template for a function. For example, it will automagically convert this:
foo <- ...
8
votes
1answer
195 views
Citing articles in R package using roxygen2 and BibTeX?
I'm using roxygen2 as a tool for documenting my R package, and I found that there is a @references tag in roxygen2, but that seems to only accept free form text. I found some presentation about ...
18
votes
2answers
349 views
Documenting two S3 methods in the same file with Roxygen
I have two methods for an S3 generic (defined in another package) that are closely related and so I wanted to document them in the same Rd file. However, when I document their arguments separately, I ...
1
vote
1answer
367 views
install_github returning error: zip file can't be opened
when I run the following:
library(devtools)
install_github('roxygen2')
I get the following error:
with devtools 0.51:
Installing roxygen2 from hadley
Error in unzip(src, list = TRUE) :
zip ...
4
votes
1answer
102 views
roxygen2 + cygwin + default paramter = truncated `\usage` section
I have a package for R I've been developing under Linux, and the horrible time has come where I'm testing it under Windows.
The documentation is done using roxygen, and I am using cygwin to build the ...
7
votes
1answer
523 views
documenting dataset with roxygen2
I'm trying to document some datasets in an R package using roxygen2. Considering just one of these:
I have mypkg/data/CpG.human.GRCh37.RDa
which contains an object called CpG.human.GRCh37
and a file ...
10
votes
1answer
496 views
roxygen2 not fully updating DESCRIPTION file
I'm making my first package rlandscape, using Roxygen2 and trying to follow the plain Roxygen vignette since Roxygen2 doesn't have one.
As in the vignette (page 3), I created a file called ...
9
votes
1answer
222 views
How to cross-reference an equation in an R help file/roxygen2
I'm in the process of documenting some of my functions for an R package I'm making.
I'm using roxygen markup, though that is largely irrelevant to my question.
I have put equations into my ...
0
votes
2answers
70 views
escaping quotations in roxygen documentation in R
I have an R function example in my documentation that needs to escape quotations:
#' @examples msearch("published_in:\"Journal of Ecology\"")
(Or at least I'm not clever enough to avoid escaping ...
6
votes
1answer
343 views
Cannot call roxygenize function from Rscript batch file
I am writing a script that uses roxygen2 to automatically roxygenize my package. I'd like it to be executable so that it can be part of a larger script to prepare and install the package, but I cannot ...
4
votes
0answers
400 views
How to add class-specific alias without generic alias using Roxygen2?
A simple example is that I have created an extension to show, which is a S4 base method. I don't want to cause a disambiguation fork by re-documenting show in my package, and I also want to ...
11
votes
2answers
738 views
Is it possible to use R package data in testthat tests or run_examples()?
I'm working on developing an R package, using devtools, testthat, and roxygen2. I have a couple of data sets in the data folder (foo.txt and bar.csv).
My file structure looks like this:
/ mypackage
...
4
votes
1answer
278 views
Documenting setter functions with roxygen
I have a function that does nothing more than ads a unique attr to any R object. Base demo:
#' Setter function
#' @param x an R object
#' @param value a character value to set
#' @export
`foo<-` ...
6
votes
1answer
448 views
Does roxygen2 automatically write NAMESPACE directives for “Imports:” packages?
tl;dr version of my question
If I want to import packages, do I have to manually write import() directives into my NAMESPACE file? It seems like roxygen2 won't magically do that for me, even if I ...
5
votes
0answers
181 views
adding useDynLib through Roxygen
I am converting my packages to use roxygen documentation, through the roxygen2 package. Now my package does not load and I think that is is because of the missing useDynLib(mypackage) call missing ...
3
votes
0answers
217 views
Arguments descriptions order in .Rd file when using the roxygen2 tag @inheritParams
Let's say I am writing a small R package including two functions with exaclty the same arguments except one. Here is an example:
fct1 <- function(r, K){...}
fct2 <- function(r, p, K){...}
In ...
