Roxygen is an in-source documentation system for R. It is based on Doxygen, and is an alternative to creating .Rd files, in that it automatically creates the package's .Rd files from the in-source documentation. See http://roxygen.org/ for more details.

learn more… | top users | synonyms

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
33 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
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 ...
1
vote
1answer
65 views

Using source subdirectories within R packages with roxygen2

I would like to use a directory structure within the R folder for the source code of a package. For example, within my R folder I have an algos folder with functions I want to export and document. ...
2
votes
1answer
65 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 #' ...
4
votes
1answer
72 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 ...
0
votes
0answers
37 views

Roxygen documentation [duplicate]

Possible Duplicate: R-oxygen documentation of S3 method produces error while check My question R-oxygen documentation of S3 method produces error while check has been closed as being "exact ...
1
vote
0answers
36 views

R-oxygen documentation of S3 method produces error while check [duplicate]

Possible Duplicate: Roxygen: How to properly document a S3 method of a generic in a different package? I try to create a method as.mcmc.mcmcComposite based on as.mcmc defined in package ...
0
votes
1answer
340 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 ...
2
votes
2answers
123 views

New method for plot - how to export?

I am making a package where I want to define a new method for plot. I am using roxygen in-source documentation. This question seems very similar to: Roxygen: How to properly document a S3 method of a ...
10
votes
1answer
321 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 ...
2
votes
1answer
170 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
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 ...
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 <- ...
5
votes
2answers
373 views

When writing my own R package, I can't seem to get other packages to import correctly

Alright, first attempt at writing an R package and I'm stuck. Here's how I create the package: package.skeleton("pkg",code_files=some.filenames) roxygenize("okg") I'm using roxygen2 and have the ...
12
votes
3answers
231 views

Are there best/recommended practices to follow when renaming functions in a new version of a package?

I'm updating an old package and shortening a bunch of really long function names. How do I let a user know the the old function has been deprecated? I document everything with roxygen2 so I'm ...
1
vote
1answer
369 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 ...
9
votes
1answer
225 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 ...
6
votes
1answer
434 views

When documenting in Roxygen: How do I make an itemized list in @details?

What is the appropriate syntax to add an itemized list to roxygen2, for instance, in the @details section? Can I create a latex list environment? It seems that line brakes are simply ignored, i.e. ...
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 ...
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
747 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 ...
5
votes
1answer
358 views

R using s3 and s4 methods of simulate in the same package

I'm puzzled by the error found an S4 version of 'simulate' so it has not been imported correctly I have written an R package that includes a definition for a simulate() method as an S3 method. ...
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
134 views

Escaping “@” in Roxygen2 Style Documentation

Let's say I have a comment block where I'd like to write an email address. How would I go about escaping the "@" symbol so roxygen treats it as text instead of a directive?
6
votes
1answer
452 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
1answer
79 views

Ignore file(s) with Roxygen

I'm quite new in (and unwilling to learn) package creation/administration, so excuse-moi if I'm asking something trivial. I'm familiar with git, though, and I'd like to know if there's a similar ...
15
votes
1answer
437 views

Automatic documentation of datasets

I'm working on a project right now where I have been slowly accumulating a bunch of different variables from a bunch of different sources. Being a somewhat clever person, I created a different ...
0
votes
1answer
121 views

Roxygen2 introduces \n to default parameter value. Causes Codoc mismatches

I'm having the opposite issues of this post. It seems that roxygen is introducing \n into my default parameter values which causes R CMD check to WARN Here's my function definition: WriteToExcel ...
4
votes
2answers
207 views

roxygen2 “Error: titlerequires a value”

I'm receiving an error from roxygenize() that I can't understand. I have a package of my miscellaneous functions in which the .Rd files are generated via roxygen. The error is Error: titlerequires a ...
10
votes
1answer
166 views

Including an image using roxygen documentation

Is it possible to include an image in documentation generated by roxygen? I have a number of functions that are essentially wrappers for ggplot() that I'd like to document by showing an example of the ...
1
vote
1answer
178 views

R CMD roxygen - exec: 65: roxygen: not found

Roxygen works fine from within R, but for some reason it craps out when I try to call it from the command line. Noticed a similar complaint from someone on windows (this thread: R CMD roxygen not ...
5
votes
2answers
215 views

Documenting R.oo classes/methods with Roxygen

Could someone point me to a good example of documenting R.oo classes/methods with Roxygen? In R.oo, classes/methods are created by calls to setConstructorS3() and setMethodS3(), so there is no ...
15
votes
1answer
1k views

Roxygen2 - how to properly document S3 methods

I've read the Roxygen2 PDF as well as this site and I'm lost about the difference between @method @S3method @export and how you use these to properly document S3 methods. I worked up the follow ...
3
votes
1answer
118 views

How to eliminate Roxygen warning about “No name found…”?

I'm calling roxygenize() with parameter use.Rd2 = TRUE. I have a file testcase.R where I create a simple S3 object using R.oo. Here's the contents of the file. There's nothing for roxygen to do ...
9
votes
1answer
569 views

How can I document datasets without adding them to the Collate field?

I'm using roxygen2 to document datasets for a package I'm developing. I know you can use roxygen to document a dataset, but Shane's answer ultimately suggests a hack, which while I'd rather avoid. So, ...
7
votes
1answer
119 views

Preserving indentation in examples section

Roxygen have made my work a lot easier and is in most cases nice and intuitive. One thing that I have never figured out though is how to preserve indentation in @examples sections so that the result ...
9
votes
2answers
631 views

Is it possible/advisable to skip roxygen in favor of roxygen2? [closed]

I've recently been pointed towards Roxygen to solve my documentation woes/laziness. But then there's this shiny Roxygen2 which, in my understanding, is somewhat its own thing. Hadley's package tools ...
22
votes
1answer
819 views

How to properly document a S3 method of a generic from a different package, using Roxygen?

I am writing a package that defines a new class, surveyor, and a print method for this, i.e. print.surveyor. My code works fine and I use roxygen for inline documentation. But R CMD check issues a ...
1
vote
2answers
319 views

variable names are limited to 256 bytes

roxygenize is failing on the following code with the following error message. Other posts on this topic indicate that there's a misplaced character. I can't find anything wrong! Can you spot the ...
5
votes
1answer
223 views

Why doesn't roxygen write package info to DESCRIPTION?

I followed the Vignette and found that information such as License, Author, etc. in pseudoprime-package.Rd is not written to DESCRIPTION? Did I do something wrong?
75
votes
1answer
2k views

Arbitrary sections in roxygen docs

The way Roxygen seems to work is that the first line is the \title, everything else is in the \details, and then any @foo directives handle those things. But R documentation is richer than that. I can ...
8
votes
1answer
345 views

How should I handle 'helper' functions in an R package?

Background I written an R package, and now a collaborator (recent CS grad who is new to R) is editing and refactoring the code. In the process, he is dividing up my functions into smaller, more ...
8
votes
1answer
165 views

Speeding up roxygen

Running R CMD roxygen on a big package can take quite a long time. It's obviously inefficient as well as it goes through everything regardless of whether a file has changed since the last roxygen ...
9
votes
3answers
336 views

Figures (R code execution results) in HTML help pages for a R package

When writing a package in R, you can create the help pages in Rd format and then convert them into HTML pages. If the help page includes the example code, it is printed in Section "Examples". For ...
20
votes
3answers
496 views

Roxygen: how to set a default parameter including backslash ('\') to functions

I use Roxygen to generate Rd files of my packages under development, but I have some problems with functions with default parameter set to '\n', e.g.: lineCount <- function(text, sep='\n') { ...

1 2