I have written some functions in R using S4 classes.

Now I want to build an R package out of these functions.

How should I proceed? Is there anything that I should do differently because I have used S4 classes?

link|improve this question

11  
Couldn't resist. :) tinyurl.com/3l5trm8 – Roman Luštrik Sep 4 '11 at 11:14
@Roman nice way to hide that behind a tinyurl wrapper so SO didn't obliterate it :-) – gsk3 Sep 4 '11 at 12:13
feedback

1 Answer

up vote 32 down vote accepted
+50

Consult the following reference material:

  1. Chapter 1, Creating R packages, of the Writing R extensions manual. This is the canonical source. It's the ultimate reference point, but not necessarily the best starting point.
  2. A short presentation outlining the key ideas in package development and using the devtools package for development
  3. Hadley's devtools wiki, particular the sections Package basics and development
  4. The R help for ?package.skeleton
  5. The presentation by Uwe Ligges at useR!2010 on package development.
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.