[R] [R-pkgs] ANN: 'weaver' package, caching for Sweave

2006-08-22 Thread Seth Falcon
Hi all,

I've added a new package 'weaver' to the BioC repository:

http://www.bioconductor.org/packages/1.9/bioc/html/weaver.html

The weaver package provides extensions to the Sweave utilities
included in R's base package.  The focus of the extensions is on
caching computationally expensive (time consuming) code chunks in
Sweave documents.

Why would you want to cache code chunks?  If your Sweave document
includes one or more code chunks that take a long time to compute, you
may find it frustrating to make small changes to the document.  Each
run requires recomputing the expensive code chunks.  If these chunks
aren't changing, you can benefit from the caching provided by weaver.

To install:

  source(http://bioconductor.org/biocLite.R;)
  biocLite(weaver)

If you give it a try and have any feedback, drop me a note.

Best Wishes,

+ seth

___
R-packages mailing list
[EMAIL PROTECTED]
https://stat.ethz.ch/mailman/listinfo/r-packages

__
R-help@stat.math.ethz.ch mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.


Re: [R] [R-pkgs] ANN: 'weaver' package, caching for Sweave

2006-08-22 Thread Seth Falcon
Hi again,

Sorry for the noise, but I need to make a correction:

Seth Falcon [EMAIL PROTECTED] writes:
 To install:

   source(http://bioconductor.org/biocLite.R;)
   biocLite(weaver)

At present, the above install sequence will _only_ work if you are
using a development version of R.

If you are using the current R release, you will have to work a bit
harder to install (put weaver works there too):

First install weaver's dependencies:

  digest (on CRAN)

  codetools:
http://bioconductor.org/packages/1.9/omegahat/html/codetools.html

Then install weaver:
http://www.bioconductor.org/packages/1.9/bioc/html/weaver.html

Finally, I will try to make Windows binaries available by the end of
the week.

+ seth

___
R-packages mailing list
[EMAIL PROTECTED]
https://stat.ethz.ch/mailman/listinfo/r-packages

__
R-help@stat.math.ethz.ch mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.