-
Create the help file for the package correctly, with alias chandwich-package.
-
In
plot.confint()
confidence limits are now added to the horizontal axis in cases where only one interval is plotted. -
Activated 3rd edition of the
testthat
package
- In the vignette references section DOIs are rendered with URLs hyperlinked.
-
The function
conf_intervals()
now stops evaluating the profile loglikelihood when the required confidence limits have been estimated. -
In
conf_interals()
the initial estimates used in the profile loglikelihood were not reset in between the searches for the lower confidence limits and the upper limits. In some cases this may cause problems for the optimisations. This has been corrected: initial estimates are now reset. -
In
confint.chandwich()
the argumentprofile
can be used to choose whether to return confidence intervals based on an (adjusted) profile loglikelihood or based on approximate large sample normal theory. -
The
anova.chandwich()
function has been modified to enable the comparison of nested (adjusted) model objects, where the nesting has not been explicitly created using the argumentfixed_pars
toadjust_loglikelihood()
. -
The documentation of
conf_intervals()
has been updated: the general nature of the argumentnum
is explained and in Details advice is given on what to do if one or more of the confidence limits are not found using the default arguments. -
In the description of the argument
parm
in the documentation ofconfint.chandwich()
,which_pars
has been corrected toparm
twice.
-
The object returned from
adjust_loglik()
has an extra attributeloglikVecMLE
, which is a vector containing the contributions of individual observations to the independence log-likelihood evaluated at the MLE. -
isTRUE()
is used in the GEV example to avoid potential problems owing to the possibility of NAs.
-
A typo meant that the text in the Value section of the description of
confint.chandwich()
was cut short. This has been corrected. -
In
adjust_loglik()
ifp = 1
and the user supplies a scalarH
instead of a matrix then an error is thrown bydimnames()
just before the results are returned. The calculations are correct, so the code has been modified trivially to avoid the error. -
In the function returned from
adjust_loglik
the code to perform the horizontal adjustment of the loglikelihood has been changed tox_star <- mle + as.vector(C %*% (x - mle))
: usingas.vector()
avoids a potential warning by ensuring vector + vector, not vector + matrix. -
There were bugs in
plot.chandwich()
,plot.confreg()
andplot.confint()
that produced an error if the user tried to set their own legend using thelegend
argument. These bugs have been corrected.
-
The attribute
nobs
has been added to the object returned fromadjust_loglik()
and as an attribute to the object returned fromlogLik.chandwich()
. -
In
compare_models()
the parameter names (if any) are passed to the (adjusted) loglikelihood function, in case they are required inside the loglikelihood function. -
There was a bug in the plot method for objects of class "confreg" returned from conf_region(): if the parameters had not been named by the user then ? appeared twice in the console, requiring the user to press return twice before the plot as produced. This has been corrected.
-
adjust_loglik
has an additional argumentsmle
,H
andV
that allow the user the option to supply the MLE, the Hessian of the independence loglikelihood (H) and the variance of the vector of cluster-specific contributions to the score vector (V), each evaluated at the MLE, rather than estimating these withinadjust_loglik
. -
An anova S3 method for class "chandwich" has been added. This compares two or more nested models using adjusted likelihood ratio tests of successive pairs of models, using
compare_models()
. -
A confint S3 method for class "chandwich" has been added. This is based on a fairly trivial call to
conf_intervals()
. -
S3 methods
coef
,vcov
andlogLik
for class "chandwich" have been added.
-
A bug in
compare_models()
has been fixed. The bug resulted an error in cases where the argumentlarger
corresponded to a simplification of the full model in which element i of the parameter was fixed but some element i+n, for n > 0, was not fixed. -
Estimated unadjusted (VC) and adjusted (adjVC) variance-covariance matrices of the free model parameters are now available in the object returned by
adjust_loglik()
. -
The documentation of the argument
approx
tocompare_models()
has been edited to make it clearer that ifsmaller
is not supplied thenapprox = FALSE
will be used regardless of any value supplied forapprox
in the call tocompare_models()
. -
If parameter names are supplied to
adjust_loglik()
(viapar_names
) butfixed_pars
is numeric then the names of the parameters infixed_pars
are now also inferred in the case where a larger model is not supplied vialarger
. This means that the output fromcompare_models()
will now use the parameter name, rather than the parameter number. -
If a numeric
fixed_pars
is supplied tocompare_models()
then the names of the parameters infixed_pars
are inferred, if they are available in the supplied objectlarger
. -
The summary method for class "evpost" is now set up according to Section 8.1 of the R FAQ at (https://cran.r-project.org/doc/FAQ/R-FAQ.html).
-
In the Introducing chandwich vignette a typo in the definition of HA has been corrected. The expression given is for the inverse of HA, not for HA.