Title: R/Weka interface
Diff between RWeka versions 0.3-25 dated 2010-01-18 and 0.4-1 dated 2010-01-20
Description: An R interface to Weka (Version 3.7.1). Weka is a
collection of machine learning algorithms for data mining tasks
written in Java, containing tools for data pre-processing,
classification, regression, clustering, association rules, and
visualization. Both the R interface and Weka itself are
contained in the RWeka package. For more information on Weka
see http://www.cs.waikato.ac.nz/~ml/weka/.
Author: Kurt Hornik, with contributions from Christian Buchta, Torsten
Hothorn, Alexandros Karatzoglou, David Meyer, and Achim Zeileis
Maintainer: Kurt Hornik
CHANGELOG | 7 +++++++
DESCRIPTION | 10 +++++-----
R/readers.R | 17 +++++++++++------
inst/java/RWeka.jar |binary
inst/java/weka.jar |binary
java/RWekaInterfaces.class |binary
java/RWekaInterfaces.java | 15 ++++++++++-----
7 files changed, 33 insertions(+), 16 deletions(-)
Title: Show certain type of comments from function bodies as
"live-help"
Diff between halp versions 0.1.2 dated 2010-01-18 and 0.1.3 dated 2010-01-20
Description: Show certain type of comments from function bodies as
"live-help"
Author: Daniel Haase
Maintainer: Daniel Haase
CHANGELOG | 5 +++++
DESCRIPTION | 8 ++++----
R/halp.R | 26 +++++++++++++++-----------
man/halp.options.Rd | 2 +-
4 files changed, 25 insertions(+), 16 deletions(-)
Title: Efficient selection of undirected graphical models for
high-dimensional datasets
Diff between gRapHD versions 0.1.4 dated 2010-01-19 and 0.1.5 dated 2010-01-20
Description: gRapHD is designed for efficient selection of
high-dimensional undirected graphical models. The package
provides tools for selecting trees, forests and decomposable
models minimizing information criteria such as AIC or BIC, and
for displaying the independence graphs of the models. It has
also some useful tools for analysing graphical structures. It
supports the use of discrete, continuous, or both types of
variables.
Author: Gabriel Coelho Goncalves de Abreu
Maintainer: Gabriel Coelho Goncalves de Abreu
DESCRIPTION | 6 +++---
inst/doc/index.html | 2 +-
2 files changed, 4 insertions(+), 4 deletions(-)
Title: memory-efficient storage of large data on disk and fast access
functions
Diff between ff versions 2.1-1 dated 2009-11-05 and 2.1-2 dated 2010-01-20
Description: The ff package provides data structures that are stored on
disk but behave (almost) as if they were in RAM by
transparently mapping only a section (pagesize) in main memory
- the effective virtual memory consumption per ff object. ff
supports R's standard atomic data types 'double', 'logical',
'raw' and 'integer' and non-standard atomic types boolean (1
bit), quad (2 bit unsigned), nibble (4 bit unsigned), byte (1
byte signed with NAs), ubyte (1 byte unsigned), short (2 byte
signed with NAs), ushort (2 byte unsigned), single (4 byte
float with NAs). For example 'quad' allows efficient storage of
genomic data as an 'A','T','G','C' factor. The unsigned types
support 'circular' arithmetic. There is also support for
close-to-atomic types 'factor', 'ordered', 'POSIXct', 'Date'
and custom close-to-atomic types. ff not only has native
C-support for vectors, matrices and arrays with flexible
dimorder (major column-order, major row-order and
generalizations for arrays). There is also a ffdf class not
unlike data.frames and import/export filters for csv files. ff
objects store raw data in binary flat files in native encoding,
and complement this with metadata stored in R as physical and
virtual attributes. ff objects have well-defined hybrid copying
semantics, which gives rise to certain performance improvements
through virtualization. ff objects can be stored and reopened
across R sessions. ff files can be shared by multiple ff R
objects (using different data en/de-coding schemes) in the same
process or from multiple R processes to exploit parallelism. A
wide choice of finalizer options allows to work with
'permanent' files as well as creating/removing 'temporary' ff
files completely transparent to the user. On certain
OS/Filesystem combinations, creating the ff files works without
notable delay thanks to using sparse file allocation. Several
access optimization techniques such as Hybrid Index
Preprocessing and Virtualization are implemented to achieve
good performance even with large datasets, for example virtual
matrix transpose without touching a single byte on disk.
Further, to reduce disk I/O, 'logicals' and non-standard data
types get stored native and compact on binary flat files i.e.
logicals take up exactly 2 bits to represent TRUE, FALSE and
NA. Beyond basic access functions, the ff package also provides
compatibility functions that facilitate writing code for ff and
ram objects and support for batch processing on ff objects
(e.g. as.ram, as.ff, ffapply). ff interfaces closely with
functionality from package 'bit': chunked looping, fast bit
operations and coercions between different objects that can
store subscript information ('bit', 'bitwhich', ff 'boolean',
ri range index, hi hybrid index). This allows to work
interactively with selections of large datasets and quickly
modify selection criteria. Further high-performance
enhancements can be made available upon request.
Author: Daniel Adler
Maintainer: Jens Oehlschl\xE4gel
ANNOUNCEMENT-2.1.2.txt |only
DESCRIPTION | 10 -
NAMESPACE | 14 ++
NEWS | 76 ++++++++++++
R/ff.R | 121 +++++++++----------
R/ffbit.R | 87 ++++++++++++--
R/ffcsv.R | 93 ++++++++++++---
R/ffdf.R | 132 ++++++++++++++-------
R/ffsave.R |only
R/hi.R | 47 +++++--
R/zzz.R | 57 +++++----
configure | 167 +++++++++++++++++++++++++--
configure.ac | 1
man/LimWarn.rd | 2
man/as.ffdf.rd | 5
man/as.hi.rd | 15 +-
man/chunk.bit.rd |only
man/chunk.ffdf.rd | 13 +-
man/ff.rd | 2
man/ffdrop.rd |only
man/ffinfo.rd |only
man/ffload.rd |only
man/ffsave.rd |only
man/getset.ff.rd | 10 -
man/read.table.ffdf.rd | 40 +++++-
man/write.table.ffdf.rd | 6
src/FSInfo_statfs.cpp | 12 +
src/MMapFileMapping.cpp | 11 +
src/ac_config.h.in | 3
src/r_ff.c | 8 +
src/r_ff_addgetset.h | 126 +++++++++++---------
src/r_ff_methoddeclaration.h | 119 +++++++++++++++++++
src/r_ff_methodswitch.h | 263 +++++++++++++++++++++++++++++++++++++++++--
33 files changed, 1157 insertions(+), 283 deletions(-)
Title: A class for vectors of 1-bit booleans
Diff between bit versions 1.1-2 dated 2009-10-26 and 1.1-3 dated 2010-01-20
Description: bitmapped vectors of booleans (no NAs), coercion from and
to logicals, integers and integer subscripts; fast boolean
operators and fast summary statistics. With 'bit' vectors you
can store true binary booleans {FALSE,TRUE} at the expense of 1
bit only, on a 32 bit architecture this means factor 32 less
RAM and ~ factor 32 more speed on boolean operations. Due to
overhead of R calls, actual speed gain depends on the size of
the vector: expect gains for vectors of size > 10000 elements.
Even for one-time boolean operations it can pay-off to convert
to bit, the pay-off is obvious, when such components are used
more than once. Reading from and writing to bit is
approximately as fast as accessing standard logicals - mostly
due to R's time for memory allocation. The package allows to
work with pre-allocated memory for return values by calling
.Call() directly: when evaluating the speed of C-access with
pre-allocated vector memory, coping from bit to logical
requires only 70% of the time for copying from logical to
logical; and copying from logical to bit comes at a performance
penalty of 150%. the package now contains further classes for
representing logical selections: 'bitwhich' for very skewed
selections and 'ri' for selecting ranges of values for chunked
processing. All three index classes can be used for subsetting
'ff' objects (ff-2.1-0 and higher).
Author: Jens Oehlschl\xE4gel
Maintainer: Jens Oehlschl\xE4gel
DESCRIPTION | 44 +++++++++++------------
R/bit.R | 6 +++
R/chunkutil.R | 99 ++++++++++++++++++++++++++++++++++++++++++++++++-----
man/bit-package.rd | 2 +
man/chunk.rd | 6 ++-
5 files changed, 126 insertions(+), 31 deletions(-)
Title: Basic Non-Compartmental Pharmacokinetics
Diff between PK versions 1.01 dated 2009-04-30 and 1.2-0 dated 2010-01-20
Description: Estimation of pharmacokinetic parameters using
non-compartmental theory
Author: Thomas Jaki
Maintainer: Thomas Jaki
PK-1.01/PK/R/auc.batch.ci.R |only
PK-1.01/PK/R/auc.ci.R |only
PK-1.01/PK/R/auc.complete.ci.R |only
PK-1.01/PK/R/auc.ssd.ci.R |only
PK-1.01/PK/R/auc.test.R |only
PK-1.01/PK/R/eqv.ci.R |only
PK-1.01/PK/R/eqv.ssd.ci.R |only
PK-1.01/PK/R/plot.halflife.R |only
PK-1.01/PK/R/print.PK.R |only
PK-1.01/PK/R/ptest.ssd.R |only
PK-1.01/PK/man/auc.batch.Rd |only
PK-1.01/PK/man/auc.ci.Rd |only
PK-1.01/PK/man/auc.complete.ci.Rd |only
PK-1.01/PK/man/auc.ssd.Rd |only
PK-1.01/PK/man/auc.test.Rd |only
PK-1.01/PK/man/ptest.ssd.Rd |only
PK-1.2-0/PK/DESCRIPTION | 13 +
PK-1.2-0/PK/NAMESPACE |only
PK-1.2-0/PK/R/all.class.R |only
PK-1.2-0/PK/R/auc.R | 16 +-
PK-1.2-0/PK/R/auc.batch.R | 233 +++++++++++++++++++++++++++-------
PK-1.2-0/PK/R/auc.complete.R | 100 +++-----------
PK-1.2-0/PK/R/auc.ssd.R | 169 +++++++++++++++++++------
PK-1.2-0/PK/R/eqv.R |only
PK-1.2-0/PK/R/eqv.batch.R |only
PK-1.2-0/PK/R/eqv.complete.R |only
PK-1.2-0/PK/R/eqv.ssd.R |only
PK-1.2-0/PK/R/extractors.R |only
PK-1.2-0/PK/R/internal.R |only
PK-1.2-0/PK/R/nca.R |only
PK-1.2-0/PK/R/nca.ssd.R |only
PK-1.2-0/PK/data |only
PK-1.2-0/PK/inst |only
PK-1.2-0/PK/man/CPI975.Rd |only
PK-1.2-0/PK/man/Glucose.Rd |only
PK-1.2-0/PK/man/PKNews.Rd |only
PK-1.2-0/PK/man/Rats.Rd |only
PK-1.2-0/PK/man/all.class.Rd |only
PK-1.2-0/PK/man/auc.Rd | 254 ++++++++++++++++++++++++++++++--------
PK-1.2-0/PK/man/auc.complete.Rd | 154 ++++++++++++++++-------
PK-1.2-0/PK/man/biexp.Rd | 55 +++++++-
PK-1.2-0/PK/man/ci.Rd |only
PK-1.2-0/PK/man/eqv.Rd |only
PK-1.2-0/PK/man/eqv.batch.Rd |only
PK-1.2-0/PK/man/eqv.complete.Rd |only
PK-1.2-0/PK/man/eqv.ssd.Rd | 85 ++++++------
PK-1.2-0/PK/man/estimator.Rd |only
PK-1.2-0/PK/man/lee.Rd | 19 +-
PK-1.2-0/PK/man/nca.Rd |only
PK-1.2-0/PK/man/plot.halflife.Rd | 4
PK-1.2-0/PK/man/test.Rd |only
51 files changed, 773 insertions(+), 329 deletions(-)
Title: Standard Backtests for Technical Trading Rules in Financial Data
Diff between ttrTests versions 1.3 dated 2010-01-01 and 1.4 dated 2010-01-20
Description: Four core functions evaluate the efficacy of a technical
trading rule. - Conditional return statistics - Bootstrap
resampling statistics - Reality Check for data snooping bias
among parameter choices - Robustness, or Persistence, of
parameter choices
Author: David St John
Maintainer: David St John
DESCRIPTION | 15 ++++++++-------
R/bootstrap.R | 1 -
R/nullModel.R | 2 +-
R/paramPersist.R | 25 ++++++++++++++++++-------
R/paramStats.R | 8 ++++----
man/bootstrap.Rd | 2 +-
man/cReturns.Rd | 2 +-
man/dataSnoop.Rd | 2 +-
man/defaults.Rd | 2 +-
man/deleteNA.Rd | 2 +-
man/generateSample.Rd | 2 +-
man/indicator.Rd | 2 +-
man/macd4.Rd | 2 +-
man/nullModel.Rd | 2 +-
man/paramPersist.Rd | 5 +++--
man/paramStats.Rd | 2 +-
man/position.Rd | 2 +-
man/returnStats.Rd | 2 +-
man/subperiods.Rd | 2 +-
man/ttrTests-package.Rd | 10 ++++++----
20 files changed, 53 insertions(+), 39 deletions(-)
Title: analysis of complex survey samples
Diff between survey versions 3.18 dated 2009-09-22 and 3.19 dated 2010-01-20
Description: Summary statistics, generalised linear models, cumulative
link models, Cox models, loglinear models, and general maximum
pseudolikelihood estimation for multistage stratified,
cluster-sampled, unequally weighted survey samples. Variances
by Taylor series linearisation or replicate weights.
Post-stratification, calibration, and raking. Two-phase
subsampling designs. Graphics. Predictive margins by direct
standardization. PPS sampling without replacement.
Author: Thomas Lumley
Maintainer: Thomas Lumley
DESCRIPTION | 6 -
NAMESPACE | 88 +++++++++++++----------
R/DBI.R | 174 +++++++++++++++++++++++++++++++++++++++++------
R/dbiupdate.R | 30 ++++++--
R/greg.R | 12 ++-
R/odbc.R | 3
R/olr.R | 14 +++
R/regtest.R | 2
R/stratsample.R |only
R/survey.R | 51 +++++++++++--
R/surveyrep.R | 10 +-
R/twophase.R | 2
THANKS | 3
inst/CITATION | 4 -
inst/COPYING | 2
inst/NEWS | 26 +++++++
inst/api.db |binary
inst/doc/domain.pdf |binary
inst/doc/epi.pdf |binary
inst/doc/phase1.pdf |binary
inst/doc/pps.pdf |binary
inst/doc/survey.pdf |binary
man/calibrate.Rd | 9 +-
man/open.DBIsvydesign.Rd | 7 +
man/surveysummary.Rd | 15 +++-
man/svrepdesign.Rd | 61 +++++++++++++++-
man/svydesign.Rd | 2
man/svyglm.Rd | 6 +
man/svyquantile.Rd | 51 +++++++------
man/twophase.Rd | 30 +++++---
tests/DBIcheck.R | 16 +++-
tests/DBIcheck.Rout.save | 38 +++++++++-
32 files changed, 529 insertions(+), 133 deletions(-)
Title: Nearest-neighbour tools for clustering
Diff between nnclust versions 2.1 dated 2009-09-22 and 2.2 dated 2010-01-20
Description: Finds nearest neighours and the minimum spanning tree for
large data sets, does clustering using the minimum spanning
tree.
Author: Thomas Lumley
Maintainer: Thomas Lumley
DESCRIPTION | 6 ++---
NAMESPACE | 2 -
R/mst.R | 4 +--
R/nncluster.R | 66 +++++++++++++++++++++++++++++--------------------------
data |only
inst/doc/mst.pdf |binary
man/nncluster.Rd | 15 ++++++++++--
man/pollen.Rd |only
8 files changed, 54 insertions(+), 39 deletions(-)
Title: statistical methods for analysing multivariate abundance data
Diff between mvabund versions 0.1-6 dated 2010-01-14 and 0.1-7 dated 2010-01-20
Description: A set of tools for displaying, modeling and analysing
multivariate abundance data in community ecology. See
mvabund-package.Rd for details of overall package organization.
The package is implemented with the Gnu Scientific Library
(http://www.gnu.org/software/gsl/) and Rcpp
(http://dirk.eddelbuettel.com/code/rcpp.html) R / C++ classes.
Author: Ulrike Naumann, Yi Wang and David Warton
Maintainer: Yi Wang
mvabund-0.1-6/mvabund/R/simu_lambda.R |only
mvabund-0.1-6/mvabund/data/permID.dat |only
mvabund-0.1-6/mvabund/data/scores.dat |only
mvabund-0.1-6/mvabund/inst |only
mvabund-0.1-6/mvabund/src/Makevars |only
mvabund-0.1-6/mvabund/src/mvRcpp.cpp |only
mvabund-0.1-6/mvabund/src/mvRcpp.h |only
mvabund-0.1-7/mvabund/DESCRIPTION | 17 +++-----
mvabund-0.1-7/mvabund/R/anova.manylm.R | 18 ++++----
mvabund-0.1-7/mvabund/R/manylm.R | 20 +++++----
mvabund-0.1-7/mvabund/R/print.anova.manylm.R | 4 +
mvabund-0.1-7/mvabund/R/print.summary.manylm.R | 4 +
mvabund-0.1-7/mvabund/R/summary.manylm.R | 21 +++++-----
mvabund-0.1-7/mvabund/cleanup | 13 +-----
mvabund-0.1-7/mvabund/configure |only
mvabund-0.1-7/mvabund/configure.ac | 49 ++++++++++++++++++++---
mvabund-0.1-7/mvabund/configure.win |only
mvabund-0.1-7/mvabund/src/Makevars.in |only
mvabund-0.1-7/mvabund/src/Makevars.win | 52 +------------------------
mvabund-0.1-7/mvabund/src/RtoAnovaCpp.cpp | 11 ++---
mvabund-0.1-7/mvabund/src/RtoSmryCpp.cpp | 11 ++---
mvabund-0.1-7/mvabund/src/anova.cpp | 7 ++-
mvabund-0.1-7/mvabund/src/calctest.cpp | 15 ++++++-
mvabund-0.1-7/mvabund/src/summary.cpp | 7 ++-
24 files changed, 137 insertions(+), 112 deletions(-)
Title: Multivariate ECDF-Based Models
Diff between mecdf versions 0.3.0 dated 2010-01-11 and 0.3.1 dated 2010-01-20
Description: Univariate and multivariate empirical cumulative
distribution functions (ECDFs), including both step functions
(true ECDFs) and continuous functions (via interpolation). Plus
special purpose functions for plotting univariate and bivariate
ECDFs.
Author: CHARLOTTE MAIA
Maintainer: Charlotte Maia
DESCRIPTION | 10 +++++-----
R/plotbcdf.r | 21 ++++++++++++++++++---
inst/doc/mecdf.pdf |binary
inst/doc/mecdf.rnw | 14 ++++++--------
4 files changed, 29 insertions(+), 16 deletions(-)
Title: Exact (Restricted) Likelihood Ratio tests for mixed and additive
models.
Diff between RLRsim versions 2.0-2 dated 2008-08-12 and 2.0-4 dated 2010-01-20
Description: Rapid, simulation-based exact (restricted) likelihood
ratio tests for testing the presence of variance
components/nonparametric terms for models fit with
nlme::lme(),lme4::lmer(), mgcv::gamm() and SemiPar:spm()
Author: Fabian Scheipl
Maintainer: Fabian Scheipl
DESCRIPTION | 28 +++--
R/RLRTSim.R | 261 ++++++++++++++++++++++++-------------------------
R/exactLRT.R | 8 +
R/exactRLRT.R | 128 +++++++++++-------------
R/extract.lmerDesign.R | 2
man/LRTSim.Rd | 8 -
man/exactLRT.Rd | 2
man/exactRLRT.Rd | 4
misc |only
src/RLRsim.cpp | 102 +++++++++++--------
10 files changed, 284 insertions(+), 259 deletions(-)
Title: Interface between GRASS 5.0 geographical information system and
R
Diff between GRASS versions 0.3-8 dated 2009-09-18 and 0.3-9 dated 2010-01-20
Description: Interface between GRASS 5.0 geographical information
system and R, based on starting R from within the GRASS
environment using values of environment variables set in the
GISRC file. Interface examples should be run outside GRASS,
others may be run within. Wrapper and helper functions are
provided for a range of R functions to match the interface
metadata structures.
Author: Roger Bivand
Maintainer: Roger Bivand
GRASS-0.3-8/GRASS/R/interp.new.G.R |only
GRASS-0.3-8/GRASS/R/krige.G.R |only
GRASS-0.3-8/GRASS/man/interp.new.G.Rd |only
GRASS-0.3-8/GRASS/man/krige.G.Rd |only
GRASS-0.3-9/GRASS/DESCRIPTION | 10 +++++-----
GRASS-0.3-9/GRASS/INDEX | 3 ---
GRASS-0.3-9/GRASS/inst/old_files |only
GRASS-0.3-9/GRASS/man/rast.get.Rd | 11 +++--------
GRASS-0.3-9/GRASS/man/rast.put.Rd | 13 ++++---------
GRASS-0.3-9/GRASS/src/Makevars.win | 2 +-
GRASS-0.3-9/GRASS/src/date.c | 2 +-
GRASS-0.3-9/GRASS/src/sites.c | 13 +++++++------
GRASS-0.3-9/GRASS/src/sitesput.c | 5 +++--
13 files changed, 24 insertions(+), 35 deletions(-)
Title: Fitting Single and Mixture of Generalised Lambda Distributions
(RS and FMKL) using Various Methods
Diff between GLDEX versions 1.0.3.4 dated 2009-11-09 and 1.0.4.1 dated 2010-01-20
Description: The fitting algorithms considered in this package have two
major objectives. One is to provide a smoothing device to fit
distributions to data using the weight and unweighted
discretised approach based on the bin width of the histogram.
The other is to provide a definitive fit to the data set using
the maximum likelihood and quantile matching estimation. Other
methods such as moment matching, starship method, L moment
matching are also provided. Diagnostics on goodness of fit can
be done via qqplots, KS-resample tests and comparing mean,
variance, skewness and kurtosis of the data with the fitted
distribution.
Author: Steve Su
Maintainer: Steve Su
DESCRIPTION | 21 +++++----
R/Lmoments.R |only
R/Lmoments_calc.R |only
R/fun.Lm.gt.2.fmkl.R |only
R/fun.Lm.gt.2.rs.R |only
R/fun.RMFMKL.lm.R |only
R/fun.RMFMKL.mm.R |only
R/fun.RMFMKL.qs.R |only
R/fun.RPRS.lm.R |only
R/fun.RPRS.mm.R |only
R/fun.RPRS.qs.R |only
R/fun.auto.bimodal.ml.R | 3 -
R/fun.auto.bimodal.pml.R | 3 -
R/fun.auto.bimodal.qs.R |only
R/fun.auto.mm.fmkl.R | 2
R/fun.auto.perc.rs.R | 5 +-
R/fun.bimodal.init.R | 2
R/fun.class.regime.bi.R | 2
R/fun.comp.moments.ml.2.R | 11 +++--
R/fun.comp.moments.ml.R | 14 ++++--
R/fun.data.fit.lm.R |only
R/fun.data.fit.mm.R |only
R/fun.data.fit.qs.R |only
R/fun.fit.gl.v.lm.R |only
R/fun.fit.gl.v.lma.R |only
R/fun.fit.gl.v2a.R | 2
R/fun.fit.gl.v2a.nw.R | 13 ++++--
R/fun.fit.gl.v2b.nw.R | 3 -
R/fun.fit.gl.v3.R | 2
R/fun.fit.gl.v4.R |only
R/fun.fit.gl.v4a.R |only
R/fun.fit.gl.v6.R |only
R/fun.fit.gl.v6a.R |only
R/fun.fmkl.mm.sol.R | 2
R/fun.fmkl.mm.sol.alt.R | 4 -
R/fun.lambda.percentile.R | 2
R/fun.lm.theo.gld.R |only
R/fun.moments.R | 10 +++-
R/fun.moments.r.R |only
R/fun.plot.fit.bm.R | 67 ++++++++++++++++---------------
R/fun.rs.perc.sol.R | 2
R/fun.rs.perc.sol.alt.R | 2
R/optim.fun.lm.R |only
R/optim.fun.qs.R |only
R/optim.fun6.R |only
R/optim.fun7.R |only
R/skewness.R | 3 -
R/starship.R | 7 ++-
R/t1lmoments.R |only
man/FMKLfittingandbasicfunctions.Rd | 1
man/GLDEX.package.Rd | 77 +++++++++++++++++++++++++++++-------
man/Lmoments.Rd |only
man/RSfittingandbasicfunctions.Rd | 1
man/fittingfunctions.Rd | 7 +++
man/fun.RMFMKL.hs.Rd | 2
man/fun.RMFMKL.hs.nw.Rd | 2
man/fun.RMFMKL.lm.Rd |only
man/fun.RMFMKL.ml.Rd | 5 +-
man/fun.RMFMKL.mm.Rd |only
man/fun.RMFMKL.qs.Rd |only
man/fun.RPRS.hs.Rd | 2
man/fun.RPRS.hs.nw.Rd | 2
man/fun.RPRS.lm.Rd |only
man/fun.RPRS.ml.Rd | 5 +-
man/fun.RPRS.mm.Rd |only
man/fun.RPRS.qs.Rd |only
man/fun.auto.bimodal.ml.Rd | 15 +++----
man/fun.auto.bimodal.pml.Rd | 13 ++----
man/fun.auto.bimodal.qs.Rd |only
man/fun.data.fit.hs.Rd | 2
man/fun.data.fit.hs.nw.Rd | 2
man/fun.data.fit.lm.Rd |only
man/fun.data.fit.ml.Rd | 9 ++--
man/fun.data.fit.mm.Rd |only
man/fun.data.fit.qs.Rd |only
man/fun.gen.qrn.Rd | 6 --
man/fun.lm.theo.gld.Rd |only
man/fun.moments.bimodal.Rd | 4 -
man/fun.moments.r.Rd |only
man/fun.theo.mv.gld.Rd | 4 -
man/optimisationfunctions.Rd | 4 +
man/t1lmoments.Rd |only
82 files changed, 220 insertions(+), 125 deletions(-)
Title: Converts dates between calendars
Diff between ConvCalendar versions 1.0 dated 2009-01-08 and 1.1 dated 2010-01-20
Description: Converts between the Date class and d/m/y for several
calendars, including Persian, Islamic, and Hebrew
Author: Bill J. Gray (www.projectpluto.com/calendar) and Thomas Lumley
Maintainer: Thomas Lumley
ConvCalendar-1.0/ConvCalendar/LICENCE |only
ConvCalendar-1.1/ConvCalendar/COPYRIGHTS |only
ConvCalendar-1.1/ConvCalendar/DESCRIPTION | 17 ++++++++++-------
ConvCalendar-1.1/ConvCalendar/NAMESPACE | 2 ++
ConvCalendar-1.1/ConvCalendar/NEWS |only
ConvCalendar-1.1/ConvCalendar/R/as.OtherDate.R | 3 +++
ConvCalendar-1.1/ConvCalendar/man/OtherDate.Rd | 12 +++++++++++-
7 files changed, 26 insertions(+), 8 deletions(-)