search for: stashr

Displaying 4 results from an estimated 4 matches for "stashr".

Did you mean: stash
2007 Apr 21
1
Changing appearance of band edges in xYplot()
Dear R-helpers, I would like the bands in an xYplot() to be gray without dark edges. I've tried playing around with col.bands, but that seems not to affect the edges, although changin col.fill does change the fill as I would expect. I would appreciate pointers. _____________________________ Professor Michael Kubovy University of Virginia Department of Psychology USPS: P.O.Box
2009 Dec 07
0
Sweave, cacheSweave, and data frame
...o keep the solution for myself. A small, reproducible example: <<cache=true>>= a=1 @ <<>>= a+1 @ Compiling with cacheSweave gives an error: > library(cacheSweave) Lade n?tiges Paket: filehash filehash: Simple key-value database (2.0-1 2008-12-19) Lade n?tiges Paket: stashR A Set of Tools for Administering SHared Repositories (0.3-3 2009-03-26) > Sweave("cacheSweaveExample.rnw", driver=cacheSweaveDriver) Writing to file cacheSweaveExample.tex Processing code chunks ... 1 : echo term verbatim Fehler in data.frame(chunk = options$label, chunkprefix = chun...
2007 Apr 24
0
Bug in xYplot() with method = 'filled bands'
...attached base packages: [1] "grDevices" "datasets" "grid" "graphics" "stats" "utils" [7] "methods" "base" other attached packages: coda lme4 Matrix car cacheSweave stashR "0.10-7" "0.9975-13" "0.9975-11" "1.2-1" "0.3" "0.2-1" filehash digest circular boot gmodels multcompView "0.9-4" "0.2.3" "0.3-6" &qu...
2010 Aug 25
1
Documenting S4 Methods
I'm in the process of converting some S3 methods to S4 methods. I have this function : setGeneric("enrichmentCalc", function(rs, organism, seqLen, ...){standardGeneric("enrichmentCalc")}) setMethod("enrichmentCalc", c("GenomeDataList", "BSgenome"), function(rs, organism, seqLen, ...) { ... ... ... })