Title: Retrieve Oklahoma Mesonet climatological data
Diff between okmesonet versions 0.1.2 dated 2012-05-02 and 0.1.3 dated 2012-05-21
Description: okmesonet retrieves and summarizes Oklahoma (USA) Mesonet
climatological data provided by the Oklahoma Climatological
Survey. Measurements are recorded every five minutes at
approximately 120 stations throughout Oklahoma and are
available in near real-time.
Author: Brady Allred, Torre Hovick, Samuel Fuhlendorf
Maintainer: Brady Allred
DESCRIPTION | 8 ++---
MD5 | 16 +++++------
NEWS | 8 +++++
R/okmts.R | 70 ++++++++++++++++++++++------------------------------
R/totalprecip.R | 4 +-
R/updatestn.R | 8 +++++
data/okstations.rda |binary
man/okmts.Rd | 3 --
man/updatestn.Rd | 6 ++++
9 files changed, 66 insertions(+), 57 deletions(-)
Title: Rcpp integration for Armadillo templated linear algebra library
Diff between RcppArmadillo versions 0.3.0.3 dated 2012-05-04 and 0.3.2.0 dated 2012-05-21
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 3.2.0). 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
ChangeLog | 20
DESCRIPTION | 10
MD5 | 191 ++--
inst/NEWS | 34
inst/include/RcppArmadillo/Mat_meat.h | 6
inst/include/armadillo | 15
inst/include/armadillo_bits/Base_bones.hpp | 29
inst/include/armadillo_bits/Base_meat.hpp | 46 +
inst/include/armadillo_bits/Col_bones.hpp | 29
inst/include/armadillo_bits/Col_meat.hpp | 196 +---
inst/include/armadillo_bits/Cube_bones.hpp | 4
inst/include/armadillo_bits/Cube_meat.hpp | 38
inst/include/armadillo_bits/Gen_bones.hpp | 17
inst/include/armadillo_bits/Gen_meat.hpp | 76 -
inst/include/armadillo_bits/Mat_bones.hpp | 53 -
inst/include/armadillo_bits/Mat_meat.hpp | 482 ++++-------
inst/include/armadillo_bits/Proxy.hpp | 288 ++++++
inst/include/armadillo_bits/Row_bones.hpp | 30
inst/include/armadillo_bits/Row_meat.hpp | 198 +---
inst/include/armadillo_bits/arma_version.hpp | 6
inst/include/armadillo_bits/auxlib_bones.hpp | 27
inst/include/armadillo_bits/auxlib_meat.hpp | 535 +++++++-----
inst/include/armadillo_bits/config.hpp | 71 -
inst/include/armadillo_bits/debug.hpp | 4
inst/include/armadillo_bits/diagmat_proxy.hpp | 348 ++++++--
inst/include/armadillo_bits/diagview_bones.hpp | 12
inst/include/armadillo_bits/diagview_meat.hpp | 408 ++++++---
inst/include/armadillo_bits/diskio_bones.hpp | 7
inst/include/armadillo_bits/diskio_meat.hpp | 157 +++
inst/include/armadillo_bits/eGlue_bones.hpp | 4
inst/include/armadillo_bits/eGlue_meat.hpp | 16
inst/include/armadillo_bits/eOp_bones.hpp | 4
inst/include/armadillo_bits/eOp_meat.hpp | 4
inst/include/armadillo_bits/eglue_core_bones.hpp | 41
inst/include/armadillo_bits/eglue_core_meat.hpp | 62 -
inst/include/armadillo_bits/eop_core_meat.hpp | 91 +-
inst/include/armadillo_bits/field_meat.hpp | 11
inst/include/armadillo_bits/fn_accu.hpp | 10
inst/include/armadillo_bits/fn_cumsum.hpp | 42 -
inst/include/armadillo_bits/fn_det.hpp | 12
inst/include/armadillo_bits/fn_eig.hpp | 30
inst/include/armadillo_bits/fn_log_det.hpp | 4
inst/include/armadillo_bits/fn_max.hpp | 70 -
inst/include/armadillo_bits/fn_mean.hpp | 72 -
inst/include/armadillo_bits/fn_median.hpp | 34
inst/include/armadillo_bits/fn_min.hpp | 70 -
inst/include/armadillo_bits/fn_norm.hpp | 22
inst/include/armadillo_bits/fn_princomp.hpp | 32
inst/include/armadillo_bits/fn_prod.hpp | 69 -
inst/include/armadillo_bits/fn_rank.hpp | 8
inst/include/armadillo_bits/fn_sort_index.hpp | 15
inst/include/armadillo_bits/fn_stddev.hpp | 36
inst/include/armadillo_bits/fn_strans.hpp | 48 -
inst/include/armadillo_bits/fn_sum.hpp | 80 -
inst/include/armadillo_bits/fn_trace.hpp | 4
inst/include/armadillo_bits/fn_trans.hpp | 40
inst/include/armadillo_bits/fn_unique.hpp |only
inst/include/armadillo_bits/fn_var.hpp | 36
inst/include/armadillo_bits/forward_bones.hpp | 7
inst/include/armadillo_bits/glue_mixed_meat.hpp | 159 ++-
inst/include/armadillo_bits/glue_relational_meat.hpp | 4
inst/include/armadillo_bits/glue_solve_bones.hpp | 2
inst/include/armadillo_bits/glue_solve_meat.hpp | 17
inst/include/armadillo_bits/glue_times_meat.hpp | 7
inst/include/armadillo_bits/lapack_bones.hpp | 33
inst/include/armadillo_bits/lapack_wrapper.hpp | 65 +
inst/include/armadillo_bits/op_cumsum_meat.hpp | 12
inst/include/armadillo_bits/op_diagmat_meat.hpp | 109 +-
inst/include/armadillo_bits/op_dot_meat.hpp | 46 -
inst/include/armadillo_bits/op_hist_meat.hpp | 4
inst/include/armadillo_bits/op_htrans_bones.hpp | 48 -
inst/include/armadillo_bits/op_htrans_meat.hpp | 368 ++++++++
inst/include/armadillo_bits/op_princomp_bones.hpp | 104 +-
inst/include/armadillo_bits/op_princomp_meat.hpp | 136 ++-
inst/include/armadillo_bits/op_relational_meat.hpp | 8
inst/include/armadillo_bits/op_reshape_meat.hpp | 54 -
inst/include/armadillo_bits/op_shuffle_meat.hpp | 36
inst/include/armadillo_bits/op_sort_meat.hpp | 8
inst/include/armadillo_bits/op_stddev_meat.hpp | 8
inst/include/armadillo_bits/op_strans_bones.hpp | 40
inst/include/armadillo_bits/op_strans_meat.hpp | 530 +++++++++++-
inst/include/armadillo_bits/op_sum_bones.hpp | 6
inst/include/armadillo_bits/op_sum_meat.hpp | 7
inst/include/armadillo_bits/op_symmat_meat.hpp | 16
inst/include/armadillo_bits/op_trimat_bones.hpp | 4
inst/include/armadillo_bits/op_trimat_meat.hpp | 10
inst/include/armadillo_bits/op_unique_bones.hpp |only
inst/include/armadillo_bits/op_unique_meat.hpp |only
inst/include/armadillo_bits/op_var_meat.hpp | 8
inst/include/armadillo_bits/operator_times.hpp | 2
inst/include/armadillo_bits/podarray_bones.hpp | 10
inst/include/armadillo_bits/podarray_meat.hpp | 115 +-
inst/include/armadillo_bits/running_stat_meat.hpp | 2
inst/include/armadillo_bits/subview_bones.hpp | 10
inst/include/armadillo_bits/subview_elem1_meat.hpp | 162 +--
inst/include/armadillo_bits/subview_meat.hpp | 784 +++++++++----------
inst/include/armadillo_bits/traits.hpp | 19
inst/include/armadillo_bits/unwrap.hpp | 727 ++++++++++++-----
98 files changed, 4958 insertions(+), 3033 deletions(-)
Title: Permutation Distribution Clustering
Diff between pdc versions 0.2 dated 2012-04-23 and 0.3 dated 2012-05-21
Description: Permutation Distribution Clustering is a clustering method
for time series. Dissimilarity of time series is formalized as
the divergence between their permutation distributions. The
permutation distribution was proposed as measure of the
complexity of a time series.
Author: Andreas M. Brandmaier
Maintainer: Andreas M. Brandmaier
pdc-0.2/pdc/R/codeword2.R |only
pdc-0.2/pdc/R/codeword3.R |only
pdc-0.2/pdc/R/codeword4.R |only
pdc-0.2/pdc/R/codeword5.R |only
pdc-0.2/pdc/R/codeword6.R |only
pdc-0.2/pdc/R/codeword7.R |only
pdc-0.3/pdc/ChangeLog | 4 ++
pdc-0.3/pdc/DESCRIPTION | 8 ++--
pdc-0.3/pdc/MD5 | 41 +++++++++++++-----------
pdc-0.3/pdc/NAMESPACE | 2 +
pdc-0.3/pdc/R/codebook.R | 43 ++++++++++++++++----------
pdc-0.3/pdc/R/convert.matrix.R | 15 ++++-----
pdc-0.3/pdc/R/convert.matrix.multichannel.R |only
pdc-0.3/pdc/R/divergencematrix.multichannel.R |only
pdc-0.3/pdc/R/entropy.heuristic.R | 6 +++
pdc-0.3/pdc/R/pdc.dist.R | 29 +++++++++++++++--
pdc-0.3/pdc/R/pdclust.R | 1
pdc-0.3/pdc/R/plot.mine.R | 16 +++++++--
pdc-0.3/pdc/R/plot.pdclust.R | 10 ++++--
pdc-0.3/pdc/man/codebook.Rd | 4 +-
pdc-0.3/pdc/man/entropy.heuristic.Rd | 12 +++++++
pdc-0.3/pdc/man/pdclust.Rd | 18 +++++++---
pdc-0.3/pdc/src |only
23 files changed, 147 insertions(+), 62 deletions(-)
Title: Generalized Nonlinear Models
Diff between gnm versions 1.0-1 dated 2011-03-01 and 1.0-2 dated 2012-05-21
Description: Functions to specify and fit generalized nonlinear models,
including models with multiplicative interaction terms such as
the UNIDIFF model from sociology and the AMMI model from crop
science, and many others. Over-parameterized representations
of models are used throughout; functions are provided for
inference on estimable parameter combinations, as well as
standard methods for diagnostics etc.
Author: Heather Turner and David Firth
Maintainer: Heather Turner
gnm-1.0-1/gnm/examples |only
gnm-1.0-1/gnm/inst/doc/.Rhistory |only
gnm-1.0-1/gnm/inst/doc/.directory |only
gnm-1.0-1/gnm/inst/doc/fig-Effect_plots.pdf |only
gnm-1.0-1/gnm/inst/doc/fig-LCall.pdf |only
gnm-1.0-1/gnm/inst/doc/fig-LCover45.pdf |only
gnm-1.0-1/gnm/inst/doc/fig-LCqvplot.pdf |only
gnm-1.0-1/gnm/inst/doc/fig-deaths1921-1940.pdf |only
gnm-1.0-1/gnm/inst/doc/fig-profilePlot.pdf |only
gnm-1.0-1/gnm/inst/doc/gnm.bib |only
gnm-1.0-1/gnm/tests/bwt.R.orig |only
gnm-1.0-2/gnm/DESCRIPTION | 8 +--
gnm-1.0-2/gnm/MD5 |only
gnm-1.0-2/gnm/R/gnmFit.R | 16 +++++-
gnm-1.0-2/gnm/R/gnmTerms.R | 6 +-
gnm-1.0-2/gnm/R/gnmTools.R | 58 +++++++++++++++----------
gnm-1.0-2/gnm/R/predict.gnm.R | 2
gnm-1.0-2/gnm/R/print.meanResiduals.R | 2
gnm-1.0-2/gnm/R/print.summary.gnm.R | 4 -
gnm-1.0-2/gnm/R/summary.meanResiduals.R | 4 -
gnm-1.0-2/gnm/R/update.gnm.R | 22 ++++++---
gnm-1.0-2/gnm/data/House2001.csv.gz |binary
gnm-1.0-2/gnm/data/House2001.rda |binary
gnm-1.0-2/gnm/data/backPain.rda |binary
gnm-1.0-2/gnm/data/barley.rda |binary
gnm-1.0-2/gnm/data/barleyHeights.rda |binary
gnm-1.0-2/gnm/data/cautres.rda |binary
gnm-1.0-2/gnm/data/erikson.rda |binary
gnm-1.0-2/gnm/data/friend.rda |binary
gnm-1.0-2/gnm/data/mentalHealth.rda |binary
gnm-1.0-2/gnm/data/voting.rda |binary
gnm-1.0-2/gnm/data/voting.txt.gz |binary
gnm-1.0-2/gnm/data/wheat.rda |binary
gnm-1.0-2/gnm/data/wheat.txt.gz |binary
gnm-1.0-2/gnm/data/yaish.rda |binary
gnm-1.0-2/gnm/inst/NEWS | 38 ++++++++++++++++
gnm-1.0-2/gnm/inst/doc/gnmOverview.pdf |binary
gnm-1.0-2/gnm/man/gnm-package.Rd | 4 -
gnm-1.0-2/gnm/man/nonlin.function.Rd | 3 -
gnm-1.0-2/gnm/tests/logexcess.Rout.save | 8 ++-
gnm-1.0-2/gnm/tests/logistic.Rout.save | 10 +++-
gnm-1.0-2/gnm/tests/nls.Rout.save | 10 +++-
gnm-1.0-2/gnm/vignettes |only
43 files changed, 141 insertions(+), 54 deletions(-)
Title: FastICA Algorithms to perform ICA and Projection Pursuit
Diff between fastICA versions 1.1-15 dated 2012-05-17 and 1.1-16 dated 2012-05-21
Description: Implementation of FastICA algorithm to perform Independent
Component Analysis (ICA) and Projection Pursuit.
Author: J L Marchini
Maintainer: Brian Ripley
DESCRIPTION | 8 ++++----
MD5 | 4 ++--
R/fastICA.R | 2 +-
3 files changed, 7 insertions(+), 7 deletions(-)
Title: Categorical Data
Diff between catdata versions 1.0 dated 2012-02-03 and 1.1 dated 2012-05-21
Description: This R-package contains examples from the book "Regression
for Categorical Data", Tutz 2011, Cambridge University Press.
The names of the examples refer to the chapter and the data set
that is used.
Author: Gerhard Tutz, Gunther Schauberger
Maintainer: Gunther Schauberger
DESCRIPTION | 9
MD5 | 200 +++++++++---------
inst/doc/altbin-teratology.Rnw | 6
inst/doc/altbin-teratology.pdf |binary
inst/doc/binary-unemployment.pdf |binary
inst/doc/binary-vaso.pdf |binary
inst/doc/count-children.Rnw | 19 +
inst/doc/count-children.pdf |binary
inst/doc/count-encephalitis.Rnw | 5
inst/doc/count-encephalitis.pdf |binary
inst/doc/count-insolvency.Rnw | 2
inst/doc/count-insolvency.pdf |binary
inst/doc/count-medcare.Rnw | 23 +-
inst/doc/count-medcare.pdf |binary
inst/doc/loglinear-birth.Rnw | 24 +-
inst/doc/loglinear-birth.pdf |binary
inst/doc/loglinear-leukoplakia.Rnw | 6
inst/doc/loglinear-leukoplakia.pdf |binary
inst/doc/modbin-dust.Rnw | 6
inst/doc/modbin-dust.pdf |binary
inst/doc/modbin-foodstamp.pdf |binary
inst/doc/modbin-unemployment1.Rnw | 15 -
inst/doc/modbin-unemployment1.pdf |binary
inst/doc/modbin-unemployment2.Rnw | 19 +
inst/doc/modbin-unemployment2.pdf |binary
inst/doc/multinomial-addiction1.Rnw | 25 +-
inst/doc/multinomial-addiction1.pdf |binary
inst/doc/multinomial-addiction2.Rnw | 6
inst/doc/multinomial-addiction2.pdf |binary
inst/doc/multinomial-party1.Rnw | 18 +
inst/doc/multinomial-party1.pdf |binary
inst/doc/multinomial-party2.Rnw | 24 +-
inst/doc/multinomial-party2.pdf |binary
inst/doc/multinomial-travel.Rnw | 17 +
inst/doc/multinomial-travel.pdf |binary
inst/doc/multivariate-birth1.Rnw | 7
inst/doc/multivariate-birth1.pdf |binary
inst/doc/multivariate-birth2.Rnw | 19 +
inst/doc/multivariate-birth2.pdf |binary
inst/doc/multivariate-knee.Rnw | 2
inst/doc/multivariate-knee.pdf |binary
inst/doc/ordinal-arthritis.Rnw | 11 -
inst/doc/ordinal-arthritis.pdf |binary
inst/doc/ordinal-knee1.Rnw | 11 -
inst/doc/ordinal-knee1.pdf |binary
inst/doc/ordinal-knee2.Rnw | 26 +-
inst/doc/ordinal-knee2.pdf |binary
inst/doc/ordinal-retinopathy1.Rnw | 4
inst/doc/ordinal-retinopathy1.pdf |binary
inst/doc/ordinal-retinopathy2.Rnw | 17 +
inst/doc/ordinal-retinopathy2.pdf |binary
inst/doc/prediction-medcare.Rnw | 55 +++--
inst/doc/prediction-medcare.pdf |binary
inst/doc/random-aids.Rnw | 8
inst/doc/random-aids.pdf |binary
inst/doc/random-betablocker.Rnw | 34 +--
inst/doc/random-betablocker.pdf |binary
inst/doc/random-knee1.pdf |binary
inst/doc/random-knee2.Rnw | 14 -
inst/doc/random-knee2.pdf |binary
inst/doc/random-knee3.Rnw | 17 -
inst/doc/random-knee3.pdf |binary
inst/doc/regsel-heartdisease1.Rnw | 157 ++++----------
inst/doc/regsel-heartdisease1.pdf |binary
inst/doc/regsel-heartdisease2.Rnw | 82 +------
inst/doc/regsel-heartdisease2.pdf |binary
inst/doc/regsel-heartdisease3.Rnw | 83 ++-----
inst/doc/regsel-heartdisease3.pdf |binary
inst/doc/regsel-heartdisease4.Rnw | 49 +---
inst/doc/regsel-heartdisease4.pdf |binary
inst/doc/regsel-heartdisease5.Rnw | 56 +----
inst/doc/regsel-heartdisease5.pdf |binary
inst/doc/regsel-heartdisease6.Rnw | 106 +++-------
inst/doc/regsel-heartdisease6.pdf |binary
inst/doc/semiparametric-addiction.Rnw | 26 +-
inst/doc/semiparametric-addiction.pdf |binary
inst/doc/semiparametric-children.Rnw | 5
inst/doc/semiparametric-children.pdf |binary
inst/doc/semiparametric-dust.Rnw | 8
inst/doc/semiparametric-dust.pdf |binary
inst/doc/semiparametric-unemployment.Rnw | 14 -
inst/doc/semiparametric-unemployment.pdf |binary
inst/doc/tree-dust.Rnw | 11 -
inst/doc/tree-dust.pdf |binary
inst/doc/tree-unemployment.Rnw | 10
inst/doc/tree-unemployment.pdf |binary
man/addiction.Rd | 7
man/aids.Rd | 2
man/birth.Rd | 39 +--
man/catdata-package.Rd | 328 ++++++++++++++++---------------
man/children.Rd | 3
man/deathpenalty.Rd | 2
man/dust.Rd | 2
man/encephalitis.Rd | 2
man/heart.Rd | 5
man/knee.Rd | 2
man/medcare.Rd | 3
man/reader.Rd | 7
man/teratology2.Rd | 3
man/unemployment.Rd | 6
man/vaso.Rd | 1
101 files changed, 831 insertions(+), 837 deletions(-)
Title: Sparse grid integration in R
Diff between SparseGrid versions 0.8.0 dated 2011-12-15 and 0.8.1 dated 2012-05-21
Description: SparseGrid is a package to create sparse grids for
numerical integration, based on code from www.sparse-grids.de
Author: Jelmer Ypma
Maintainer: Jelmer Ypma
CHANGELOG |only
DESCRIPTION | 13 ++++-----
MD5 | 14 +++++----
R/createIntegrationGrid.R | 4 +-
R/createProductRuleGrid.R | 51 ++++++++++++++++++++++-------------
R/createSparseGrid.R | 60 ++++++++++++++++++++++++++----------------
inst/doc/SparseGrid.pdf |binary
inst/tests/KPN_demo.R |only
inst/tests/demo_userdefined.R | 8 ++---
9 files changed, 91 insertions(+), 59 deletions(-)
Title: Full feature implementation of hash/associated
arrays/dictionaries
Description: This package implements a data structure similar to hashes
in Perl and dictionaries in Python but with a purposefully R
flavor. For objects of appreciable size, access using hashes
outperforms native named lists and vectors.
Author: Christopher Brown
Maintainer: ORPHANED
Diff between hash versions 2.1.0.2 dated 2012-04-20 and 2.2.3 dated 2012-05-21
hash-2.1.0.2/hash/.R.Rout |only hash-2.2.3/hash/ChangeLog | 5 +++++ hash-2.2.3/hash/DESCRIPTION | 17 +++++++++++------ hash-2.2.3/hash/MD5 | 16 ++++++++-------- hash-2.2.3/hash/R/zzz.R | 3 +-- hash-2.2.3/hash/man/copy.Rd | 7 +++++++ hash-2.2.3/hash/man/hash-accessors.Rd | 2 +- hash-2.2.3/hash/man/hash-package.Rd | 16 ++++------------ hash-2.2.3/hash/man/hash.Rd | 2 +- hash-2.2.3/hash/man/keys.Rd | 2 +- 10 files changed, 39 insertions(+), 31 deletions(-)
Title: Functional time series analysis
Diff between ftsa versions 3.1 dated 2012-02-01 and 3.2 dated 2012-05-21
Description: Functions for functional time series
Author: Rob J Hyndman and Han Lin Shang
Maintainer: Han Lin Shang
ftsa-3.1/ftsa/R/quantile.R |only
ftsa-3.1/ftsa/R/sd.R |only
ftsa-3.1/ftsa/R/sd.default.R |only
ftsa-3.1/ftsa/R/var.R |only
ftsa-3.1/ftsa/R/var.default.R |only
ftsa-3.1/ftsa/man/sd.Rd |only
ftsa-3.1/ftsa/man/var.Rd |only
ftsa-3.2/ftsa/CHANGELOG | 4 ++++
ftsa-3.2/ftsa/DESCRIPTION | 10 +++++-----
ftsa-3.2/ftsa/MD5 | 27 ++++++++++-----------------
ftsa-3.2/ftsa/NAMESPACE | 10 ++++------
ftsa-3.2/ftsa/R/MISE.r | 14 +++++++-------
ftsa-3.2/ftsa/R/forecast.ftsm.R | 30 +++++++++++++++---------------
ftsa-3.2/ftsa/R/forecast.ftsm2.R | 26 +++++++++++++-------------
ftsa-3.2/ftsa/R/ftsm.R | 16 ++++++++--------
ftsa-3.2/ftsa/R/plot.fmres.R | 2 +-
ftsa-3.2/ftsa/man/sd.fts.Rd | 10 +++++-----
ftsa-3.2/ftsa/man/var.fts.Rd | 10 +++++-----
18 files changed, 77 insertions(+), 82 deletions(-)
Title: Utilities and kinship information for Behavior Genetics and
Developmental research using the NLSY.
Diff between NlsyLinks versions 1.0 dated 2012-04-27 and 1.003 dated 2012-05-21
Description: Utilities and kinship information for Behavioral Genetics
and Developmental research using the NLSY.
Author: Will Beasley, Joe Rodgers, David Bard, and Kelly Meredith
Maintainer: Will Beasley
DESCRIPTION | 8 +--
MD5 | 22 +++++-----
NEWS | 13 ++++++
data/Links79Pair.rda |binary
data/Links79PairExpanded.rda |binary
inst/doc/Faq.Rnw |only
inst/doc/Faq.pdf |only
inst/doc/NlsyAce.pdf |binary
inst/tests/AceDFFixture.R | 72 +++++++++++++++++-----------------
inst/tests/AceLavaanGroupFixture.R | 17 ++++----
inst/tests/AcePreparationFixture.R | 56 +++++++++++++-------------
inst/tests/CreatePairDatasetFixture.R | 4 -
man/NlsyLinks-package.Rd | 4 -
13 files changed, 108 insertions(+), 88 deletions(-)
Title: Statistical Analysis and Data Display: Heiberger and Holland
Diff between HH versions 2.2-23 dated 2011-12-24 and 2.3-15 dated 2012-05-21
Description: Support software for Statistical Analysis and Data Display
(Springer, ISBN 0-387-40270-5). This contemporary presentation
of statistical methods features extensive use of graphical
displays for exploring data and for displaying the analysis.
The authors demonstrate how to analyze data---showing code,
graphics, and accompanying computer listings---for all the
methods they cover. They emphasize how to construct and
interpret graphs, discuss principles of graphical design, and
show how accompanying traditional tabular results are used to
confirm the visual impressions derived directly from the
graphs. Many of the graphical formats are novel and appear here
for the first time in print. All chapters have exercises.
Author: Richard M. Heiberger
Maintainer: Richard M. Heiberger
HH-2.2-23/HH/data/Design_2.8_2_full.rda |only
HH-2.2-23/HH/data/aedotplot.rda |only
HH-2.2-23/HH/data/rhiz1_alfalfa.rda |only
HH-2.2-23/HH/data/rhiz3_clover.rda |only
HH-2.3-15/HH/.Data |only
HH-2.3-15/HH/DESCRIPTION | 30
HH-2.3-15/HH/MD5 | 453 +++++++---
HH-2.3-15/HH/NAMESPACE | 90 +-
HH-2.3-15/HH/R/ARIMA-trellis.s | 28
HH-2.3-15/HH/R/F.curve.R | 4
HH-2.3-15/HH/R/HH_regsubsets.R | 12
HH-2.3-15/HH/R/ResizeEtc.R | 21
HH-2.3-15/HH/R/ae.dotplot.R | 2
HH-2.3-15/HH/R/anova.mean.R | 5
HH-2.3-15/HH/R/aov.sufficient.R | 16
HH-2.3-15/HH/R/as.likert.R | 108 +-
HH-2.3-15/HH/R/as.matrix.listOfMatrices.R | 41
HH-2.3-15/HH/R/barchart.hh.R |only
HH-2.3-15/HH/R/chisq.curve.R | 4
HH-2.3-15/HH/R/combineTwoColumns.R | 56 +
HH-2.3-15/HH/R/extra.r | 42
HH-2.3-15/HH/R/glht.mmc.R | 156 ++-
HH-2.3-15/HH/R/glht.new.R |only
HH-2.3-15/HH/R/histogram.hh.R |only
HH-2.3-15/HH/R/interaction2wt.R | 2
HH-2.3-15/HH/R/intxplot.s | 4
HH-2.3-15/HH/R/ladder.R | 18
HH-2.3-15/HH/R/likert.R | 509 +++++++----
HH-2.3-15/HH/R/likertColor.R |only
HH-2.3-15/HH/R/lm.case.R | 89 +-
HH-2.3-15/HH/R/mcp.993.R |only
HH-2.3-15/HH/R/multicomp.mean.R | 4
HH-2.3-15/HH/R/multicomp.mmc.R | 2
HH-2.3-15/HH/R/norm.curve.R | 30
HH-2.3-15/HH/R/odds.ratio.R | 14
HH-2.3-15/HH/R/panel.axis.right.R | 139 +++
HH-2.3-15/HH/R/panel.dotplott.R |only
HH-2.3-15/HH/R/panel.interaction2wt.R | 4
HH-2.3-15/HH/R/persp.hh.R | 40
HH-2.3-15/HH/R/plot.hov.R | 18
HH-2.3-15/HH/R/plot.mmc.multicomp.R | 16
HH-2.3-15/HH/R/plot.multicomp.R | 33
HH-2.3-15/HH/R/print.TwoTrellisColumns.R |only
HH-2.3-15/HH/R/pyramidLikert.R | 110 +-
HH-2.3-15/HH/R/regr2.plot.R | 8
HH-2.3-15/HH/R/residual.plots.s | 27
HH-2.3-15/HH/R/t.trellis.R | 20
HH-2.3-15/HH/R/trellisPieces.R |only
HH-2.3-15/HH/R/zzz.R | 17
HH-2.3-15/HH/data/R282.rda |only
HH-2.3-15/HH/data/aeanonym.rda |only
HH-2.3-15/HH/data/apple.rda |binary
HH-2.3-15/HH/data/batch.rda |binary
HH-2.3-15/HH/data/blyth.rda |binary
HH-2.3-15/HH/data/budworm.rda |binary
HH-2.3-15/HH/data/cc135.rda |binary
HH-2.3-15/HH/data/cc176.rda |binary
HH-2.3-15/HH/data/circuit.rda |binary
HH-2.3-15/HH/data/crash.rda |binary
HH-2.3-15/HH/data/display.rda |binary
HH-2.3-15/HH/data/employM16.rda |binary
HH-2.3-15/HH/data/feed.rda |binary
HH-2.3-15/HH/data/gunload.rda |binary
HH-2.3-15/HH/data/lymph.rda |binary
HH-2.3-15/HH/data/maiz.rda |binary
HH-2.3-15/HH/data/plasma.rda |binary
HH-2.3-15/HH/data/pulmonary.rda |binary
HH-2.3-15/HH/data/pulse.rda |binary
HH-2.3-15/HH/data/rhiz.alfalfa.rda |only
HH-2.3-15/HH/data/rhiz.clover.rda |only
HH-2.3-15/HH/data/testscore.rda |binary
HH-2.3-15/HH/data/tires.rda |binary
HH-2.3-15/HH/data/vulcan.rda |binary
HH-2.3-15/HH/data/weightloss.rda |binary
HH-2.3-15/HH/data/workstation.rda |binary
HH-2.3-15/HH/data/yatesppl.rda |binary
HH-2.3-15/HH/demo/MMC.WoodEnergy-aov.R | 14
HH-2.3-15/HH/demo/MMC.WoodEnergy.R | 6
HH-2.3-15/HH/demo/MMC.apple.R | 15
HH-2.3-15/HH/demo/MMC.catalystm.R | 10
HH-2.3-15/HH/demo/MMC.cc176.R | 12
HH-2.3-15/HH/demo/MMC.pulmonary.R | 47 -
HH-2.3-15/HH/demo/PoorChildren.r | 239 ++---
HH-2.3-15/HH/demo/arima.sim.XYZ.r | 45 -
HH-2.3-15/HH/demo/likert-paper.r | 161 ++-
HH-2.3-15/HH/demo/nottem.r | 8
HH-2.3-15/HH/demo/tsamstat.r | 76 -
HH-2.3-15/HH/demo/tsq.r | 18
HH-2.3-15/HH/inst/HH.Data |only
HH-2.3-15/HH/inst/data_setup/differences.rt |only
HH-2.3-15/HH/inst/data_setup/interaction2wt-new.R | 2
HH-2.3-15/HH/inst/data_setup/njgolf-read.r | 6
HH-2.3-15/HH/inst/data_setup/readHHdata.R | 526 +++++++++--
HH-2.3-15/HH/inst/scripts |only
HH-2.3-15/HH/man/HH-defunct.Rd |only
HH-2.3-15/HH/man/HH.package.Rd | 4
HH-2.3-15/HH/man/HH_regsubsets.Rd | 26
HH-2.3-15/HH/man/ResizeEtc.Rd | 26
HH-2.3-15/HH/man/ResizeEtc.likertPlot.Rd |only
HH-2.3-15/HH/man/X.residuals.Rd | 6
HH-2.3-15/HH/man/ae.dotplot.Rd | 6
HH-2.3-15/HH/man/ancova.Rd | 8
HH-2.3-15/HH/man/anova.mean.Rd | 25
HH-2.3-15/HH/man/aov.sufficient.Rd | 65 -
HH-2.3-15/HH/man/as.likert.Rd | 35
HH-2.3-15/HH/man/as.matrix.listOfMatrices.Rd | 16
HH-2.3-15/HH/man/as.multicomp.Rd | 16
HH-2.3-15/HH/man/combineTwoColumns.Rd | 19
HH-2.3-15/HH/man/cp.Rd | 8
HH-2.3-15/HH/man/datasets.Rd | 6
HH-2.3-15/HH/man/emptyMainLeftAxisLeftStripBottomLegend.Rd | 16
HH-2.3-15/HH/man/extra.Rd | 11
HH-2.3-15/HH/man/glht.mcp.993.Rd |only
HH-2.3-15/HH/man/hh.Rd | 4
HH-2.3-15/HH/man/hov.Rd | 9
HH-2.3-15/HH/man/interaction2wt.Rd | 5
HH-2.3-15/HH/man/intxplot.Rd | 9
HH-2.3-15/HH/man/ladder.Rd | 83 -
HH-2.3-15/HH/man/likert.Rd | 577 ++++++++-----
HH-2.3-15/HH/man/likertColor.Rd |only
HH-2.3-15/HH/man/lm.case.Rd | 36
HH-2.3-15/HH/man/lmatRows.Rd | 6
HH-2.3-15/HH/man/mmc.Rd | 160 +--
HH-2.3-15/HH/man/mmc.mean.Rd | 18
HH-2.3-15/HH/man/multicomp.order.Rd | 11
HH-2.3-15/HH/man/norm.curve.Rd | 38
HH-2.3-15/HH/man/odds.ratio.Rd | 34
HH-2.3-15/HH/man/panel.axis.right.Rd | 25
HH-2.3-15/HH/man/panel.cartesian.Rd | 17
HH-2.3-15/HH/man/persp.plane.Rd | 25
HH-2.3-15/HH/man/plot.hov.Rd | 32
HH-2.3-15/HH/man/plot.mmc.multicomp.Rd | 14
HH-2.3-15/HH/man/plot.multicomp.Rd | 56 -
HH-2.3-15/HH/man/print.TwoTrellisColumns.Rd |only
HH-2.3-15/HH/man/pyramidLikert.Rd | 72 +
HH-2.3-15/HH/man/regr1.plot.Rd | 2
HH-2.3-15/HH/man/regr2.plot.Rd | 2
HH-2.3-15/HH/man/resid.squares.Rd | 3
HH-2.3-15/HH/man/seqplot.forecast.Rd | 19
HH-2.3-15/HH/man/tsdiagplot.Rd | 3
HH-2.3-15/HH/man/vif.Rd | 6
141 files changed, 3145 insertions(+), 1771 deletions(-)
Previous versions (as known to CRANberries) which should be available via the Archive link are:
2010-07-26 1.2
2009-05-25 1.1
2009-03-27 1.0