18

I find R documentation to be important but also time-consuming to create/maintain. Has anyone used Roxygen yet, and if so, does it help in maintaining an R package? I've used Doxygen in the past, but those projects didn't have the man structure that R packages require.

You can find the vignette here.

Sharpie
  • 17,323
  • 4
  • 44
  • 47
Shane
  • 98,550
  • 35
  • 224
  • 217

2 Answers2

16

Yes, I use it all the time (in five packages and counting). It's fantastic! With it I managed to create a complete R package (stringr) in about five hours.

I recently submitted a patch to get a 10-fold speed up, which makes it even nicer to use.

hadley
  • 102,019
  • 32
  • 183
  • 245
3

I'd like to start using it, but as far as I know it doesn't yet support S4 classes, which I use extensively.

Peter
  • 1,155
  • 8
  • 20
  • 2
    As of 3.0.0., this is no longer true. Roxygen2 completely supports S4, and has budding support for RC. – hadley Mar 23 '14 at 23:01