Title: Using graphs as a navigational infrastructure.
Diff between RnavGraph versions 0.1.1 dated 2011-11-22 and 0.1.2 dated 2012-02-17
Description: GUI to explore high dimensional data (including image
data) using graphs as navigational infrastructure.
Author: Adrian R. Waddell and R. Wayne Oldford
Maintainer: Adrian Waddell
RnavGraph-0.1.1/RnavGraph/.project |only
RnavGraph-0.1.1/RnavGraph/inst/doc/img |only
RnavGraph-0.1.1/RnavGraph/inst/doc/lg.tex |only
RnavGraph-0.1.1/RnavGraph/inst/doc/p_prod.tex |only
RnavGraph-0.1.1/RnavGraph/inst/doc/products.tex |only
RnavGraph-0.1.1/RnavGraph/inst/doc/rep_p_GLG.tex |only
RnavGraph-0.1.1/RnavGraph/inst/doc/temp.tex |only
RnavGraph-0.1.1/RnavGraph/inst/doc/tikz_animation.tex |only
RnavGraph-0.1.1/RnavGraph/inst/doc/tikz_drag.tex |only
RnavGraph-0.1.1/RnavGraph/inst/doc/tikz_edgeSelect.tex |only
RnavGraph-0.1.1/RnavGraph/inst/doc/tikz_modifyGraph.tex |only
RnavGraph-0.1.1/RnavGraph/inst/doc/tikz_tk2d_main.tex |only
RnavGraph-0.1.1/RnavGraph/inst/doc/tikz_walk.tex |only
RnavGraph-0.1.2/RnavGraph/DESCRIPTION | 15
RnavGraph-0.1.2/RnavGraph/MD5 | 114 +++---
RnavGraph-0.1.2/RnavGraph/NAMESPACE | 7
RnavGraph-0.1.2/RnavGraph/NEWS | 5
RnavGraph-0.1.2/RnavGraph/R/AllGenerics.R | 4
RnavGraph-0.1.2/RnavGraph/R/FunctionNavGraph.R | 2
RnavGraph-0.1.2/RnavGraph/R/Visualization2D.R | 3
RnavGraph-0.1.2/RnavGraph/R/Viz2D_Axis.R | 2
RnavGraph-0.1.2/RnavGraph/R/Viz2D_Ggobi.R | 2
RnavGraph-0.1.2/RnavGraph/R/Viz2D_tk2d.R | 2
RnavGraph-0.1.2/RnavGraph/R/navGraph.R | 6
RnavGraph-0.1.2/RnavGraph/R/zzz.R | 8
RnavGraph-0.1.2/RnavGraph/demo/00Index | 1
RnavGraph-0.1.2/RnavGraph/demo/ng_own_viz.R |only
RnavGraph-0.1.2/RnavGraph/inst/doc/RnavGraph.Rnw | 269 +++++++++++-----
RnavGraph-0.1.2/RnavGraph/inst/doc/RnavGraph.pdf |binary
RnavGraph-0.1.2/RnavGraph/man/NG_Visualization-class.Rd |only
RnavGraph-0.1.2/RnavGraph/man/closeViz-methods.Rd |only
RnavGraph-0.1.2/RnavGraph/man/closeViz.Rd |only
RnavGraph-0.1.2/RnavGraph/man/initializeViz-methods.Rd |only
RnavGraph-0.1.2/RnavGraph/man/initializeViz.Rd |only
RnavGraph-0.1.2/RnavGraph/man/ng_set_colorsetter.Rd | 5
RnavGraph-0.1.2/RnavGraph/man/ng_set_sizesetter.Rd | 5
RnavGraph-0.1.2/RnavGraph/man/ng_setsetter.Rd | 2
RnavGraph-0.1.2/RnavGraph/man/updateViz-methods.Rd |only
RnavGraph-0.1.2/RnavGraph/man/updateViz.Rd |only
RnavGraph-0.1.2/RnavGraph/src/display_stuff.c | 56 +--
RnavGraph-0.1.2/RnavGraph/vignettes |only
41 files changed, 311 insertions(+), 197 deletions(-)
Title: Rcpp integration for Armadillo templated linear algebra library
Diff between RcppArmadillo versions 0.2.34 dated 2011-12-13 and 0.2.35 dated 2012-02-17
Description: R and Armadillo integration using Rcpp Armadillo is a
templated C++ linear algebra library (by Conrad Sanderson) that
aims towards a good balance between speed and ease of use.
Integer, floating point and complex numbers are supported, as
well as a subset of trigonometric and statistics functions.
Various matrix decompositions are provided through optional
integration with LAPACK and ATLAS libraries.
A delayed evaluation approach is employed (during compile time) to
combine several operations into one, and to reduce (or
eliminate) the need for temporaries. This is accomplished
through recursive templates and template meta-programming.
This library is useful if C++ has been decided as the language of
choice (due to speed and/or integration capabilities), rather
than another language.
The RcppArmadillo package includes the header files from the templated
Armadillo library (currently version 2.4.2). Thus users do not
need to install Armadillo itself in order to use RcppArmadillo.
This Armadillo integration provides a nice illustration of the
capabilities of the Rcpp package for seamless R and C++
integration.
Armadillo is licensed under the GNU LGPL version 3 or later, while
RcppArmadillo (the Rcpp bindings/bridge to Armadillo) is
licenses under the GNU GPL version 2 or later, as is the rest
of Rcpp.
Author: Romain Francois, Dirk Eddelbuettel and Doug Bates
Maintainer: Romain Francois, Dirk Eddelbuettel and Doug Bates
.Rinstignore |only
ChangeLog | 44 +
DESCRIPTION | 54 -
MD5 | 48 -
R/armadillo_version.R | 4
inst/NEWS | 21
inst/include/RcppArmadillo/Mat_meat.h | 2
inst/include/RcppArmadilloConfig.h | 4
inst/include/armadillo_bits/Base_bones.hpp | 5
inst/include/armadillo_bits/Base_meat.hpp | 14
inst/include/armadillo_bits/Cube_bones.hpp | 2
inst/include/armadillo_bits/Cube_meat.hpp | 8
inst/include/armadillo_bits/Mat_meat.hpp | 16
inst/include/armadillo_bits/Proxy.hpp | 82 +-
inst/include/armadillo_bits/ProxyCube.hpp | 58 -
inst/include/armadillo_bits/arma_version.hpp | 2
inst/include/armadillo_bits/config.hpp | 8
inst/include/armadillo_bits/constants.hpp | 2
inst/include/armadillo_bits/debug.hpp | 4
inst/include/armadillo_bits/field_meat.hpp | 8
inst/include/armadillo_bits/fn_trans.hpp | 1
inst/include/armadillo_bits/glue_relational_meat.hpp | 112 +-
inst/include/armadillo_bits/op_relational_meat.hpp | 752 ++++++-------------
inst/unitTests/runTests.R | 11
man/RcppArmadillo-package.Rd | 132 +--
src/RcppArmadillo.cpp | 6
26 files changed, 661 insertions(+), 739 deletions(-)
Title: Simultaneous Inference in General Parametric Models
Diff between multcomp versions 1.2-9 dated 2012-01-11 and 1.2-10 dated 2012-02-17
Description: Simultaneous tests and confidence intervals for general
linear hypotheses in parametric models, including linear,
generalized linear, linear mixed effects, and survival models.
The package includes demos reproducing analyzes presented in
the book "Multiple Comparisons Using R" (Bretz, Hothorn,
Westfall, 2010, CRC Press).
Author: Torsten Hothorn [aut, cre], Frank Bretz [aut], Peter Westfal
[aut]
Maintainer: Torsten Hothorn
multcomp-1.2-10/multcomp/DESCRIPTION | 19 -
multcomp-1.2-10/multcomp/MD5 | 43 +-
multcomp-1.2-10/multcomp/NEWS | 9
multcomp-1.2-10/multcomp/R/helpers.R | 11
multcomp-1.2-10/multcomp/data/cholesterol.rda |binary
multcomp-1.2-10/multcomp/data/litter.rda |binary
multcomp-1.2-10/multcomp/data/sbp.rda |binary
multcomp-1.2-10/multcomp/inst/CHANGES | 9
multcomp-1.2-10/multcomp/inst/doc/chfls1.pdf |binary
multcomp-1.2-10/multcomp/inst/doc/generalsiminf.pdf |binary
multcomp-1.2-10/multcomp/inst/doc/multcomp-examples.pdf |binary
multcomp-1.2-10/multcomp/tests/Examples/multcomp-Ex.Rout.save | 150 +++++-----
multcomp-1.2-10/multcomp/tests/bugfix.Rout.save | 6
multcomp-1.2-10/multcomp/tests/regtest-Tukey.Rout.save | 2
multcomp-1.2-10/multcomp/tests/regtest-anova.Rout.save | 9
multcomp-1.2-10/multcomp/tests/regtest-interface.Rout.save | 2
multcomp-1.2-10/multcomp/tests/regtest-lme.Rout.save | 2
multcomp-1.2-10/multcomp/vignettes |only
multcomp-1.2-9/multcomp/inst/doc/chfls1.bib |only
multcomp-1.2-9/multcomp/inst/doc/header.tex |only
multcomp-1.2-9/multcomp/inst/doc/multcomp.bib |only
multcomp-1.2-9/multcomp/inst/doc/references.bib |only
22 files changed, 166 insertions(+), 96 deletions(-)
Title: Graph Based Multiple Comparison Procedures
Diff between gMCP versions 0.7-6 dated 2012-02-13 and 0.7-7 dated 2012-02-17
Description: This package provides functions and a graphical user
interface for graphical described multiple test procedures.
Author: Kornelius Rohmeyer, Florian Klinglmueller (parametric tests,
adaptive designs), Bjoern Bornkamp (power simulations)
Maintainer: Kornelius Rohmeyer
DESCRIPTION | 6
MD5 | 54 +--
NAMESPACE | 2
NEWS | 27 +
R/gMCP.R | 69 ++--
R/graphMCP.R | 28 +
R/helperGUI.R | 3
TODO | 16
inst/doc/AQuickStart.pdf |binary
inst/doc/gMCP.pdf |binary
inst/doc/gMCP/gMCP.Rnw | 141 +++++---
inst/doc/parametric.pdf |binary
inst/doc/pictures/correlated.png |binary
inst/java-src/org/af/gMCP/gui/datatable/DataTableModel.java | 9
inst/java-src/org/af/gMCP/gui/datatable/EpsilonTableCellRenderer.java | 33 +
inst/java-src/org/af/gMCP/gui/datatable/RDataFrameRef.java | 4
inst/java-src/org/af/gMCP/gui/dialogs/GroupDialog.java | 20 +
inst/java-src/org/af/gMCP/gui/dialogs/MatrixCreationDialog.java | 169 ++++++++--
inst/java-src/org/af/gMCP/gui/dialogs/TextFileViewer.java | 2
inst/java-src/org/af/gMCP/gui/graph/Edge.java | 1
inst/java-src/org/af/gMCP/gui/graph/EdgeWeight.java | 4
inst/java-src/org/af/gMCP/gui/graph/GraphView.java | 1
inst/java-src/org/af/gMCP/gui/graph/NetList.java | 32 +
inst/java-src/org/af/gMCP/gui/graph/PView.java | 40 --
inst/java/gsrmtp.jar |binary
inst/unitTests/runit.gMCP.R | 6
man/gMCP.Rd | 12
man/graphMCP.Rd | 11
28 files changed, 467 insertions(+), 223 deletions(-)
Title: Classification and Regression Training
Diff between caret versions 5.13-20 dated 2012-02-06 and 5.13-037 dated 2012-02-17
Description: Misc functions for training and plotting classification
and regression models
Author: Max Kuhn. Contributions from Jed Wing, Steve Weston, Andre
Williams, Chris Keefer and Allan Engelhardt
Maintainer: Max Kuhn
caret-5.13-037/caret/DESCRIPTION | 10 +-
caret-5.13-037/caret/MD5 | 40 ++++-----
caret-5.13-037/caret/R/createGrid.R | 4
caret-5.13-037/caret/R/createModel.R | 98 ++++++++++++++++++++++-
caret-5.13-037/caret/R/modelLookup.R | 79 +++++++++++++++---
caret-5.13-037/caret/R/predictionFunction.R | 10 ++
caret-5.13-037/caret/R/probFunction.R | 7 +
caret-5.13-037/caret/R/selection.R | 10 ++
caret-5.13-037/caret/inst/NEWS.Rd |only
caret-5.13-037/caret/inst/doc/allPred.pdf |binary
caret-5.13-037/caret/inst/doc/caretMisc.pdf |binary
caret-5.13-037/caret/inst/doc/caretSelection.pdf |binary
caret-5.13-037/caret/inst/doc/caretTrain.pdf |binary
caret-5.13-037/caret/inst/doc/caretVarImp.pdf |binary
caret-5.13-037/caret/inst/doc/filteredPred.pdf |binary
caret-5.13-037/caret/inst/doc/min.pdf |binary
caret-5.13-037/caret/inst/doc/speedup.pdf |binary
caret-5.13-037/caret/inst/modelKey.txt | 2
caret-5.13-037/caret/man/findCorrelation.Rd | 4
caret-5.13-037/caret/man/findLinearCombos.Rd | 4
caret-5.13-037/caret/man/train.Rd | 6 +
caret-5.13-20/caret/inst/NEWS |only
22 files changed, 228 insertions(+), 46 deletions(-)
Title: Capushe, data-driven slope estimation and dimension jump
Diff between capushe versions 0.8 dated 2011-10-06 and 1.0 dated 2012-02-17
Description: This package is devoted to the calibration of penalized
criteria for model selection. The calibration methods available
in this package are based on the slope heuristics.
Author: Vincent Brault, Jean-Patrick Baudry, Cathy Maugis and Bertrand
Michel
Maintainer: Vincent Brault
DESCRIPTION | 6 +++---
MD5 | 2 +-
2 files changed, 4 insertions(+), 4 deletions(-)
Title: Breaks For Additive Season and Trend (BFAST)
Diff between bfast versions 1.2-1 dated 2011-04-24 and 1.4.3 dated 2012-02-17
Description: BFAST integrates the decomposition of time series into
trend, seasonal, and remainder components with methods for
detecting and characterizing abrupt changes within the trend
and seasonal components. BFAST can be used to analyze different
types of satellite image time series and can be applied to
other disciplines dealing with seasonal or non-seasonal time
series, such as hydrology, climatology, and econometrics. The
algorithm can be extended to label detected changes with
information on the parameters of the fitted piecewise linear
models. BFAST monitoring functionality is added based on a
paper that has been submitted to Remote Sensing of Environment.
BFAST monitor provides functionality to detect disturbance in
near real-time based on BFAST-type models.
Author: Jan Verbesselt [aut, cre], Achim Zeileis [aut], Rob Hyndman
[ctb], Rogier De Jong [ctb]
Maintainer: Jan Verbesselt
bfast-1.2-1/bfast/man/bfast-package.rd |only
bfast-1.4.3/bfast/DESCRIPTION | 32 +-
bfast-1.4.3/bfast/MD5 |only
bfast-1.4.3/bfast/NAMESPACE | 10
bfast-1.4.3/bfast/NEWS |only
bfast-1.4.3/bfast/R/bfast.R | 290 +++++++++++++-------------
bfast-1.4.3/bfast/R/bfastmonitor.R |only
bfast-1.4.3/bfast/R/bfastpp.R |only
bfast-1.4.3/bfast/R/bfastts.R |only
bfast-1.4.3/bfast/R/create16dayts.R |only
bfast-1.4.3/bfast/R/history_break.R |only
bfast-1.4.3/bfast/R/history_roc.R |only
bfast-1.4.3/bfast/R/plot.bfast.R | 148 ++++++-------
bfast-1.4.3/bfast/R/plot.bfastmonitor.R |only
bfast-1.4.3/bfast/R/print.bfastmonitor.R |only
bfast-1.4.3/bfast/R/seasonal.R | 107 +++++++--
bfast-1.4.3/bfast/data/harvest.rda |binary
bfast-1.4.3/bfast/data/simts.rda |binary
bfast-1.4.3/bfast/data/som.rda |only
bfast-1.4.3/bfast/data/somaliarasterbrick.rda |only
bfast-1.4.3/bfast/inst/CITATION | 36 ++-
bfast-1.4.3/bfast/man/bfast-package.Rd |only
bfast-1.4.3/bfast/man/bfast.Rd | 240 +++++++++++----------
bfast-1.4.3/bfast/man/bfastmonitor.Rd |only
bfast-1.4.3/bfast/man/bfastpp.Rd |only
bfast-1.4.3/bfast/man/bfastts.Rd |only
bfast-1.4.3/bfast/man/create16dayts.Rd |only
bfast-1.4.3/bfast/man/dates.Rd |only
bfast-1.4.3/bfast/man/harvest.Rd | 53 ++--
bfast-1.4.3/bfast/man/modisraster.Rd |only
bfast-1.4.3/bfast/man/plot.bfast.Rd | 103 ++++-----
bfast-1.4.3/bfast/man/simts.Rd | 53 ++--
bfast-1.4.3/bfast/man/som.Rd |only
33 files changed, 596 insertions(+), 476 deletions(-)
Title: Relative survival
Diff between relsurv versions 1.6.4 dated 2011-06-02 and 1.6-5 dated 2012-02-17
Description: Various functions for relative survival analysis.
Author: Maja Pohar Perme [aut, cre]
Maintainer: Maja Pohar Perme
DESCRIPTION | 14 ++++++---
MD5 |only
NAMESPACE |only
R/Rcode.r | 80 +++++++++++++++++++++++++++++++--------------------------
data/rdata.rda |binary
man/rssurv.Rd | 10 ++++---
6 files changed, 60 insertions(+), 44 deletions(-)
Title: Multivariate Process Capability Indices (MPCI)
Diff between MPCI versions 1.0.2 dated 2012-01-14 and 1.0.3 dated 2012-02-17
Description: MPCI package performs the followings Multivariate Process
Capability Indices: Shahriari et al. (1995) Multivariate
Capability Vector, Taam et al. (1993) Multivariate Capability
Index (MCpm) and the followings based on Principal Component
Analysis (PCA):Wang and Chen (1998), Xekalaki and Perakis
(2002) and Wang (2005). Moreover, include two datasets.
Author: Edgar Santos Fernandez, Michele Scagliarini.
Maintainer: Edgar Santos Fernandez
DESCRIPTION | 9
MD5 | 12
NAMESPACE | 1
R/mpci.R | 969 +++++++++++++---------------------------------------
man/MPCI-package.Rd | 2
man/dataset1.Rd | 10
man/dataset2.Rd | 7
7 files changed, 259 insertions(+), 751 deletions(-)
Title: A S3 class for vectors of 64bit integers
Diff between bit64 versions 0.8-2 dated 2012-01-27 and 0.8-3 dated 2012-02-17
Description: Package 'bit64' provides serializable S3 atomic 64bit
(signed) integers that can be used in vectors, matrices, arrays
and data.frames. Methods are available for coercion from and to
logicals, integers, doubles, characters as well as many
elementwise and summary functions. With 'integer64' vectors
you can store very large integers at the expense of 64 bits,
which is by factor 7 better than 'int64' from package 'int64'.
Due to the smaller memory footprint, the atomic vector
architecture and using only S3 instead of S4 classes, most
operations are one to three orders of magnitude faster: Example
speedups are 4x for serialization, 250x for adding, 900x for
coercion and 2000x for object creation. Also 'integer64' avoids
an ongoing (potentially infinite) penalty for garbage
collection observed during existence of 'int64' objects (see
code in example section). Last but not least, this package has
no commercial copyright attached, it is not sponsored by any
commercial company or otherwise influenced by commercial
interests. Its mix of high-level R code with low-level C-code
protects against misuse outside the GPLed R context.
Author: Jens Oehlschlägel
Maintainer: Jens Oehlschlägel
ANNOUNCEMENT-0.8.txt | 6 +-----
DESCRIPTION | 14 +++++++-------
MD5 | 6 +++---
src/integer64.c | 4 ++--
4 files changed, 13 insertions(+), 17 deletions(-)
Title: Generate high-resolution Venn and Euler plots
Diff between VennDiagram versions 1.1.1 dated 2011-11-03 and 1.1.3 dated 2012-02-17
Description: A set of functions to generate high-resolution Venn and
Euler plots. Includes handling for several special cases,
including two-case scaling, and extensive customization of plot
shape and structure.
Author: Hanbo Chen
Maintainer: Paul Boutros
DESCRIPTION | 13 +++++----
MD5 | 6 ++--
R/venn.diagram.R | 6 ++++
man/venn.diagram.Rd | 75 ++++++++++++++++++++++++++++++----------------------
4 files changed, 61 insertions(+), 39 deletions(-)
Title: A Suite of Convergence Acceleration Schemes for EM and MM
algorithms
Diff between turboEM versions 2011.9-1 dated 2011-12-19 and 2012.2-1 dated 2012-02-17
Description: Algorithms for accelerating the convergence of slow,
monotone sequences from smooth, contraction mapping such as the
EM and MM algorithms. It can be used to accelerate any smooth,
linearly convergent acceleration scheme. A tutorial style
introduction to this package is available in a vignette on the
CRAN download page or, when the package is loaded in an R
session, with vignette("turboEM").
Author: Jennifer F. Bobb, Hui Zhao, and Ravi Varadhan.
Maintainer: Ravi Varadhan
turboEM-2011.9-1/turboEM/R/turbosimClassMethods.R |only
turboEM-2011.9-1/turboEM/man/turbosim.Rd |only
turboEM-2012.2-1/turboEM/DESCRIPTION | 18
turboEM-2012.2-1/turboEM/LICENSE | 2
turboEM-2012.2-1/turboEM/MD5 | 36 +
turboEM-2012.2-1/turboEM/NAMESPACE | 5
turboEM-2012.2-1/turboEM/NEWS | 11
turboEM-2012.2-1/turboEM/R/turboClassMethods.R | 5
turboEM-2012.2-1/turboEM/R/turboSim.R |only
turboEM-2012.2-1/turboEM/R/turboem.R | 220 +++++++---
turboEM-2012.2-1/turboEM/R/turbosimMethods.R |only
turboEM-2012.2-1/turboEM/data |only
turboEM-2012.2-1/turboEM/inst/doc/turboEM.Rnw | 441 ++++++++++++----------
turboEM-2012.2-1/turboEM/inst/doc/turboEM.pdf |binary
turboEM-2012.2-1/turboEM/man/implants.Rd |only
turboEM-2012.2-1/turboEM/man/internal.Rd | 1
turboEM-2012.2-1/turboEM/man/parties.Rd |only
turboEM-2012.2-1/turboEM/man/psychfactors.Rd |only
turboEM-2012.2-1/turboEM/man/rats.Rd |only
turboEM-2012.2-1/turboEM/man/turboSim.Rd |only
turboEM-2012.2-1/turboEM/man/turboem.Rd | 96 ++--
turboEM-2012.2-1/turboEM/man/turbosimMethods.Rd |only
turboEM-2012.2-1/turboEM/man/votes.Rd |only
23 files changed, 498 insertions(+), 337 deletions(-)
Title: Seamless R and C++ Integration
Diff between Rcpp versions 0.9.9 dated 2011-12-27 and 0.9.10 dated 2012-02-17
Description: The Rcpp package provides R functions as well as a C++
library which facilitate the integration of R and C++.
R data types (SEXP) are matched to C++ objects in a class hierarchy.
All R types are supported (vectors, functions, environment, etc
...) and each type is mapped to a dedicated class. For
example, numeric vectors are represented as instances of the
Rcpp::NumericVector class, environments are represented as
instances of Rcpp::Environment, functions are represented as
Rcpp::Function, etc ... The "Rcpp-introduction" vignette
provides a good entry point to Rcpp.
Conversion from C++ to R and back is driven by the templates Rcpp::wrap
and Rcpp::as which are highly flexible and extensible, as
documented in the "Rcpp-extending" vignette.
Rcpp also provides Rcpp modules, a framework that allows exposing C++
functions and classes to the R level. The "Rcpp-modules"
vignette details the current set of features of Rcpp-modules.
Rcpp includes a concept called Rcpp sugar that brings many R functions
into C++. Sugar takes advantage of lazy evaluation and
expression templates to achieve great performance while
exposing a syntax that is much nicer to use than the equivalent
low-level loop code. The "Rcpp-sugar" vignette gives an
overview of the feature.
Several examples are included, and more than 750 unit tests in over 330
unit test functions provide additional usage examples.
An earlier version of Rcpp, containing what we now call the 'classic
Rcpp API' was written during 2005 and 2006 by Dominick Samperi.
This code has been factored out of Rcpp into the package
RcppClassic, and it is still available for code relying on the
older interface. New development should use alwayse use this
Rcpp package instead.
Author: Dirk Eddelbuettel and Romain Francois, with contributions by
Douglas Bates and John Chambers
Maintainer: Dirk Eddelbuettel and Romain Francois
Rcpp-0.9.10/Rcpp/.Rinstignore |only
Rcpp-0.9.10/Rcpp/ChangeLog | 63 +
Rcpp-0.9.10/Rcpp/DESCRIPTION | 79 +-
Rcpp-0.9.10/Rcpp/MD5 | 73 +-
Rcpp-0.9.10/Rcpp/R/exceptions.R | 78 +-
Rcpp-0.9.10/Rcpp/R/tools.R | 28
Rcpp-0.9.10/Rcpp/inst/NEWS | 19
Rcpp-0.9.10/Rcpp/inst/THANKS | 1
Rcpp-0.9.10/Rcpp/inst/doc/Rcpp-FAQ.pdf |binary
Rcpp-0.9.10/Rcpp/inst/doc/Rcpp-FAQ/Rcpp-FAQ.Rnw | 23
Rcpp-0.9.10/Rcpp/inst/doc/Rcpp-extending.pdf |binary
Rcpp-0.9.10/Rcpp/inst/doc/Rcpp-introduction.Rnw | 2
Rcpp-0.9.10/Rcpp/inst/doc/Rcpp-introduction.pdf |binary
Rcpp-0.9.10/Rcpp/inst/doc/Rcpp-modules.pdf |binary
Rcpp-0.9.10/Rcpp/inst/doc/Rcpp-package.pdf |binary
Rcpp-0.9.10/Rcpp/inst/doc/Rcpp-quickref.pdf |binary
Rcpp-0.9.10/Rcpp/inst/doc/Rcpp-sugar.pdf |binary
Rcpp-0.9.10/Rcpp/inst/doc/Rcpp-unitTests.pdf |binary
Rcpp-0.9.10/Rcpp/inst/doc/Rcpp.bib | 2
Rcpp-0.9.10/Rcpp/inst/doc/unitTests-results/Rcpp-unitTests.html | 6
Rcpp-0.9.10/Rcpp/inst/doc/unitTests-results/Rcpp-unitTests.txt | 56 -
Rcpp-0.9.10/Rcpp/inst/include/Rcpp.h | 6
Rcpp-0.9.10/Rcpp/inst/include/Rcpp/Extractor.h | 33 -
Rcpp-0.9.10/Rcpp/inst/include/Rcpp/config.h | 4
Rcpp-0.9.10/Rcpp/inst/include/Rcpp/iostream/Rostream.h | 4
Rcpp-0.9.10/Rcpp/inst/include/Rcpp/sugar/functions/diff.h | 22
Rcpp-0.9.10/Rcpp/inst/include/Rcpp/sugar/functions/functions.h | 3
Rcpp-0.9.10/Rcpp/inst/include/Rcpp/sugar/functions/mapply |only
Rcpp-0.9.10/Rcpp/inst/include/Rcpp/sugar/functions/mapply.h |only
Rcpp-0.9.10/Rcpp/inst/include/Rcpp/traits/result_of.h | 7
Rcpp-0.9.10/Rcpp/inst/include/Rcpp/vector/Vector.h | 7
Rcpp-0.9.10/Rcpp/inst/include/RcppCommon.h | 6
Rcpp-0.9.10/Rcpp/inst/unitTests/runit.Module.client.package.R | 5
Rcpp-0.9.10/Rcpp/inst/unitTests/runit.Vector.R | 317 +++++-----
Rcpp-0.9.10/Rcpp/inst/unitTests/runit.sugar.R | 16
Rcpp-0.9.10/Rcpp/src/Evaluator.cpp | 48 -
Rcpp-0.9.10/Rcpp/src/S4.cpp | 18
Rcpp-0.9.10/Rcpp/src/cache.cpp | 1
Rcpp-0.9.9/Rcpp/inst/doc/RJournal.sty |only
Rcpp-0.9.9/Rcpp/inst/doc/jss.bst |only
40 files changed, 549 insertions(+), 378 deletions(-)
Title: Rcmdr Graphical POINT of view for questionnaire data Plug-In
Diff between RcmdrPlugin.pointG versions 0.1 dated 2011-12-03 and 0.2.1 dated 2012-02-17
More information about RcmdrPlugin.pointG at CRAN
Description: This package provides an Rcmdr "plug-in" to analyze
questionnaire data.
Author: Stephane Champely
Maintainer: Stephane Champely
RcmdrPlugin.pointG-0.1/RcmdrPlugin.pointG/NAMESPACE.txt |only
RcmdrPlugin.pointG-0.1/RcmdrPlugin.pointG/R/bbisummarize0.R |only
RcmdrPlugin.pointG-0.1/RcmdrPlugin.pointG/R/bbivariate0.R |only
RcmdrPlugin.pointG-0.1/RcmdrPlugin.pointG/R/pplotLikert0.R |only
RcmdrPlugin.pointG-0.2.1/RcmdrPlugin.pointG/DESCRIPTION | 11 ++-
RcmdrPlugin.pointG-0.2.1/RcmdrPlugin.pointG/MD5 | 28 +++++-----
RcmdrPlugin.pointG-0.2.1/RcmdrPlugin.pointG/NAMESPACE |only
RcmdrPlugin.pointG-0.2.1/RcmdrPlugin.pointG/R/Yule1.R |only
RcmdrPlugin.pointG-0.2.1/RcmdrPlugin.pointG/R/Yule2.R |only
RcmdrPlugin.pointG-0.2.1/RcmdrPlugin.pointG/R/Yule3.R |only
RcmdrPlugin.pointG-0.2.1/RcmdrPlugin.pointG/R/Yule4.R |only
RcmdrPlugin.pointG-0.2.1/RcmdrPlugin.pointG/R/bbbisummarize0.R |only
RcmdrPlugin.pointG-0.2.1/RcmdrPlugin.pointG/R/bbbivariate0.R |only
RcmdrPlugin.pointG-0.2.1/RcmdrPlugin.pointG/R/chalandise.DEP0.R | 4 -
RcmdrPlugin.pointG-0.2.1/RcmdrPlugin.pointG/R/plotLikert0.R | 2
RcmdrPlugin.pointG-0.2.1/RcmdrPlugin.pointG/R/ppplotLikert0.R |only
RcmdrPlugin.pointG-0.2.1/RcmdrPlugin.pointG/R/univariate0.R | 2
RcmdrPlugin.pointG-0.2.1/RcmdrPlugin.pointG/inst/doc/ModeEmploi_pointG_0.1.pdf |binary
RcmdrPlugin.pointG-0.2.1/RcmdrPlugin.pointG/inst/etc/menus.txt | 6 +-
RcmdrPlugin.pointG-0.2.1/RcmdrPlugin.pointG/man/RcmdrPlugin.pointG-internal.Rd | 10 ++-
RcmdrPlugin.pointG-0.2.1/RcmdrPlugin.pointG/man/RcmdrPlugin.pointG-package.Rd | 4 -
21 files changed, 38 insertions(+), 29 deletions(-)
Permanent link
Title: R Commander
Diff between Rcmdr versions 1.8-1 dated 2011-12-27 and 1.8-3 dated 2012-02-17
Description: A platform-independent basic-statistics GUI (graphical
user interface) for R, based on the tcltk package.
Author: John Fox [aut, cre], Liviu Andronic [ctb], Michael Ash [ctb],
Milan Bouchet-Valat [ctb], Theophilius Boye [ctb], Stefano
Calza [ctb], Andy Chang [ctb], Philippe Grosjean [ctb], Richard
Heiberger [ctb], Kosar Karimi Pour [ctb], G. Jay Kerns [ctb],
Renaud Lancelot [ctb], Matthieu Lesnoff [ctb], Uwe Ligges
[ctb], Samir Messad [ctb], Martin Maechler [ctb], Robert
Muenchen [ctb], Duncan Murdoch [ctb], Erich Neuwirth [ctb], Dan
Putler [ctb], Brian Ripley [ctb], Miroslav Ristic [ctb], Peter
Wolf [ctb]
Maintainer: John Fox
DESCRIPTION | 48
MD5 | 66
NEWS | 28
R/cluster.R | 377 -
R/commander.R | 220
R/data-menu.R | 695 --
R/distributions-menu.R | 900 +--
R/distributions-plotDistributions-menu.R | 366 -
R/distributions-sample.R | 260
R/file-menu.R | 516 -
R/graphs-menu.R | 1443 ----
R/model-menu.R | 635 --
R/startup.R | 226
R/statistics-dimensional-menu.R | 177
R/statistics-means-menu.R | 272
R/statistics-models-menu.R | 72
R/statistics-nonparametric-menu.R | 157
R/statistics-proportions-menu.R | 111
R/statistics-summaries-menu.R | 363 -
R/statistics-tables-menu.R | 131
R/statistics-variances-menu.R | 164
R/utilities.R | 1162 +---
inst/doc/Empezando-con-Rcmdr-es.pdf |binary
inst/doc/Getting-Started-with-the-Rcmdr-ja.pdf |binary
inst/doc/Getting-Started-with-the-Rcmdr.pdf |binary
inst/po/ko/LC_MESSAGES/R-Rcmdr.mo |binary
inst/po/sl/LC_MESSAGES/R-Rcmdr.mo |binary
man/Commander.Rd | 23
man/Rcmdr-package.Rd | 8
man/Rcmdr.Utilities.Rd | 4
po/R-Rcmdr.pot | 9
po/R-ko.po | 7251 ++++++++++++-------------
po/R-sl.po | 1260 ++--
po/R-sl_utf-8.po | 1493 +++--
34 files changed, 7839 insertions(+), 10598 deletions(-)
Title: Logic Regression
Diff between LogicReg versions 1.4.12 dated 2012-02-14 and 1.4.13 dated 2012-02-17
Description: Routines for Logic Regression
Author: Charles Kooperberg
Maintainer: Charles Kooperberg
DESCRIPTION | 8 +++----
MD5 | 6 ++---
man/logreg.Rd | 60 +++++++++++++++++++++++++++++-----------------------------
src/slogic.f | 9 ++++++++
4 files changed, 46 insertions(+), 37 deletions(-)
Title: Forecasting functions for time series
Diff between forecast versions 3.17 dated 2012-02-02 and 3.18 dated 2012-02-17
Description: Methods and tools for displaying and analysing univariate
time series forecasts including exponential smoothing via state
space models and automatic ARIMA modelling.
Author: Rob J Hyndman
Maintainer: Rob J Hyndman
ChangeLog | 10 ++
DESCRIPTION | 8 -
MD5 | 48 +++++-----
R/arfima.R | 10 +-
R/arima.R | 10 +-
R/bats.R | 29 +++---
R/checkAdmissibility.R | 7 -
R/dshw.r | 61 ++++++-------
R/ets.R | 4
R/etsforecast.R | 6 -
R/fitBATS.R | 8 +
R/fitTBATS.R | 8 +
R/forecast.R | 212 +++++++++++++++++++++++++---------------------
R/forecast2.R | 24 ++---
R/guerrero.R | 2
R/lm.R | 8 +
R/season.R | 45 ++++++---
R/simulate.R | 16 +--
R/spline.R | 18 +--
R/subset.R | 2
R/tbats.R | 59 ++++++------
man/forecast.stl.Rd | 9 +
man/forecastplot.Rd | 3
src/calcBATS.cpp | 59 ------------
src/makeTBATSMatrices.cpp | 27 -----
25 files changed, 336 insertions(+), 357 deletions(-)