- This is an emergency release to keep the package on CRAN in case the scheduled archival of package 'pscl' happens.
-
a missing '@' symbol had caused roxygen to generate items for 'inheritParams' in the arguments section of a couple of Rd files.
-
fixed new warnings from the C++ compiler like ' RcppExports.cpp:528:18: warning: format string is not a string literal (potentially insecure) [-Wformat-security]'.
-
now import selectively from 'dplyr'. Also, see the 'todo' note in 'Countr-package.R'.
-
several documentation files had duplicated descriptions of some arguments.
-
changed several instances of
class(...) = "..."
to useinherits
. -
changed http://www.football-data.co.uk/englandm.php to https://www.football-data.co.uk to fix a NOTE from R check.
-
switched from travisci to github actions.
-
changed maintainer.
-
fixed a doi reference in DESCRIPTION to be in proper format.
- fixed wrong links in inst/doc/index.html.
-
consolidation after the refactoring of the repository.
-
created pkgdown website.
-
dealt with 'xtimes' problem on Windows (issue#1: the data frame returned by
optimx_2018-7.10
on Windows has a columnxtime
notxtimes
). -
a number of updates in connection of the forthcoming release of the JSS paper.
-
small adjustments before submission.
-
renamed 'Countr.R' to 'Countr-package.R'.
-
updated the main vignette with the accepted version of the JSS paper.
- now covariates for ancilliary parameters for the renewal regression model can
be specified as part of argument 'formula'. This uses the extended formulas
provided by package
Formula
. The syntax with argumentanc
remains available.
- dealt with warnigs from the compiler about unused variables (and a few others).
- When there is no precomputed bootstrap sample in the object,
se.coef.renewal()
now prints a slightly more informative message without raising a warning.
- fixed the url's in the references for the vignettes in REFERENCES.bib.
- bugs fixed in convolution methods.
- option added to rescale covariates (standardise, standardise_scale).
- new vignettes added + many examples with different datasets fitted.
- Bibtex entries for citation of the vignettes added to REFERENCES.bib.
- numerous small improvements throughout the package.
- new
type = "prob"
for residuals - changes inresiduals.renewal
,.objectiveFunction
andrenewal()
. Comments and asome examples are temporarily put in the documentation ofrenewal()
. - new argument 'log' for
.objectiveFunction()
. It is now passed on to probability computing functions to specify whether logged values are required whensumma = FALSE
.
- first changes on bitbucket.
- the call in the printout of renewal objects (and
summary()
) could be very wide (annoying in Sweave output), nowprint.renewal()
andprint.summary.renewal()
obey 'width' when possible (see helper function.deparseCall()
). - bugs corrected in
print.summary.renewal()
when failure to compute variance or residuals.
- fixed some bugs in printing methods.
- added a jss_paper vignette.
- merged changes done separately by T. and G. to Version 3.2.2.
- fixed some bugs introduced in 3.2.3.
- all count functions vectorized in c++.
- likelihood functions improved.
- minor bug fixed in
.checkInitialValues
in the anc parameters. - all bivariate functionalities removed.
- fertility dataset now exported with data().
- minor bugs fixed in
.objectiveFunction
and predict with std.error. - last location "/..." vectorial parameters returned.
- sign in the Frank Copula package changed to be more consistent with the intuitive results: theta <0 -> negative dependence.
- consolidated the documentation.
- first CRAN version.
- clean-up for CRAN submission.
- renewal constructor + formula + methods.
- dePril convolution added.
- changed the way built in distributions are called.
- inclusion of covariates using formula.
- Burr (weibull-gamma) distribution added.
- delayed first arrival included.
- dePril convolution option added.
- header files added taking advantage of Rcpp attributes.
conv_utils.cpp
added (contains the convolution general methods).- weibull, gamma, gengamma counting processes added.
- option to add user based inter-arrival times distribution using routines
getProbs_directConv
,getProbs_minConv
; see tests for examples.
- incorporated the convolution computations from Tarak's paper.
- introduced file
.Rbuildignore
in the root directory of the package. - shortened the name of subdirectory 'Euler-van ...' to remove the complaint from 'R CMD build' about long paths. Also, to remove the warning by 'R CMD check' about 'not fully portable file names', replaced space with undescore in the directory name and the pdf file in it.
- in file 'DESCRIPTION' - moved Rcpp from DEPENDS to IMPORTS:.
- completed the roxigen argument descriptions (in the sense that 'R CMD check' doesn't complain).
gam_weiH
andgam_weiA
renamedccX
andccY
.- vectorial version
dWeibullInterArrivalCountInd
anddWeibullInterArrivalCountFrankCopula
improved. - vectorial version with gamma heterogeinity added: Note that you only pass X %*% beta and not the exponential.
- tests added based on Examples from McShane(2008) paper.
- tests added for bivariate vectorial functions.
cRes
object removed from "R/" to free some space.
- pkg renamed from BivCount to Countr.
alphagen2
changed toalphagen
.- oldCpp file removed.
- gamma-heterogeneity functions added to the original and fast version.
- covariates-heterogeneity functions added to the original and fast version.
-
renamed
alphagen
toalphagenOrig
. -
the signatures of the cpp functions now have namespace prefixes for namespaces other than Rcpp. In this way RcppExports.cpp does not need
using namespace arma
which is not included byRcpp::compileAttributes
anddevtools::test()
and so needed to be added manually after these calls.I actually used search and replace to replace occurences in the body of the functions in our cpp files, but since we can put the 'using namespace' directives in them, only the signatures of exported functions are important for the abovde purpose.
-
replaced std::cout with calls to Rprintf() in C++ code, since direct printing from C++ inside R can cause problems (and is caught by R CMD check). Also removed <iostream.