knitr::opts_chunk$set( collapse = TRUE, comment = "#>", dev = "png", fig.width = 7, fig.height = 3.5, message = FALSE, warning = FALSE) options(width = 800) if (!requireNamespace("ggplot2", quietly = TRUE) || !requireNamespace("splines", quietly = TRUE) || !requireNamespace("gridExtra", quietly = TRUE) || !requireNamespace("see", quietly = TRUE) || !requireNamespace("patchwork", quietly = TRUE) || !requireNamespace("survival", quietly = TRUE) || !requireNamespace("sjmisc", quietly = TRUE)) { knitr::opts_chunk$set(eval = FALSE) }
Results of regression models are typically presented as tables that are easy to understand. For more complex models that include interaction or quadratic / spline terms, tables with numbers are less helpful and more difficult to interpret. In such cases, the visualization of marginal effects or adjusted predictions is far easier to understand and allows to intuitively get the idea of how predictors and outcome are associated, even for complex models.
ggeffects computes marginal effects and adjusted predictions (or estimated marginal means) at the mean (MEM) or at representative values (MER) of predictors from statistical models, i.e. predictions generated by a model when one holds the non-focal variables constant and varies the focal variable(s). The result is returned as data frame with consistent structure, especially for further use with ggplot. Definitions of "marginal effects" can be found here. Since there is no common language across fields regarding a unique meaning of "marginal effects", it is recommended to read this vignette to understand what ggeffects actually does, and how this package differs from other packages that calculate "marginal effects".
Since the focus lies on plotting the data (or the marginal effects/adjusted predictions), at least one model term needs to be specified for which the effects are computed. It is also possible to compute marginal effects for model terms, grouped by the levels of another model's predictor. The package also allows plotting marginal effects for two-, three- or four-way-interactions, or for specific values of a model term only. Examples are shown below.
ggpredict()
, ggemmeans()
and ggeffect()
always return predicted values for the response of a model (or response distribution for Bayesian models).
Typically, ggpredict()
returns confidence intervals based on the standard errors as returned by the predict()
-function, assuming normal distribution (+/- 1.96 * SE
). If predict()
for a certain class does not return standard errors (for example, merMod-objects), these are calculated manually, by following steps: matrix-multiply X
by the parameter vector B
to get the predictions, then extract the variance-covariance matrix V
of the parameters and compute XVX'
to get the variance-covariance matrix of the predictions. The square-root of the diagonal of this matrix represent the standard errors of the predictions, which are then multiplied by 1.96 for the confidence intervals.
For mixed models, if type = "random"
or type = "zi_random"
, the uncertainty in the random effects is accounted for when calculating the standard errors. Hence, in such cases, the intervals may be considered as prediction intervals.
The returned data frames always have the same, consistent structure and column names, so it's easy to create ggplot-plots without the need to re-write the arguments to be mapped in each ggplot-call. x
and predicted
are the values for the x- and y-axis. conf.low
and conf.high
could be used as ymin
and ymax
aesthetics for ribbons to add confidence bands to the plot. group
can be used as grouping-aesthetics, or for faceting.
The examples shown here mostly use ggplot2-code for the plots, however, there is also a plot()
-method, which is described in the vignette Plotting Marginal Effects.
ggpredict()
computes predicted values for all possible levels and values from a model's predictors. In the simplest case, a fitted model is passed as first argument, and the term in question as second argument. Use the raw name of the variable for the terms
-argument only - you don't need to write things like poly(term, 3)
or I(term^2)
for the terms
-argument.
library(ggeffects) data(efc) fit <- lm(barthtot ~ c12hour + neg_c_7 + c161sex + c172code, data = efc) ggpredict(fit, terms = "c12hour")
As you can see, ggpredict()
(and ggeffect()
or ggemmeans()
) has a nice print()
-method, which takes care of printing not too many rows (but always an equally spaced range of values, including minimum and maximum value of the term in question) and giving some extra information. This is especially useful when predicted values are shown depending on the levels of other terms (see below).
The output shows the predicted values for the response at each value from the term c12hour. The data is already in shape for ggplot:
library(ggplot2) theme_set(theme_bw()) mydf <- ggpredict(fit, terms = "c12hour") ggplot(mydf, aes(x, predicted)) + geom_line()
The terms
-argument accepts up to four model terms, where the second to fourth terms indicate grouping levels. This allows predictions for the term in question at different levels for other model terms:
ggpredict(fit, terms = c("c12hour", "c172code"))
Creating a ggplot is pretty straightforward: the colour
-aesthetics is mapped with the group
-column:
mydf <- ggpredict(fit, terms = c("c12hour", "c172code")) ggplot(mydf, aes(x, predicted, colour = group)) + geom_line()
A second grouping structure can be defined, which will create another column named facet
, which - as the name implies - might be used to create a facted plot:
mydf <- ggpredict(fit, terms = c("c12hour", "c172code", "c161sex")) mydf ggplot(mydf, aes(x, predicted, colour = group)) + geom_line() + facet_wrap(~facet)
Finally, a third differentation can be defined, creating another column named panel
. In such cases, you may create multiple plots (for each value in panel
). ggeffects takes care of this when you use plot()
and automatically creates an integrated plot with all panels in one figure.
mydf <- ggpredict(fit, terms = c("c12hour", "c172code", "c161sex", "neg_c_7")) plot(mydf)
If the term
argument is either missing or NULL
, marginal effects for each model term are calculated. The result is returned as a list, which can be plotted manually (or using the plot()
function).
mydf <- ggpredict(fit) mydf
To plot the marginal effects of interaction terms, simply specify these terms in the terms
-argument.
library(sjmisc) data(efc) # make categorical efc$c161sex <- to_factor(efc$c161sex) # fit model with interaction fit <- lm(neg_c_7 ~ c12hour + barthtot * c161sex, data = efc) # select only levels 30, 50 and 70 from continuous variable Barthel-Index mydf <- ggpredict(fit, terms = c("barthtot [30,50,70]", "c161sex")) ggplot(mydf, aes(x, predicted, colour = group)) + geom_line()
Since the terms
-argument accepts up to four model terms, you can also compute marginal effects for a 3-way-interaction or 4-way-interaction. To plot the marginal effects of three interaction terms, just like before, specify all three terms in the terms
-argument.
# fit model with 3-way-interaction fit <- lm(neg_c_7 ~ c12hour * barthtot * c161sex, data = efc) # select only levels 30, 50 and 70 from continuous variable Barthel-Index mydf <- ggpredict(fit, terms = c("c12hour", "barthtot [30,50,70]", "c161sex")) ggplot(mydf, aes(x, predicted, colour = group)) + geom_line() + facet_wrap(~facet)
4-way-interactions are rather confusing to print and plot. When plotting, multiple plots (for each level of the fourth interaction term) are plotted for the remaining three interaction terms. This can easily be done using the plot()
-method.
# fit model with 4-way-interaction fit <- lm(neg_c_7 ~ c12hour * barthtot * c161sex * c172code, data = efc) # marginal effects for all 4 interaction terms pr <- ggpredict(fit, c("c12hour", "barthtot", "c161sex", "c172code")) # use plot() method, easier than own ggplot-code from scratch plot(pr)
ggpredict()
also works for models with polynomial terms or splines. Following code reproduces the plot from ?splines::bs
:
library(splines) data(women) fm1 <- lm(weight ~ bs(height, df = 5), data = women) dat <- ggpredict(fm1, "height") ggplot(dat, aes(x, predicted)) + geom_line() + geom_point()
ggpredict()
also supports coxph
-models from the survival-package and is able to either plot risk-scores (the default), probabilities of survival (type = "survival"
) or cumulative hazards (type = "cumulative_hazard"
).
Since probabilities of survival and cumulative hazards are changing across time, the time-variable is automatically used as x-axis in such cases, so the terms
-argument only needs up to two variables for type = "survival"
or type = "cumulative_hazard"
.
library(survival) data("lung2") m <- coxph(Surv(time, status) ~ sex + age + ph.ecog, data = lung2) # predicted risk-scores ggpredict(m, c("sex", "ph.ecog"))
# probability of survival ggpredict(m, c("sex", "ph.ecog"), type = "survival")
ggeffects makes use of the sjlabelled-package and supports labelled data. If the data from the fitted models is labelled, the value and variable label attributes are usually copied to the model frame stored in the model object. ggeffects provides various getter-functions to access these labels, which are returned as character vector and can be used in ggplot's lab()
- or scale_*()
-functions.
get_title()
- a generic title for the plot, based on the model family, like "predicted values" or "predicted probabilities"get_x_title()
- the variable label of the first model term in terms
.get_y_title()
- the variable label of the response.get_legend_title()
- the variable label of the second model term in terms
.get_x_labels()
- value labels of the first model term in terms
.get_legend_labels()
- value labels of the second model term in terms
.The data frame returned by ggpredict()
, ggemmeans()
or ggeffect()
must be used as argument to one of the above function calls.
get_x_title(mydf) get_y_title(mydf) ggplot(mydf, aes(x, predicted, colour = group)) + geom_line() + facet_wrap(~facet) + labs( x = get_x_title(mydf), y = get_y_title(mydf), colour = get_legend_title(mydf) )
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.