Version 0.4.1 released to CRAN
Version 0.4.1 of gratia has been released to CRAN. Version 0.4.0 existed for a short while but the release to CRAN was pulled because of a last minute change needed to accommodate v 1.0.0 of dplyr that had gone overlooked in the testing for 0.4.0.
This gave me an opportunity to fix an additional bug (#73) as well.
The full list of changes is reproduced below for version 0.4.1 and 0.4.0.
gratia 0.4.1
User visible changes
-
draw.gam()
withscales = "fixed"
now applies to all terms that can be
plotted, including 2d smooths.Reported by @StefanoMezzini #73
Bug fixes
-
dplyr::combine()
was deprecated. Switch tovctrs::vec_c()
. -
draw.gam()
withscales = "fixed"
wasn't using fixed scales where 2d smooths
were in the model.Reported by @StefanoMezzini #73
gratia 0.4.0
New features
-
draw.gam()
can now include partial residuals when drawing univariate smooths.
Useresiduals = TRUE
to add partial residuals to each univariate smooth that
is drawn. This feature is not available for smooths of more than one variable,
by smooths, or factor-smooth interactions (bs = "fs"
). -
The coverage of credible and ocnfidence intervals drawn by
draw.gam()
can be
specified via argumentci_level
. The default is arbitrarily0.95
for no
other reason than (rough) compatibility withplot.gam()
.This chance has had the effect of making the intervals slightly narrower than
in previous versions of gratia; intervals were drawn at ± 2 ×
the standard error. The default intervals are now drawn at ± ~1.96
× the standard error. -
New function
difference_smooth()
for computing differences between factor
smooth interactions. Methods available forgam()
,bam()
,gamm()
and
gamm4::gamm4()
. Also has adraw()
method, which can handle differences of
1D and 2D smooths currently (handling 3D and 4D smooths is planned). -
New functions
add_fitted()
andadd_residuals()
to add fitted values
(expectations) and model residuals to an existing data frame. Currently methods
available for objects fitted bygam()
andbam()
. -
data_sim()
is a tidy reimplementation ofmgcv::gamSim()
with the added
ability to use sampling distributions other than the Gaussian for all models
implemented. Currently Gaussian, Poisson, and Bernoulli sampling distributions
are available. -
smooth_samples()
can handle continuous by variable smooths such as in
varying coefficient models. -
link()
andinv_link()
now work for all families available in mgcv,
including the location, scale, shape families, and the more specialised
families described in?mgcv::family.mgcv
. -
evaluate_smooth()
,data_slice()
,family()
,link()
,inv_link()
methods
for models fitted usinggamm4()
from the gamm4 package. -
data_slice()
can generate data for a 1-d slice (a single variable varying). -
The colour of the points, reference lines, and simulation band in
appraise()
can now be specified via argumentspoint_col
,point_alpha
,ci_col
ci_alpha
line_col
These are passed on to
qq_plot()
,observed_fitted_plot()
,
residuals_linpred_plot()
, andresiduals_hist_plot()
, which also now take
the new arguments were applicable. -
Added utility functions
is_factor_term()
andterm_variables()
for working
with models.is_factor_term()
identifies is the named term is a factor using
information from theterms()
object of the fitted model.term_variables()
returns a character vector of variable names that are involved in a model
term. These are strictly for working with parametric terms in models. -
appraise()
now works for models fitted byglm()
andlm()
, as do the
underlying functions it calls, especiallyqq_plot
.appraise()
also works for models fitted with familygaulss()
. Further
locational scale models and models fitted with extended family functions will
be supported in upcoming releases.
User visible changes
-
datagen()
is now an internal function and is no longer exported. Use
data_slice()
instead. -
evaluate_parametric_terms()
is now much stricter and can only evaluate main
effect terms, i.e. those whose order, as stored in theterms
object of the
model is1
.
Bug fixes
-
The
draw()
method forderivatives()
was not getting the x-axis label for
factor by smooths correctly, and instead was usingNA
for the second and
subsequent levels of the factor. -
The
datagen()
method for class"gam"
couldn't possibly have worked for
anything but the simplest models and would fail even with simple factor by
smooths. These issues have been fixed, but the behaviour ofdatagen()
has
changed, and the function is now not intended for use by users. -
Fixed an issue where in models terms of the form
factor1:factor2
were
incorrectly identified as being numeric parametric terms.
#68