Title: Categorical Regression Splines
Diff between crs versions 0.15-0 dated 2011-06-24 and 0.15-2 dated 2011-07-30
Description: This package provides for estimating regression splines
that handle a mix of continuous and categorical (discrete) data
often encountered in applied settings. I would like to
gratefully acknowledge support from the Natural Sciences and
Engineering Research Council of Canada (NSERC:www.nserc.ca),
the Social Sciences and Humanities Research Council of Canada
(SSHRC:www.sshrc.ca), and the Shared Hierarchical Academic
Research Computing Network (SHARCNET:www.sharcnet.ca).
Author: Jeffrey S. Racine
Maintainer: Jeffrey S. Racine
crs-0.15-0/crs/COPYING |only
crs-0.15-0/crs/R/is.snomadr.R |only
crs-0.15-2/crs/CHANGELOG | 56
crs-0.15-2/crs/COPYRIGHTS |only
crs-0.15-2/crs/DESCRIPTION | 10
crs-0.15-2/crs/NAMESPACE | 13
crs-0.15-2/crs/R/crs.R | 958 +++++++++++-----
crs-0.15-2/crs/R/crscv.R | 2
crs-0.15-2/crs/R/crsiv.R | 9
crs-0.15-2/crs/R/frscv.R | 64 -
crs-0.15-2/crs/R/frscvNOMAD.R | 80 -
crs-0.15-2/crs/R/glp.model.matrix.R |only
crs-0.15-2/crs/R/kernel.R | 22
crs-0.15-2/crs/R/krscv.R | 150 +-
crs-0.15-2/crs/R/krscvNOMAD.R | 102 +
crs-0.15-2/crs/R/np.regression.glp.R |only
crs-0.15-2/crs/R/snomadr.R | 278 ++--
crs-0.15-2/crs/R/spline.R | 227 ++-
crs-0.15-2/crs/R/util.R | 79 +
crs-0.15-2/crs/R/zzz.R | 2
crs-0.15-2/crs/README | 4
crs-0.15-2/crs/crsver | 2
crs-0.15-2/crs/demo/00Index | 20
crs-0.15-2/crs/demo/crsiv_exog_persp.R | 12
crs-0.15-2/crs/demo/radial_constrained_first_partial.R |only
crs-0.15-2/crs/demo/radial_constrained_mean.R |only
crs-0.15-2/crs/demo/radial_constrained_second_partial.R |only
crs-0.15-2/crs/demo/radial_constrained_test.R |only
crs-0.15-2/crs/demo/radial_persp.R | 6
crs-0.15-2/crs/demo/radial_rgl.R | 7
crs-0.15-2/crs/demo/sine_rgl.R |only
crs-0.15-2/crs/demo/spline.R |only
crs-0.15-2/crs/inst/doc/crs.Rnw | 97 +
crs-0.15-2/crs/inst/doc/crs.bib | 45
crs-0.15-2/crs/inst/doc/crs.pdf |binary
crs-0.15-2/crs/inst/doc/crs_faq.pdf |binary
crs-0.15-2/crs/inst/doc/spline_primer.Rnw | 2
crs-0.15-2/crs/inst/doc/spline_primer.pdf |binary
crs-0.15-2/crs/man/crs-package.Rd | 10
crs-0.15-2/crs/man/crs.Rd | 66 -
crs-0.15-2/crs/man/crsiv.Rd | 11
crs-0.15-2/crs/man/data-cps71.Rd | 11
crs-0.15-2/crs/man/data-wage1.Rd | 18
crs-0.15-2/crs/man/frscv.Rd | 33
crs-0.15-2/crs/man/frscvNOMAD.Rd | 50
crs-0.15-2/crs/man/glp.model.matrix.Rd |only
crs-0.15-2/crs/man/krscv.Rd | 39
crs-0.15-2/crs/man/krscvNOMAD.Rd | 56
crs-0.15-2/crs/man/npglpreg.Rd |only
crs-0.15-2/crs/mkcrspkg.sh | 2
crs-0.15-2/crs/src/snomadr.cpp | 51
51 files changed, 1654 insertions(+), 940 deletions(-)
Title: An R package for changepoint analysis
Diff between changepoint versions 0.4.1 dated 2011-06-05 and 0.5 dated 2011-07-30
Description: Implements various mainstream and specialised changepoint
methods for finding single and multiple changepoints within
data. Many popular non-parametric and frequentist methods are
included. The cpt.mean, cpt.var, cpt.meanvar functions should
be your first point of call.
Author: Rebecca Killick
Maintainer: Rebecca Killick
DESCRIPTION | 11 +--
NAMESPACE |only
NEWS | 8 ++
R/cpt.R | 2
R/cpt.class.R | 151 +++++++++++++++++++++------------------------
R/zzz.R | 20 +----
man/changepoint-package.Rd | 4 -
man/cpt.var.Rd | 4 -
8 files changed, 97 insertions(+), 103 deletions(-)
Title: Serialize R objects to JSON, JavaScript Object Notation
Diff between RJSONIO versions 0.7-3 dated 2011-06-06 and 0.8-1 dated 2011-07-30
Description: This is a package that allows conversion to and from data
in Javascript object notation (JSON) format. This allows R
objects to be inserted into Javascript/ECMAScript/ActionScript
code and allows R programmers to read and convert JSON content
to R objects. This is an alternative to rjson package. That
version is too slow for converting large R objects to JSON and
is not extensible, but a very useful prototype. It is fast for
parsing. This package uses methods, vectorized operations and C
code and callbacks to R functions for deserializing JSON
objects to R. Verison 0.4 of this package uses a new native
parser, implements the transformation code in C and allocates
memory efficiently (rather than concatenating because of event
driven parsing). The result is a significantly faster parsing
of large JSON documents.
Author: Duncan Temple Lang
Maintainer: Duncan Temple Lang
Changes | 21 +++++++++++++++++
Changes.html | 44 +++++++++++++++++++++++++++++++++---
Changes.xml | 28 ++++++++++++++++++++++
DESCRIPTION | 6 ++--
R/json.R | 39 ++++++++++++++++---------------
R/readJSON.R | 35 ++++++++++++++--------------
Web/index.html | 2 -
inst/doc/biblio.xml |only
inst/doc/overview.Rdb |only
inst/doc/overview.aux |only
inst/doc/overview.bbl |only
inst/doc/overview.bib |only
inst/doc/overview.blg |only
inst/doc/overview.html |only
inst/doc/overview.log |only
inst/doc/overview.out |only
inst/doc/overview.pdf |only
inst/doc/overview.tex |only
man/fromJSON.Rd | 12 +++++++++
man/toJSON.Rd | 13 +++++++++-
src/libjson/Source/JSONChildren.h | 2 +
src/libjson/Source/NumberToString.h | 7 +++++
src/libjson/bdr |only
src/rlibjson.c | 24 +++++++++----------
24 files changed, 176 insertions(+), 57 deletions(-)
Title: Tableplot, a visualization of large statistical datasets
Diff between tabplot versions 0.10 dated 2011-07-29 and 0.10-1 dated 2011-07-30
Description: A tableplot is a visualisation of a (large) statistical
dataset with a dozen of variables, both both numeric and
categorical. Each column represents a variable and each row bin
is an aggregate of a certain number of records. Numeric
variables are visualized as bar charts, and categorical
variables as stacked bar charts. Missing values are taken into
account. A GUI has been implemented which is used to easily
customize the tableplot. Also supports large ffdf datasets from
the ff package.
Author: Martijn Tennekes and Edwin de Jonge
Maintainer: Martijn Tennekes
DESCRIPTION | 23 +++++++++++++++++++----
R/pkg.R | 4 ++--
R/preprocess.data.table.R | 2 +-
R/preprocess.ffdf.R | 2 +-
Tableplot.jpg |only
inst/doc/enumitem.sty |only
inst/doc/tabplot-vignette.pdf |binary
man/tabplot-package.Rd | 4 ++--
8 files changed, 25 insertions(+), 10 deletions(-)
Title: Geographic analysis and modeling with raster data
Diff between raster versions 1.9-1 dated 2011-07-23 and 1.9-5 dated 2011-07-30
Description: Reading, writing, manipulating, analyzing and modeling of
gridded spatial data. The package implements basic and
high-level functions, as well as map algebra. Processing of
very large files is supported.
Author: Robert J. Hijmans & Jacob van Etten
Maintainer: Robert J. Hijmans
raster-1.9-1/raster/R/median.R |only
raster-1.9-5/raster/ChangeLog | 8 ++++
raster-1.9-5/raster/DESCRIPTION | 10 ++---
raster-1.9-5/raster/NAMESPACE | 2 -
raster-1.9-5/raster/R/as.data.frame.R |only
raster-1.9-5/raster/R/calc.R | 34 +++++++++++------
raster-1.9-5/raster/R/coerce.R | 8 +---
raster-1.9-5/raster/R/getValues.R | 15 +++++--
raster-1.9-5/raster/R/gridDistance.R | 2 -
raster-1.9-5/raster/R/imageplot2.R | 21 ++++++----
raster-1.9-5/raster/R/index.R | 21 ++++++++--
raster-1.9-5/raster/R/indexReplace.R | 23 +++++++----
raster-1.9-5/raster/R/indexReplaceBrick.R | 41 +++++----------------
raster-1.9-5/raster/R/plot.R | 13 ++++--
raster-1.9-5/raster/R/plotRGB.R | 54 ----------------------------
raster-1.9-5/raster/R/predict.R | 24 +++++++++++-
raster-1.9-5/raster/R/rasterToPoints.R | 9 ++--
raster-1.9-5/raster/R/read.R | 3 +
raster-1.9-5/raster/R/writeRaster.R | 11 +++--
raster-1.9-5/raster/inst/doc/Raster.pdf |binary
raster-1.9-5/raster/inst/doc/functions.pdf |binary
raster-1.9-5/raster/inst/doc/rasterfile.pdf |binary
raster-1.9-5/raster/man/Summary-methods.Rd | 30 +++++++--------
raster-1.9-5/raster/man/as.data.frame.Rd |only
raster-1.9-5/raster/man/extractIndex.Rd | 1
raster-1.9-5/raster/man/gridDistance.Rd | 8 ++--
raster-1.9-5/raster/man/plot.Rd | 24 +++++++-----
raster-1.9-5/raster/man/raster-package.Rd | 3 -
raster-1.9-5/raster/man/replacement.Rd | 1
29 files changed, 186 insertions(+), 180 deletions(-)
Title: Parallel nonparametric kernel smoothing methods for mixed data
types
Diff between npRmpi versions 0.40-7 dated 2011-06-09 and 0.40-9 dated 2011-07-30
Description: This package provides a variety of nonparametric (and
semiparametric) kernel methods that seamlessly handle a mix of
continuous, unordered, and ordered factor data types. This
package is a parallel implementation of the np package based on
the MPI specification that incorporates the Rmpi package (Hao
Yu
Author: Tristen Hayfield
Maintainer: Jeffrey S. Racine
npRmpi-0.40-7/npRmpi/COPYING |only
npRmpi-0.40-7/npRmpi/demo/n_2/.R.Rout |only
npRmpi-0.40-7/npRmpi/demo/n_2/npplreg_npRmpi.Rout |only
npRmpi-0.40-7/npRmpi/demo/n_2/tmp |only
npRmpi-0.40-7/npRmpi/demo/n_3 |only
npRmpi-0.40-7/npRmpi/demo/n_4 |only
npRmpi-0.40-7/npRmpi/demo/serial/.R.Rout |only
npRmpi-0.40-7/npRmpi/demo/serial/npplreg_serial.Rout |only
npRmpi-0.40-7/npRmpi/inst/doc/npRmpi.Rnw |only
npRmpi-0.40-7/npRmpi/inst/doc/npRmpi.pdf |only
npRmpi-0.40-7/npRmpi/inst/merge_np_Rmpi.tex |only
npRmpi-0.40-9/npRmpi/CHANGELOG | 24 ++
npRmpi-0.40-9/npRmpi/COPYRIGHTS |only
npRmpi-0.40-9/npRmpi/DESCRIPTION | 10 -
npRmpi-0.40-9/npRmpi/R/Rparutilities.R | 85 ++++----
npRmpi-0.40-9/npRmpi/R/np.plot.R | 6
npRmpi-0.40-9/npRmpi/R/np.plregression.R | 41 +++-
npRmpi-0.40-9/npRmpi/R/np.plregression.bw.R | 29 ++
npRmpi-0.40-9/npRmpi/R/np.singleindex.R | 144 ++++----------
npRmpi-0.40-9/npRmpi/R/np.singleindex.bw.R | 133 +++----------
npRmpi-0.40-9/npRmpi/R/sibandwidth.R | 9
npRmpi-0.40-9/npRmpi/R/util.R | 20 +-
npRmpi-0.40-9/npRmpi/R/zzz.R | 2
npRmpi-0.40-9/npRmpi/README | 159 ----------------
npRmpi-0.40-9/npRmpi/configure.ac | 19 +
npRmpi-0.40-9/npRmpi/data/cps71.rda |binary
npRmpi-0.40-9/npRmpi/inst/Rslaves.bat | 33 +--
npRmpi-0.40-9/npRmpi/inst/Rslaves32.bat |only
npRmpi-0.40-9/npRmpi/inst/Rslaves64.bat |only
npRmpi-0.40-9/npRmpi/inst/compile_npRmpi_MS_Windows.txt | 47 ++--
npRmpi-0.40-9/npRmpi/inst/doc/np_faq.pdf |binary
npRmpi-0.40-9/npRmpi/inst/install_npRmpi_MS_Windows.txt | 16 -
npRmpi-0.40-9/npRmpi/inst/install_npRmpi_SHARCNET.txt | 8
npRmpi-0.40-9/npRmpi/man/b.star.Rd | 4
npRmpi-0.40-9/npRmpi/man/data-oecd.Rd | 2
npRmpi-0.40-9/npRmpi/man/data-wage1.Rd | 2
npRmpi-0.40-9/npRmpi/man/gradients.Rd | 2
npRmpi-0.40-9/npRmpi/man/hosts.Rd | 8
npRmpi-0.40-9/npRmpi/man/mpi.spawn.Rslaves.Rd | 2
npRmpi-0.40-9/npRmpi/man/np-package.Rd | 2
npRmpi-0.40-9/npRmpi/man/np.cmstest.Rd | 2
npRmpi-0.40-9/npRmpi/man/np.condensity.Rd | 4
npRmpi-0.40-9/npRmpi/man/np.condensity.bw.Rd | 5
npRmpi-0.40-9/npRmpi/man/np.conmode.Rd | 2
npRmpi-0.40-9/npRmpi/man/np.deneqtest.Rd | 2
npRmpi-0.40-9/npRmpi/man/np.density.Rd | 2
npRmpi-0.40-9/npRmpi/man/np.density.bw.Rd | 2
npRmpi-0.40-9/npRmpi/man/np.deptest.Rd | 2
npRmpi-0.40-9/npRmpi/man/np.kernelsum.Rd | 2
npRmpi-0.40-9/npRmpi/man/np.plot.Rd | 2
npRmpi-0.40-9/npRmpi/man/np.plregression.Rd | 10 -
npRmpi-0.40-9/npRmpi/man/np.plregression.bw.Rd | 10 -
npRmpi-0.40-9/npRmpi/man/np.qcmstest.Rd | 2
npRmpi-0.40-9/npRmpi/man/np.qregression.Rd | 2
npRmpi-0.40-9/npRmpi/man/np.regression.Rd | 2
npRmpi-0.40-9/npRmpi/man/np.regression.bw.Rd | 2
npRmpi-0.40-9/npRmpi/man/np.sdeptest.Rd | 2
npRmpi-0.40-9/npRmpi/man/np.sigtest.Rd | 2
npRmpi-0.40-9/npRmpi/man/np.singleindex.Rd | 21 --
npRmpi-0.40-9/npRmpi/man/np.singleindex.bw.Rd | 19 -
npRmpi-0.40-9/npRmpi/man/np.smoothcoef.Rd | 2
npRmpi-0.40-9/npRmpi/man/np.smoothcoef.bw.Rd | 2
npRmpi-0.40-9/npRmpi/man/np.symtest.Rd | 2
npRmpi-0.40-9/npRmpi/man/np.unitest.Rd | 2
npRmpi-0.40-9/npRmpi/man/npseed.Rd | 2
npRmpi-0.40-9/npRmpi/man/se.Rd | 2
npRmpi-0.40-9/npRmpi/man/uocquantile.Rd | 2
npRmpi-0.40-9/npRmpi/npver | 2
npRmpi-0.40-9/npRmpi/src/Makevars.win | 7
npRmpi-0.40-9/npRmpi/src/Rmpi.c | 6
npRmpi-0.40-9/npRmpi/src/Rmpi.h | 1
npRmpi-0.40-9/npRmpi/src/jksum.c | 2
npRmpi-0.40-9/npRmpi/src/kernel.c | 2
npRmpi-0.40-9/npRmpi/src/kernele.c | 8
74 files changed, 372 insertions(+), 574 deletions(-)
Title: Nonparametric kernel smoothing methods for mixed data types
Diff between np versions 0.40-7 dated 2011-06-09 and 0.40-9 dated 2011-07-30
Description: This package provides a variety of nonparametric (and
semiparametric) kernel methods that seamlessly handle a mix of
continuous, unordered, and ordered factor data types. We would
like to gratefully acknowledge support from the Natural
Sciences and Engineering Research Council of Canada
(NSERC:www.nserc.ca), the Social Sciences and Humanities
Research Council of Canada (SSHRC:www.sshrc.ca), and the Shared
Hierarchical Academic Research Computing Network
(SHARCNET:www.sharcnet.ca).
Author: Tristen Hayfield
Maintainer: Jeffrey S. Racine
np-0.40-7/np/.tmp.sh |only
np-0.40-7/np/COPYING |only
np-0.40-7/np/nptest |only
np-0.40-9/np/CHANGELOG | 25 +++++
np-0.40-9/np/COPYRIGHTS |only
np-0.40-9/np/DESCRIPTION | 10 +-
np-0.40-9/np/R/np.plot.R | 65 +++++++++-----
np-0.40-9/np/R/np.plregression.R | 41 ++++++++-
np-0.40-9/np/R/np.plregression.bw.R | 29 +++++-
np-0.40-9/np/R/np.singleindex.R | 144 +++++++++------------------------
np-0.40-9/np/R/np.singleindex.bw.R | 133 +++++++-----------------------
np-0.40-9/np/R/sibandwidth.R | 12 ++
np-0.40-9/np/R/util.R | 20 +++-
np-0.40-9/np/R/zzz.R | 2
np-0.40-9/np/README |only
np-0.40-9/np/data/cps71.rda |binary
np-0.40-9/np/inst/doc/entropy_np.pdf |binary
np-0.40-9/np/inst/doc/np.pdf |binary
np-0.40-9/np/inst/doc/np_faq.pdf |binary
np-0.40-9/np/man/b.star.Rd | 2
np-0.40-9/np/man/data-oecd.Rd | 2
np-0.40-9/np/man/data-wage1.Rd | 2
np-0.40-9/np/man/gradients.Rd | 2
np-0.40-9/np/man/np-package.Rd | 17 ++-
np-0.40-9/np/man/np.cmstest.Rd | 10 --
np-0.40-9/np/man/np.condensity.Rd | 54 +++++-------
np-0.40-9/np/man/np.condensity.bw.Rd | 18 +---
np-0.40-9/np/man/np.conmode.Rd | 13 +-
np-0.40-9/np/man/np.deneqtest.Rd | 2
np-0.40-9/np/man/np.density.Rd | 30 ++----
np-0.40-9/np/man/np.density.bw.Rd | 31 ++-----
np-0.40-9/np/man/np.deptest.Rd | 2
np-0.40-9/np/man/np.kernelsum.Rd | 2
np-0.40-9/np/man/np.plot.Rd | 69 +++++++--------
np-0.40-9/np/man/np.plregression.Rd | 58 ++++++-------
np-0.40-9/np/man/np.plregression.bw.Rd | 36 ++++----
np-0.40-9/np/man/np.qcmstest.Rd | 2
np-0.40-9/np/man/np.qregression.Rd | 20 ++--
np-0.40-9/np/man/np.regression.Rd | 57 ++++---------
np-0.40-9/np/man/np.regression.bw.Rd | 6 -
np-0.40-9/np/man/np.sdeptest.Rd | 2
np-0.40-9/np/man/np.sigtest.Rd | 2
np-0.40-9/np/man/np.singleindex.Rd | 27 ------
np-0.40-9/np/man/np.singleindex.bw.Rd | 19 ----
np-0.40-9/np/man/np.smoothcoef.Rd | 2
np-0.40-9/np/man/np.smoothcoef.bw.Rd | 2
np-0.40-9/np/man/np.symtest.Rd | 2
np-0.40-9/np/man/np.unitest.Rd | 2
np-0.40-9/np/man/npseed.Rd | 2
np-0.40-9/np/man/se.Rd | 2
np-0.40-9/np/man/uocquantile.Rd | 2
np-0.40-9/np/npver | 2
np-0.40-9/np/src/jksum.c | 4
np-0.40-9/np/src/kernel.c | 2
np-0.40-9/np/src/kernele.c | 8 -
55 files changed, 447 insertions(+), 549 deletions(-)
Title: Text Classification Using Low-memory Multinomial Logistic
Regression
Diff between maxent versions 1.1 dated 2011-07-30 and 1.2 dated 2011-07-30
Description: maxent is an R package with tools for text classification
using multinomial logistic regression, also known as maximum
entropy. The focus of this maximum entropy classifier is to
minimize memory consumption on very large datasets,
particularly sparse document-term matrices represented by the
tm package.
Author: Timothy P. Jurka
Maintainer: Timothy P. Jurka
maxent-1.1/maxent/R/dtm_to_sparsem.R |only
maxent-1.1/maxent/R/print_weights.R |only
maxent-1.1/maxent/man/dtm_to_sparsem.Rd |only
maxent-1.1/maxent/man/print_weights.Rd |only
maxent-1.2/maxent/DESCRIPTION | 15 ++++++++-------
maxent-1.2/maxent/NAMESPACE | 6 +++++-
maxent-1.2/maxent/R/as.compressed.matrix.R |only
maxent-1.2/maxent/R/load.model.R |only
maxent-1.2/maxent/R/maxent.R | 22 +++++++++++-----------
maxent-1.2/maxent/R/predict.maxent.R | 20 ++++++++++----------
maxent-1.2/maxent/R/save.model.R |only
maxent-1.2/maxent/R/zzz.R | 6 +++---
maxent-1.2/maxent/man/as.compressed.matrix.Rd |only
maxent-1.2/maxent/man/load.model.Rd |only
maxent-1.2/maxent/man/maxent-class.Rd | 7 +++----
maxent-1.2/maxent/man/maxent-package.Rd | 17 ++++++-----------
maxent-1.2/maxent/man/maxent.Rd | 9 ++++-----
maxent-1.2/maxent/man/predict.maxent.Rd | 9 ++++-----
maxent-1.2/maxent/man/save.model.Rd |only
19 files changed, 54 insertions(+), 57 deletions(-)
Title: Multilayer optics
Diff between planar versions 1.0 dated 2011-07-27 and 1.1 dated 2011-07-30
Description: Solves the electromagnetic problem of reflection and
transmission at a multilayer planar interface. Also computes
the decay rates for a dipolar emitter near a multilayer
structure.
Author: baptiste Auguie
Maintainer: baptiste Auguie
DESCRIPTION | 13 ++++----
NAMESPACE | 21 +++++++-------
R/field-profile.r |only
R/planar-package.r | 4 +-
R/recursive.fresnel.r | 2 -
demo/field_enhancement.r | 63 +++++--------------------------------------
inst/doc/planar-vignette.pdf |binary
man/field.outside.Rd |only
man/planar-package.Rd | 4 +-
src/multilayer.cpp | 1
10 files changed, 30 insertions(+), 78 deletions(-)
Title: Fractional Factorial designs with 2-level factors
Diff between FrF2 versions 1.2-4 dated 2011-07-23 and 1.2-5 dated 2011-07-30
Description: This package creates regular and non-regular Fractional
Factorial designs. Furthermore, analysis tools for Fractional
Factorial designs with 2-level factors are offered (main
effects and interaction plots for all factors simultaneously,
cube plot for looking at the simultaneous effects of three
factors, full or half normal plot, alias structure in a more
readable format than with the built-in function alias). The
package is currently subject to intensive development. While
much of the intended functionality is already available, some
changes and improvements are still to be expected. Suggestions
are welcome.
Author: Ulrike Groemping
Maintainer: Ulrike Groemping
DESCRIPTION | 8 ++++----
R/FrF2.R | 40 +++++++++++++++++++++++++++++++++-------
inst/NEWS | 6 ++++++
man/FrF2.Rd | 13 ++++++++-----
4 files changed, 51 insertions(+), 16 deletions(-)
Title: Spatial and Phylogenetic Analysis of Community Diversity
Diff between spacodiR versions 0.11.04012011 dated 2011-04-05 and 0.11.07292011 dated 2011-07-30
Description: SPACoDi is primarily designed to characterise the
structure and phylogenetic diversity of communities using
abundance or presence-absence data of species among community
plots.
Author: Jonathan Eastman, Timothy Paine, and Olivier Hardy
Maintainer: Jonathan Eastman
ChangeLog | 3 +++
DESCRIPTION | 8 ++++----
R/dataManipulation.R | 2 +-
R/dataResampling.R | 2 +-
4 files changed, 9 insertions(+), 6 deletions(-)
Title: Derivative-free Optimization
Diff between dfoptim versions 2011.7-1 dated 2011-07-25 and 2011.7-2 dated 2011-07-30
Description: Derivative-Free optimization algorithms. These algorithms
do not require gradient information. More importantly, they can
be used to solve non-smooth optimization problems.
Author: Ravi Varadhan, Johns Hopkins University, and Hans W. Borchers
(ABB Corporate Research)
Maintainer: Ravi Varadhan
DESCRIPTION | 8 +++---
NAMESPACE | 1
NEWS | 4 +++
R/nmkb.R |only
demo/dfoptim.R | 69 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++-
man/nmkb.Rd |only
6 files changed, 77 insertions(+), 5 deletions(-)
Title: General Non-linear Optimization
Diff between Rsolnp versions 1.0-9 dated 2011-05-25 and 1.11 dated 2011-07-30
Description: General Non-linear Optimization Using Augmented Lagrange
Multiplier Method
Author: Alexios Ghalanos and Stefan Theussl
Maintainer: Alexios Ghalanos
ChangeLog | 11
DESCRIPTION | 10
NAMESPACE | 1
R/gosolnp.R | 208 +++++++++++++++++-
R/helpers.R | 5
R/solnp.R | 12 -
R/subnp.R | 562 --------------------------------------------------
data/dji30ret.rda |binary
man/Rsolnp-package.Rd | 4
man/gosolnp.Rd | 18 -
man/startpars.Rd |only
11 files changed, 240 insertions(+), 591 deletions(-)
Title: R Commander Plugin for (industrial) Design of Experiments
Diff between RcmdrPlugin.DoE versions 0.10-4 dated 2011-07-23 and 0.10-5 dated 2011-07-30
More information about RcmdrPlugin.DoE at CRAN
Description: WARNING: This package is currently in beta status! The
package provides a platform-independent GUI for design of
experiments. It is implemented as a plugin to the R-Commander,
which is a more general graphical user interface for statistics
in R based on tcl/tk. DoE functionality can be accessed through
the menu Design that is added to the R-Commander menus.
Author: Ulrike Groemping
Maintainer: Ulrike Groemping
DESCRIPTION | 8 ++++----
R/Menu.FrF2level.R | 2 +-
R/Menu.ccd.r | 17 +++++++++++++++++
inst/NEWS | 5 +++++
4 files changed, 27 insertions(+), 5 deletions(-)
Permanent link
Title: Regression Trees with Random Effects for Longitudinal (Panel)
Data
Diff between REEMtree versions 0.90.1 dated 2011-06-22 and 0.90.2 dated 2011-07-30
Description: This package estimates regression trees with random
effects as a way to use data mining techniques to describe
longitudinal or panel data.
Author: Rebecca Sela and Jeffrey Simonoff
Maintainer: Rebecca Sela
DESCRIPTION | 8 ++++----
R/EMtree-functions.r | 2 +-
man/AutoCorrelationLRtest.Rd | 2 +-
man/REEMtree-package.Rd | 3 +--
man/REEMtree.Rd | 5 ++---
man/REEMtree.object.Rd | 2 +-
man/fitted.REEMtree.Rd | 2 +-
man/is.Rd | 2 +-
man/logLik.Rd | 2 +-
man/plot.Rd | 2 +-
man/predict.Rd | 2 +-
man/print.Rd | 2 +-
man/ranef.REEMtree.Rd | 2 +-
man/residuals.REEMtree.Rd | 2 +-
man/simpleREEMdata.Rd | 2 +-
man/tree.Rd | 2 +-
16 files changed, 20 insertions(+), 22 deletions(-)