search for: robastbase

Displaying 9 results from an estimated 9 matches for "robastbase".

Did you mean: robustbase
2009 Dec 09
0
new version of RobASt-family of packages
The new version 0.7 of our RobASt-family of packages is available on CRAN for several days. As there were many changes we will only sketch the most important ones here. For more details see the corresponding NEWS files (e.g. news(package = "RobAStBase") or using function NEWS from package startupmsg i.e. NEWS("RobAStBase")). First of all the new package RobLoxBioC was added to the family which includes S4 classes and methods for preprocessing omics data, in particular gene expression data. ##################################...
2009 Dec 09
0
new version of RobASt-family of packages
The new version 0.7 of our RobASt-family of packages is available on CRAN for several days. As there were many changes we will only sketch the most important ones here. For more details see the corresponding NEWS files (e.g. news(package = "RobAStBase") or using function NEWS from package startupmsg i.e. NEWS("RobAStBase")). First of all the new package RobLoxBioC was added to the family which includes S4 classes and methods for preprocessing omics data, in particular gene expression data. ##################################...
2011 Jan 26
0
New package versions for distr- and robast- families
...ts or simple feedback, Best, Peter, Matthias, Nataliya ------------------------------------------------------------------------ ------------------------------------------------------------------------ New versions 0.8 of our RobASt-family of packages are now available on CRAN. (i.e.; RandVar, RobAStBase, ROptEst, RobLox, ROptEstOld, ROptEstTS, RobRex, RobLoxBioC) Most importantly, we have included: + a quasi-MC trick by Nataliya Horbenko to better produce random variables under complicated not necessarily monotone transformations + enhanced functions infoPlot, (plots relati...
2011 Jan 26
0
New package versions for distr- and robast- families
...ts or simple feedback, Best, Peter, Matthias, Nataliya ------------------------------------------------------------------------ ------------------------------------------------------------------------ New versions 0.8 of our RobASt-family of packages are now available on CRAN. (i.e.; RandVar, RobAStBase, ROptEst, RobLox, ROptEstOld, ROptEstTS, RobRex, RobLoxBioC) Most importantly, we have included: + a quasi-MC trick by Nataliya Horbenko to better produce random variables under complicated not necessarily monotone transformations + enhanced functions infoPlot, (plots relati...
2012 Mar 16
1
Change in behavior of update.views()?
I haven't seen this cryptic warning before: > update.views('Robust') Warning message: In update.views("Robust") : The following packages are not available: covRobust, distr, FRB, MASS, mblm, multinomRob, mvoutlier, quantreg, RandVar, rgam, RobAStBase, robfilter, RobLox, RobRex, robust, RobustAFT, robustbase, ROptEst, ROptRegTS, rrcov, sandwich, wle > library(covRobust) > It is puzzling because — as the second command shows — the package covRobust is installed. Here is my > sessionInfo() R version 2.14.2 (2012-02-29) Platform: x86_64...
2008 Sep 15
0
RobASt-Packages
...------------- We would like to announce the availability on CRAN (with possibly a minor delay until on every mirror) of new versions of our packages for the computation of optimally robust estimators; i.e., "RandVar", "ROptEst", "RobLox" as well as a new package "RobAStBase" (not yet: ROptRegTS and RobRex). ----------------------------------------------------------------------------------------- Devel versions on R-forge ----------------------------------------------------------------------------------------- The development of these packages is under r-forge pr...
2008 Sep 15
0
RobASt-Packages
...------------- We would like to announce the availability on CRAN (with possibly a minor delay until on every mirror) of new versions of our packages for the computation of optimally robust estimators; i.e., "RandVar", "ROptEst", "RobLox" as well as a new package "RobAStBase" (not yet: ROptRegTS and RobRex). ----------------------------------------------------------------------------------------- Devel versions on R-forge ----------------------------------------------------------------------------------------- The development of these packages is under r-forge pr...
2010 Mar 14
0
Argument matching for primitives
...everal packages, e.g. people writing proc.time(<expression>) where system.time() was more plausible, misusing nargs() (if you want the number of args in ..., use length(list(...)), not nargs(...)), using on.exit(par=opar) not on.exit(par(opar)), and so on. Specifically CRAN packages NMF, RobAStBase, TTR, aroma.light, catspec, gvlma, mvbutils, orloca, orloca.es, sm and staRt now fail in R-devel (and also some that use them). -- Brian D. Ripley, ripley at stats.ox.ac.uk Professor of Applied Statistics, http://www.stats.ox.ac.uk/~ripley/ University of Oxford, Te...
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, ...) { ... ... ... })