--- title: "Global and local influence analysis with the *mixpoissonreg* package" author: "Alexandre B. Simas" date: '`r format(Sys.time(), "%Y-%m-%d")`' output: rmarkdown::html_vignette vignette: > %\VignetteIndexEntry{Global and local influence analysis with the *mixpoissonreg* package} %\VignetteEngine{knitr::rmarkdown} %\VignetteEncoding{UTF-8} --- ```{r, include = FALSE} knitr::opts_chunk$set( collapse = TRUE, comment = "#>" ) ``` # Global Influence In the *mixpoissonreg* package the following global influence methods are implemented: `hatvalues`, `cooks.distance` and `influence`. Below, we discuss the implementations of these methods in detail. Notice that in this vignette we do not provide interpretations of the influence results, we focus on how to compute the measures. For interpretations of the influence measures we refer the reader to the [Analyzing overdispersed count data with the *mixpoissonreg* package](tutorial-mixpoissonreg.html) vignette. We also do not provide examples on customization of the plots since virtually all the arguments related to the customization of plots for the `local_influence_plot` and `local_influence_autoplot` methods are the same as their counterparts `plot` and `autoplot`, respectivelly. Therefore, we refer the reader to the [Building and customizing base-R diagnostic plots with the mixpoissonreg package](https://vpnsctl.github.io/mixpoissonreg/articles/plots-mixpoissonreg.html) and [Building and customizing ggplot2-based diagnostic plots with the mixpoissonreg package](https://vpnsctl.github.io/mixpoissonreg/articles/ggplot2-plots-mixpoissonreg.html) for examples on how to customize the plots (change point and line types, colors, sizes, as well as change titles, captions, colors, etc.). ## `hatvalues` method To define "hat values" for mixed Poisson regression models, we follow [Zhu et al. (2001)](https://www.jstor.org/stable/2673442) to consider the negative of the hessian of the Q-function as weight matrix, and follow [Pregibon (1981)](https://www.jstor.org/stable/2240841) to define the "hat" matrix with respect to this weight matrix. We can consider the hessian of the Q-function with respect to mean-related parameters, which is the default. We can also consider the hessian of the Q-function with respect to the precision-related parameters to give rise to hat values related to the precision parameters. To obtain the mean-related hat values one simply calls the `hatvalues` method: ```{r warning=FALSE} library(mixpoissonreg) fit <- mixpoissonreg(daysabs ~ gender + math + prog | gender + math + prog, data = Attendance) head(hatvalues(fit)) ``` The hat values are used to obtain Cook's distance. One can also use the hat values to define leverage-adjusted residuals by dividing the residuals by `sqrt(hatvalues(fitted_object))`. To obtain precision-related hat values one must set `parameters` to "precision": ```{r} head(hatvalues(fit, parameters = "precision")) ``` ## `cooks.distance` method The implementation of the `cooks.distance` method for `mixpoissonreg` models contains several "Cook's distance"-like measures. More precisely, it contains the standard Cook's distance, the generalized Cook's distance, the likelihood displacement and the Q-displacement. ### Cook's distance The implementation of the standard Cook's distance uses the usual formula for Cook's distance in terms of the "hat" matrix, where the "hat" matrix is the one given above. The standard Cook's distance returned by default in the `cooks.distance` method. So, to obtain Cook's distance, we simply call the `cooks.distance` method: ```{r} head(cooks.distance(fit)) ``` Since there is also a "hat" matrix with respect to the precision parameters, we may compute Cook's distance using the hat values with respect to the precision parameters. To compute Cook's distance with the "hat" matrix with respect to the precision parameters we simply set the `hat` argument to "precision": ```{r} head(cooks.distance(fit, hat = "precision")) ``` ### generalized Cook's distance and Q-displacement The Generalized Cook's distance and Q-displacement (also called Q-distance) for EM-based models were defined in [Zhu et al. (2001)](https://www.jstor.org/stable/2673442) and computed for mixed Poisson regression models in [Barreto-Souza and Simas (2016)](https://doi.org/10.1007/s11222-015-9601-6). We implemented first-order approximation to these quantities to make it computationally feasible. These first-order approximations are available in [Barreto-Souza and Simas (2016)](https://doi.org/10.1007/s11222-015-9601-6). We also provide versions of generalized Cook's distance for mean-related or precision-related parameters, whose details can be found in [Barreto-Souza and Simas (2016)](https://doi.org/10.1007/s11222-015-9601-6). To compute the generalized Cook's distance with respect to the mean and precision parameters jointly, simply set the `type` argument to "GCD": ```{r} head(cooks.distance(fit, type = "GCD")) ``` To compute the generalized Cook's distance with respect to the mean-related parameters, set the `type` argument to "GCDmean": ```{r} head(cooks.distance(fit, type = "GCDmean")) ``` and to compute the generalized Cook's distance with respect to the precision-related parameters, set the `type` argument to "GCDprecision": ```{r} head(cooks.distance(fit, type = "GCDprecision")) ``` To compute the Q-displacement one sets the `type` argument to "QD": ```{r} head(cooks.distance(fit, type = "QD")) ``` ### Likelihood displacement The likelihood displacement (also called likelihood distance) was defined in Cook and Weisberg (1982). To compute this measure, one simply set the `type` argument to "LD": ```{r} head(cooks.distance(fit, type = "LD")) ``` ## `influence` method The `influence` method returns a `list` with several quantities: * **hat.mean** hat values with respect to the mean; * **hat.precision** hat with respect to the precision parameters; * **pear.res** Pearson residuals; * **score.res** Score residuals and if the argument `do.coef` is `TRUE` the returned `list` also contains: * **coefficients.mean** first-order approximation to the impact on the estimate of each mean-related parameter if each observation is removed; * **coefficients.precision** first-order approximation to the impact on the estimate of each precision-related parameter if each observation is removed. For the two elements above, the *i*th row corresponds to the parameter estimates with the *i*th observation removed. The `influence` method has only one argument, `do.coef`, which, by default, is set to `TRUE` since its computation is not computationally intensive. Let us call this method on the `fit` object: ```{r} influence_fit <- influence(fit) head(influence_fit$coefficients.mean) ``` ## Global influence plots The main global influence plots are implemented in the `plot` and `autoplot` methods. They are the plots number 3, 4 and 5, which are, respectively, the Cook's distance plot, the generalized Cook's distance plot and Cook's distance vs generalized Cook's distance. The `plot` and `autoplot` methods provide the same plots, the difference between them being that the former uses R's base graphics whereas the latter uses the `ggplot2` package. Let us build these plots: ```{r} plot(fit, which = c(3,4,5)) ``` and ```{r} autoplot(fit, which = c(3,4,5)) ``` These plots identify the most extreme points. By the default they identify 3 points, but the number of identified points can be changed by setting the `id.n` argument to the desired value for the `plot` method and by setting the `label.n` argument to the desired value for the `autoplot` method: ```{r} plot(fit, which = c(3,4,5), id.n = 5) ``` and ```{r} autoplot(fit, which = c(3,4,5), label.n = 5) ``` For further details customizing plots of `mixpoissonreg` objects, we refer the reader to the [Building and customizing base-R diagnostic plots with the mixpoissonreg package](https://vpnsctl.github.io/mixpoissonreg/articles/plots-mixpoissonreg.html) and [Building and customizing ggplot2-based diagnostic plots with the mixpoissonreg package](https://vpnsctl.github.io/mixpoissonreg/articles/ggplot2-plots-mixpoissonreg.html) vignettes. We now turn to the problem of plotting Q-displacements and likelihood displacements. Both of these plots can easily be built "by hand". R's base graphics: ```{r} qd_fit <- cooks.distance(fit, type = "QD") # Get the extreme points: extreme_points <- as.vector(Rfast::nth(abs(qd_fit), k = 5, num.of.nths = 5, index.return = TRUE, descending = TRUE)) idx_y <- qd_fit[extreme_points] ylim <- range(qd_fit, na.rm = TRUE) ylim <- extendrange(r = ylim, f = 0.15) plot(qd_fit, xlab = "Obs. number", ylab = "Q-displacement", ylim = ylim, type = "h") text(extreme_points, idx_y, labels = extreme_points, pos = 3, offset = 0.2) ``` and ```{r} ld_fit <- cooks.distance(fit, type = "LD") # Get 5 most extreme points: extreme_points <- as.vector(Rfast::nth(abs(ld_fit), k = 5, num.of.nths = 5, index.return = TRUE, descending = TRUE)) idx_y <- ld_fit[extreme_points] ylim <- range(ld_fit, na.rm = TRUE) ylim <- extendrange(r = ylim, f = 0.15) plot(ld_fit, xlab = "Obs. number", ylab = "Likelihood displacement", ylim = ylim, type = "h") text(extreme_points, idx_y, labels = extreme_points, pos = 3, offset = 0.2) ``` Now the `ggplot2` version: ```{r message=FALSE} library(dplyr) library(ggplot2) library(ggrepel) qd_fit <- cooks.distance(fit, type = "QD") qd_tbl <- tibble("Q-displacement" = qd_fit, "Obs. number" = 1:length(qd_fit)) # Get 5 most extreme points qd.extreme <- arrange(qd_tbl, desc(`Q-displacement`)) qd.extreme <- head(qd.extreme, 5) ggplot(qd_tbl, aes(x = `Obs. number`, y = `Q-displacement`)) + geom_linerange(aes(ymin = 0, ymax = `Q-displacement`)) + geom_text_repel(data = qd.extreme, aes(label = `Obs. number`)) ``` and ```{r message=FALSE} ld_fit <- cooks.distance(fit, type = "LD") ld_tbl <- tibble("Likelihood displacement" = ld_fit, "Obs. number" = 1:length(ld_fit)) # Get 5 most extreme points ld.extreme <- arrange(ld_tbl, desc(`Likelihood displacement`)) ld.extreme <- head(ld.extreme, 5) ggplot(ld_tbl, aes(x = `Obs. number`, y = `Likelihood displacement`)) + geom_linerange(aes(ymin = 0, ymax = `Likelihood displacement`)) + geom_text_repel(data = ld.extreme, aes(label = `Obs. number`)) ``` # Local Influence The *mixpoissonreg* package contains the `local_influence` method implemented. This method contains conformal normal curvatures and normal curvatures under several perturbation schemes. It returns a list whose elements are the perturbation schemes contained in the `perturbation` argument. The local influence was introduced in the seminal paper [Cook (1986)](https://www.doi.org/10.1111/j.2517-6161.1986.tb01398.x), in which the normal curvatures under different perturbations schemes were introduced. Cook suggested the analysis of the perturbation schemes in the directions of largest curvatures. [Lesaffre and Verbeke (1998)](https://www.jstor.org/stable/3109764) suggested the analysis for each canonical direction and called this "total local influence". [Poon and Poon (1999)](https://doi.org/10.1111/1467-9868.00162) introduced the *conformal normal curvature* which has the advantadge of taking values in the standard unit interval [0,1]. Finally, [Zhu and Lee (2001)](https://doi.org/10.1111/1467-9868.00279) introduced local influence measures for EM-based models. They computed normal and conformal normal curvatures for EM-based models. Below, we discuss the arguments of the `local_influence` method in detail. Notice that in this vignette we do not provide interpretations of the influence results, we focus on how to compute the measures. For interpretations of the influence measures we refer the reader to the [Analyzing overdispersed count data with the *mixpoissonreg* package](tutorial-mixpoissonreg.html) vignette. ## Curvature By default, the `local_influence` method for `mixpoissonreg` objects returns the *conformal normal curvature* since it takes values in the standard unit interval [0,1]. For conformal normal curvatures the *benchmark* suggested by [Zhu and Lee (2001)](https://doi.org/10.1111/1467-9868.00279) is returned as the `benchmark` attribute to each returned element, i.e., for each perturbation considered. For example: ```{r warning = FALSE} fit <- mixpoissonreg(daysabs ~ gender + math + prog | gender + math + prog, data = Attendance) loc_inf_fit <- local_influence(fit) ls(loc_inf_fit) head(loc_inf_fit$case_weights) attr(loc_inf_fit$case_weights, "benchmark") ``` To compute the normal curvature, simply set the `curvature` argument to "normal". For normal curvature the `benchmark` attribute contains the benchmark suggested by [Verbeke and Molenberghs (2000, sect. 11.3)](https://www.springer.com/gp/book/9781441902993). For example: ```{r} loc_inf_normal_fit <- local_influence(fit, curvature = "normal") ls(loc_inf_normal_fit) head(loc_inf_normal_fit$case_weights) attr(loc_inf_normal_fit$case_weights, "benchmark") ``` ## Direction The default direction of `local_influence` method for `mixpoissonreg` objects is the canonical direction, that is, it computes the *total local influence* ([Lesaffre and Verbeke, 1998](https://www.jstor.org/stable/3109764)). For canonical directions the `local_influence` method also returns *benchmarks* for each perturbation scheme, following [Zhu and Lee (2001)](https://doi.org/10.1111/1467-9868.00279) for conformal normal curvatures and [Verbeke and Molenberghs (2000, sect. 11.3)](https://www.springer.com/gp/book/9781441902993) for normal curvatures. To change the directions to the directions of largest curvatures one must set the `direction` argument to "max.eigen". For mixed Poisson regression models (and actually for very large class of regression models) both the normal and conformal normal curvatures are quadratic forms with respect to the direction, that is, by seeing the direction as the variable. The name "max.eigen" for the direction of largest curvature comes from the fact that the direction of largest curvature is the direction of the eigenvector of the associated quadratic form associated to the eigenvalue with largest absolute value. Notice that for direction of largest curvature no benchmark is returned, so if one calls the `benchmark` attribute, the returned value will be `NA`: ```{r} # Conformal normal curvature loc_inf_fit_larg_curv <- local_influence(fit, direction = "max.eigen") ls(loc_inf_fit_larg_curv) head(loc_inf_fit_larg_curv$case_weights) attr(loc_inf_fit_larg_curv$case_weights, "benchmark") # Normal curvature loc_inf_normal_fit_larg_curv <- local_influence(fit, curvature = "normal", direction = "max.eigen") ls(loc_inf_normal_fit_larg_curv) head(loc_inf_normal_fit_larg_curv$case_weights) attr(loc_inf_normal_fit_larg_curv$case_weights, "benchmark") ``` ## Perturbation The available perturbation schemes are *"case_weights"*, *"hidden_variable"*, *"mean_explanatory"*, *"precision_explanatory"*, *"simultaneous_explanatory"*. For mixed Poisson regression models, these perturbation schemes are given in [Barreto-Souza and Simas (2016)](https://doi.org/10.1007/s11222-015-9601-6). The *case weights* and *explanatory variable* perturbations were introduced by [Cook (1986)](https://www.doi.org/10.1111/j.2517-6161.1986.tb01398.x) whereas the *hidden variable* perturbation requires a latent variable and was introduced by [Barreto-Souza and Simas (2016)](https://doi.org/10.1007/s11222-015-9601-6). Notice that there is not a *response variable* perturbation scheme since the response variable is discrete, so it does not make sense to do such a perturbation. By default, the `local_influence` method for `mixpoissonreg` object returns a list with all the available perturbation schemes. ```{r} loc_inf_fit <- local_influence(fit) ls(loc_inf_fit) ``` Notice that if there is no precision covariates, then the returned values for "precision_explanatory" and "simultaneous_explanatory" are `NA` and a *warning* message is generated: ```{r warning = FALSE} fit2 <- mixpoissonreg(daysabs ~ gender + math + prog, data = Attendance) loc_inf_fit2 <- local_influence(fit2) ls(loc_inf_fit2) head(loc_inf_fit2$case_weights) head(loc_inf_fit2$precision_explanatory) head(loc_inf_fit2$simultaneous_explanatory) ``` To select a subset of perturbations, enter a list or vector with the desired perturbations as the `perturbation` argument: ```{r} loc_inf_1 <- local_influence(fit, perturbation = c("case_weights", "hidden_variable")) ls(loc_inf_1) head(loc_inf_1$case_weights) loc_inf_2 <- local_influence(fit, perturbation = c("case_weights", "hidden_variable"), curvature = "normal", direction = "max.eigen") ls(loc_inf_2) head(loc_inf_2$case_weights) ``` ## Parameters The `parameters` argument of the `local_influence` method for `mixpoissonreg` objects refer to the "case_weights" and "hidden_variable" perturbation schemes. One can obtain *case weights* and *hidden variable* perturbations with respect to *all* parameters, with respect to the *mean*-related parameters and with respect to the *precision*-related parameters. By default, the *case weights* and *hidden variable* perturbations are returned with respect to *all* parameters. To return *case weights* and *hidden variable* perturbations with respect to the *mean*-related parameters, one must set the `parameters` argument to "mean": ```{r} loc_inf_fit_mean <- local_influence(fit, parameters = "mean") head(loc_inf_fit_mean$case_weights) ``` Analogously, to return *case weights* and *hidden variable* perturbations with respect to the *precision*-related parameters, one must set the `parameters` argument to "precision": ```{r} loc_inf_fit_precision <- local_influence(fit, parameters = "precision") head(loc_inf_fit_precision$case_weights) ``` ## Perturbation schemes with respect to a subset of the covariates The `mean.covariates` argument refers to the "mean.explanatory" and "simultaneous.explanatory" perturbations schemes, whereas the `precision.covariates` argument refers to the "precision.explanatory" and "simultaneous.explanatory" perturbations schemes. The idea is that only the covariates listed in these arguments will be perturbed, so one can see the influence of observations with respect to those covariates. If `mean.covariates` is `NULL`, then all the mean-related covariates will be considered. Analogously, if `precision.covariates` is `NULL`, then all the precision-related covariates will be considered. **Remark:** Notice that factor and integer-valued covariates should not be perturbed since it **does not** make sense to make infinitesimal perturbations on them. You should only perturb continuous variables. By default both `mean.covariates` and `precision.covariates` are `NULL`, so all **non-factor** covariates are perturbed. Notice that integer non-factor covariates will be perturbed, so you should manually remove them. Let us consider, for example, the following model: ```{r warning = FALSE} set.seed(1234) x1 <- rexp(200, rate = 2) x2 <- rnorm(200) x3 <- factor(as.integer(2*runif(200) + 1)) x4 <- as.integer(10*runif(200)) y <- stats::rnbinom(200, mu = exp(1-x1-x2-(x3==2)+0.1*x4), size = exp(1+2*x1+x2)) fit_example <- mixpoissonreg(y ~ x1 + x2 + x3 + x4 | x1 + x2) summary(fit_example) ``` **Remark:** Notice that since *x3* is a factor and *x4* is integer-valued, they are discrete and it **does not** make sense to make infinitesimal perturbations on them. You should only perturb continuous variables. To consider the "mean_explanatory" and "simultaneous_explanatory" perturbation schemes with respect to the "x1" covariate, we simply set the `mean.covariates` argument to "x1": ```{r} loc_inf_x1 <- local_influence(fit_example, mean.covariates = "x1") head(loc_inf_x1$mean_explanatory) ``` To consider more than one covariate, simply enter the covariates as a vector. For instance, to consider the "mean_explanatory" and "simultaneous_explanatory" perturbation schemes with respect to the "x1" and "x2" covariates, we simply set the `mean.covariates` argument to `c("x1", "x2")`: ```{r} loc_inf_x1_x2 <- local_influence(fit_example, mean.covariates = c("x1", "x2")) head(loc_inf_x1_x2$mean_explanatory) ``` The covariates used in the "mean_explanatory" and "simultaneous_explanatory" perturbation schemes are returned as `covariates` attributes in the "mean_explanatory" and "simultaneous_explanatory" perturbation schemes: ```{r} attr(loc_inf_x1$mean_explanatory, "covariates") attr(loc_inf_x1$simultaneous_explanatory, "covariates") attr(loc_inf_x1_x2$mean_explanatory, "covariates") attr(loc_inf_x1_x2$simultaneous_explanatory, "covariates") ``` Analogously, to consider the "precision_explanatory" and "simultaneous_explanatory" perturbation schemes with respect to the "x1" covariate, we simply set the `precision.covariates` argument to "x1": ```{r} loc_inf_prec_x1 <- local_influence(fit_example, precision.covariates = "x1") head(loc_inf_prec_x1$precision_explanatory) ``` In the same manner as in the "mean_explanatory" perturbation scheme, to consider more than one covariate, simply enter the covariates as a vector. For instance, to consider the "precision_explanatory" and "simultaneous_explanatory" perturbation schemes with respect to the "x1" and "x2" covariates, we simply set the `precision.covariates` argument to `c("x1", "x2")`: ```{r} loc_inf_prec_x1_x2 <- local_influence(fit_example, precision.covariates = c("x1", "x2")) head(loc_inf_prec_x1_x2$precision_explanatory) ``` The covariates used in the "precision_explanatory" and "simultaneous_explanatory" perturbation schemes are returned as `covariates` attributes in the "precision_explanatory" and "simultaneous_explanatory" perturbation schemes: ```{r} attr(loc_inf_prec_x1$precision_explanatory, "covariates") attr(loc_inf_prec_x1$simultaneous_explanatory, "covariates") attr(loc_inf_prec_x1_x2$precision_explanatory, "covariates") attr(loc_inf_prec_x1_x2$simultaneous_explanatory, "covariates") ``` ## Local influence plots It is possible to plot the perturbation schemes for all the possible combinations of arguments of the `local_influence` method by using the `local_influence_plot` and `local_influence_autoplot` methods. The `local_influence_plot` and `local_influence_autoplot` methods provide the same plots, the difference between them being that the former uses R’s base graphics whereas the latter uses the `ggplot2` package. If the `direction` argument is set to "canonical" (the default), then the `n.influential` points above the *benchmarks* are automatically identified, where the default value for `n.influential` is 5. Recall that we use the benchmarks suggested by [Zhu and Lee (2001)](https://doi.org/10.1111/1467-9868.00279) for conformal normal curvatures and the benchmarks suggested by [Verbeke and Molenberghs (2000, sect. 11.3)](https://www.springer.com/gp/book/9781441902993) for normal curvatures. For `direction = "max.eigen"`, no benchmark is provided. In this case, the `local_influence_plot` and `local_influence_autoplot` methods automatically identify the `n.influential` most extremes points. Let us build these plots. First, the standard arguments provide the plots of conformal normal curvature in the canonical directions for the "case_weights", "hidden_variable", "mean_explanatory" and "precision_explanatory" perturbation schemes with "case_weights" and "hidden_variable" being computed for all parameters, and the explanatory perturbations being computed for all covariates: ```{r warning = FALSE} fit <- mixpoissonreg(daysabs ~ gender + math + prog | gender + math + prog, data = Attendance) # Notice that since gender and prog are factors, # they are not considered in the computation of the # explanatory variables perturbation schemes local_influence_plot(fit) ``` and ```{r} local_influence_autoplot(fit) ``` To change to normal curvature simply set the `curvature` argument to "normal": ```{r} local_influence_plot(fit, curvature = "normal") ``` and ```{r} local_influence_autoplot(fit, curvature = "normal") ``` We can change the direction to the direction of largest curvature by setting the `direction` to "max.eigen": ```{r} local_influence_plot(fit, direction = "max.eigen") ``` and ```{r} local_influence_autoplot(fit, direction = "max.eigen") ``` In this case the `n.influential` most extreme points are identified. We can change this number by changing the `n.influential` argument. We can also set the curvature to "normal". ```{r} local_influence_plot(fit, direction = "max.eigen", curvature = "normal", n.influential = 3) ``` and ```{r} local_influence_autoplot(fit, direction = "max.eigen", curvature = "normal", n.influential = 3) ``` We can change the perturbations schemes to be displayed by providing a list or vector containing the numbers relative to the wanted perturbations. The number 1 is the *case weights* perturbation, number 2 is the *hidden variable* perturbation, number 3 is *mean explanatory* perturbation, number 4 is *precision explanatory* perturbation and number 5 is *simultaneous explanatory* perturbation. ```{r} local_influence_plot(fit, which = c(1,2)) ``` and ```{r} local_influence_autoplot(fit, which = c(1,2)) ``` We can draw the benchmark line (when `direction` is "canonical") by setting the `draw.benchmark` argument to `TRUE`: ```{r} local_influence_plot(fit, draw.benchmark = TRUE) ``` and ```{r} local_influence_autoplot(fit, draw.benchmark = TRUE) ``` Finally, we can change the covariates by setting the `mean.covariates` and `precision.covariates` argument. Consider the `fit_example` we fit above: ```{r warning = FALSE} set.seed(1234) x1 <- rexp(200, rate = 2) x2 <- rnorm(200) x3 <- factor(as.integer(2*runif(200) + 1)) x4 <- as.integer(10*runif(200)) y <- stats::rnbinom(200, mu = exp(1-x1-x2-(x3==2)+0.1*x4), size = exp(1+2*x1+x2)) fit_example <- mixpoissonreg(y ~ x1 + x2 + x3 + x4 | x1 + x2) ``` We will consider the "mean explanatory", "precision explanatory" and "simultaneous explanatory" perturbations with respect to the `x1` covariate: ```{r} local_influence_plot(fit_example, which = c(3,4,5), mean.covariates = "x1", precision.covariates = "x1") ``` and ```{r} local_influence_autoplot(fit_example, which = c(3,4,5), mean.covariates = "x1", precision.covariates = "x1") ``` # References * Barreto-Souza, W. and Simas, A.B. (2016) *General mixed Poisson regression models with varying dispersion.* Statistics and Computing volume 26, pp.1263-1280. * Cook, R. D. (1986) *Assessment of Local Influence.* Journal of the Royal Statistical Society. Series B (Methodological), Vol. 48, pp.133-169. * Cook, R. D. and Weisberg, S. (1982) *Residuals and Influence in Regression.* New York and London: Chapman and Hall. * Lesaffre, E. and Verbeke, G. (1998) *Local Influence in Linear Mixed Models.* Biometrics, 54, 570-582. * Poon, W.-Y. and Poon, Y.S. (1999) *Conformal normal curvature and assessment of local influence.* Journal of the Royal Statistical Society. Series B (Methodological), 61, 51-61. * Pregibon, D. (1981) *Logistic Regression Diagnostics*. Ann. Stat. 9, 705-724. * Verbeke, G. and Molenberghs, G. (2000) *Linear Mixed Models for Longitudinal Data*. Springer-Verlag New York * Zhu, H.-T. and Lee, S.-Y. (2001) *Local influence for incomplete data models.* Journal of the Royal Statistical Society. Series B (Methodological), Vol. 63, pp.111-126. * Zhu, H.T., Lee, S.Y., Wei, B.C., Zhu, J. (2001) *Case-deletion measures formodels with incomplete data.* Biometrika, 88, 727–737.