Specifying a title and description/details appears to be the same as for functions, methods, etc. with roxygen(2). However, slots and inheritance are their own sort of animal. What is the best practice -- current or planned -- for documenting S4 classes in roxygen2?

Due Diligence:

I found mention of an @slot tag in early descriptions of roxygen. A 2008 mailing list post seems to indicate that this is dead, and there is no support for @slot in roxygen: http://lists.r-forge.r-project.org/pipermail/roxygen-devel/2008-November/000009.html Is this true of roxygen2? This same post suggests a user should instead make their own itemized list with LaTeX markup. E.g. a new S4 class that extends the "character" class would be coded and documented like this:

#' The title for my S4 class that extends \code{"character"} class.
#'
#' Some details about this class and my plans for it in the body.
#'
#' \describe{
#'    \item{myslot1}{A logical keeping track of something.}
#'
#'    \item{myslot2}{An integer specifying something else.}
#' 
#'    \item{myslot3}{A data.frame holding some data.}
#'  }
#' @name mynewclass-class
#' @rdname mynewclass-class
#' @exportClass mynewclass
setClass("mynewclass",
    representation(myslot1="logical",
        myslot2="integer",
        myslot3="data.frame"),
    contains = "character"
)

However, although this works, this \describe , \item approach for documenting the slots seems inconsistent with the rest of roxygen(2), in that there are no @-delimited tags and slots could go undocumented with no objection from roxygenize(). It also says nothing about a consistent way to document inheritance of the class being defined. I imagine dependency still generally works fine (if a particular slot requires a non-base class from another package) using the @import tag.

So, to summarize, what is the current best-practice for roxygen(2) slots?

There seem to be three options to consider at the moment:

  • A -- Itemized list (as example above).
  • B -- @slot ... but with extra tags/implementation I missed. I was unable to get @slot to work with roxygen / roxygen2 in versions where it was included as a replacement for the itemized list in the example above. Again, the example above does work with roxygen(2).
  • C -- Some alternative tag for specifying slots, like @param, that would accomplish the same thing.

I'm borrowing/extending this question from a post I made to the roxygen2 development page on github.

link|improve this question

9  
@slot is probably what you want long term, but it has to be implemented first... – hadley Sep 14 '11 at 1:16
3  
Thanks! That's good to know. I'm glad my code has many fewer setClass statements than setMethod. Making the change once @slot is implemented won't be too painful. – Paul McMurdie Sep 14 '11 at 22:46
6  
Some discussion on @slot: github.com/klutometis/roxygen/pull/85 – Brian Diggs Mar 21 at 16:39
12  
Thanks! Me too! – FlavorScape May 4 at 22:43
feedback

protected by Community Apr 5 at 10:52

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Browse other questions tagged or ask your own question.