gMAP {RBesT} | R Documentation |
Meta-Analytic-Predictive Analysis for Generalized Linear Models
Description
Meta-Analytic-Predictive (MAP) analysis for generalized linear
models suitable for normal, binary, or Poisson data. Model
specification and overall syntax follows mainly
glm
conventions.
Usage
gMAP(
formula,
family = gaussian,
data,
weights,
offset,
tau.strata,
tau.dist = c("HalfNormal", "TruncNormal", "Uniform", "Gamma", "InvGamma", "LogNormal",
"TruncCauchy", "Exp", "Fixed"),
tau.prior,
tau.strata.pred = 1,
beta.prior,
prior_PD = FALSE,
REdist = c("normal", "t"),
t.df = 5,
contrasts = NULL,
iter = getOption("RBesT.MC.iter", 6000),
warmup = getOption("RBesT.MC.warmup", 2000),
thin = getOption("RBesT.MC.thin", 4),
init = getOption("RBesT.MC.init", 1),
chains = getOption("RBesT.MC.chains", 4),
cores = getOption("mc.cores", 1L)
)
## S3 method for class 'gMAP'
print(x, digits = 3, probs = c(0.025, 0.5, 0.975), ...)
## S3 method for class 'gMAP'
fitted(object, type = c("response", "link"), probs = c(0.025, 0.5, 0.975), ...)
## S3 method for class 'gMAP'
coef(object, probs = c(0.025, 0.5, 0.975), ...)
## S3 method for class 'gMAP'
as.matrix(x, ...)
## S3 method for class 'gMAP'
summary(
object,
type = c("response", "link"),
probs = c(0.025, 0.5, 0.975),
...
)
Arguments
formula |
the model formula describing the linear predictor and encoding the grouping; see details |
family |
the family of distributions defining the statistical
model ( |
data |
optional data frame containing the variables of the
model. If not found in |
weights |
optional weight vector; see details below. |
offset |
offset term in statistical model used for Poisson data |
tau.strata |
sets the exchangability stratum per study. That is, it is expected that each study belongs to a single stratum. Default is to assign all studies to stratum 1. See section differential heterogeniety below. |
tau.dist |
type of prior distribution for |
tau.prior |
parameters of prior distribution for |
tau.strata.pred |
the index for the prediction stratum; default is 1. |
beta.prior |
mean and standard deviation for normal priors of regression coefficients, see section prior specification below. |
prior_PD |
logical to indicate if the prior predictive distribution should be sampled (no conditioning on the data). Defaults to |
REdist |
type of random effects distribution. |
t.df |
degrees of freedom if random-effects distribution is |
contrasts |
an optional list; See |
iter |
number of iterations (including warmup). |
warmup |
number of warmup iterations. |
thin |
period of saving samples. |
init |
positive number to specify uniform range on
unconstrained space for random initialization. See
|
chains |
number of Markov chains. |
cores |
number of cores for parallel sampling of chains. |
x , object |
|
digits |
number of displayed significant digits. |
probs |
defines quantiles to be reported. |
... |
optional arguments are ignored |
type |
sets reported scale ( |
Details
The meta-analytic-predictive (MAP) approach derives a prior from
historical data using a hierarchical model. The statistical model is
formulated as a generalized linear mixed model for binary, normal
(with fixed ) and Poisson endpoints:
Here, is the index for observations, and
is the index for the grouping (usually studies).
The model assumes the linear predictor for a transformed mean as
with being the row vector of
covariates for
observation
. The variance component is assumed by default
normal
Lastly, the Bayesian implementation assumes independent normal
priors for the regression coefficients and a prior for the
between-group standard deviation
(see
taud.dist
for available distributions).
The MAP prior will then be derived from the above model as the
conditional distribution of given the
available data and the vector of covariates
defining the overall intercept
A simple and common case arises for one observation (summary
statistic) per trial. For a normal endpoint, the model then simplifies
to the standard normal-normal hierarchical model. In the above
notation, and
where the more common is used for the only (intercept)
parameter
. Since there are no covariates, the MAP
prior is simply
.
The hierarchical model is a compromise between the two extreme
cases of full pooling (, full borrowing, no
discounting) and no pooling (
, no borrowing,
stratification). The information content of the
historical data grows with H (number of historical data items)
indefinitely for full pooling whereas no information is
gained in a stratified analysis. For a fixed
, the maximum effective sample
size of the MAP prior is
(
), which for a normal endpoint with fixed
is
(Neuenschwander et al., 2010). Hence, the ratio
limits the amount of information a MAP prior is
equivalent to. This allows for a classification of
values in relation to
, which is crucial to define a
prior
. The following classification is useful in a
clinical trial setting:
Heterogeneity | | |
small | 0.0625 | 256 |
moderate | 0.125 | 64 |
substantial | 0.25 | 16 |
large | 0.5 | 4 |
very large | 1.0 | 1 |
The above formula for assumes a known
. This is unrealistic as the between-trial heterogeneity
parameter is often not well estimable, in particular if the number
of trials is small (H small). The above table helps to specify a
prior distribution for
appropriate for the given context
which defines the crucial parameter
. For binary and
Poisson endpoints, normal approximations can be used to determine
. See examples below for concrete cases.
The design matrix is defined by the formula for the linear
predictor and is always of the form
response ~ predictor |
grouping
, which follows glm
conventions. The syntax has been extended to include a
specification of the grouping (for example study) factor of the
data with a horizontal bar, |
. The bar separates the
optionally specified grouping level, i.e. in the binary endpoint
case cbind(r, n-r) ~ 1 | study
. By default it is assumed
that each row corresponds to an individual group (for which an
individual parameter is estimated). Specifics for the different
endpoints are:
- normal
family=gaussian
assumes an identity link function. Theresponse
should be given as matrix with two columns with the first column being the observed mean valueand the second column the standard error
(of the mean). Additionally, it is recommended to specify with the
weight
argument the number of units which contributed to the (mean) measurement. This information is used to estimate
.
- binary
family=binomial
assumes a logit link function. Theresponse
must be given as two-column matrix with number of responders(first column) and non-responders
(second column).
- Poisson
family=poisson
assumes a log link function. Theresponse
is a vector of counts. The total exposure times can be specified by anoffset
, which will be linearly added to the linear predictor. Theoffset
can be given as part of the formula,y ~ 1 + offset(log(exposure))
or as theoffset
argument togMAP
. Note that the exposure unit must be given as log-offset.
Value
The function returns a S3 object of type gMAP
. See
the methods section below for applicable functions to query the
object.
Methods (by generic)
-
print(gMAP)
: displays a summary of the gMAP analysis. -
fitted(gMAP)
: returns the quantiles of the posterior shrinkage estimates for each data item used during the analysis of the givengMAP
object. -
coef(gMAP)
: returns the quantiles of the predictive distribution. User can choose withtype
if the result is on the response or the link scale. -
as.matrix(gMAP)
: extracts the posterior sample of the model. -
summary(gMAP)
: returns the summaries of a gMAP. analysis. Output is agMAPsummary
object, which is a list containingtau
posterior summary of the heterogeneity standard deviation
beta
posterior summary of the regression coefficients
theta.pred
summary of the predictive distribution (given in dependence on the
type
argument either onresponse
orlink
scale)theta
posterior summary of the mean estimate (also depends on the
type
argument)
Differential Discounting
The above model assumes the same between-group standard deviation
, which implies that the data are equally relevant. This
assumption can be relaxed to more than one
. That is,
where assignes group
to one of
between-group heterogeneity strata.
For example, in a situation with two randomized and four
observational studies, one may want to assume (for
trials 1 and 2) and
(for trials 3-6) for the
between-trial standard deviations of the control means. More
heterogeneity (less relevance) for the observational studies can
then be expressed by appropriate priors for
and
. In this case,
and the strata assignments
(see
tau.strata
argument) would be .
Prior Specification
The prior distribution for the regression coefficients
is normal.
If a single number is given, then this is used as the standard deviation and the default mean of 0 is used.
If a vector is given, it must be of the same length as number of covariates defined and is used as standard deviation.
If a matrix with a single row is given, its first row will be used as mean and the second row will be used as standard deviation for all regression coefficients.
Lastly, a two-column matrix (mean and standard deviation columns) with as many columns as regression coefficients can be given.
It is recommended to always specify a beta.prior
. Per
default a mean of 0 is set. The standard deviation is set to 2 for
the binary case, to 100 * sd(y)
for the normal case and to
sd(log(y + 0.5 + offset))
for the Poisson case.
For the between-trial heterogeniety prior, a dispersion
parameter must always be given for each exchangeability
stratum. For the different
tau.prior
distributions, two
parameters are needed out of which one is set to a default value if
applicable:
Prior | | | default |
HalfNormal | | | |
TruncNormal | | | |
Uniform | a | b | a = 0 |
Gamma | | | |
InvGamma | | | |
LogNormal | | | |
TruncCauchy | | | |
Exp | | 0 | |
Fixed | a | 0 | |
For a prior distribution with a default location parameter, a
vector of length equal to the number of exchangability strata can
be given. Otherwise, a two-column matrix with as many rows as
exchangability strata must be given, except for a single
stratum, for which a vector of length two defines the parameters a
and b.
Random seed
The MAP analysis is performed using
Markov-Chain-Monte-Carlo (MCMC) in rstan
. MCMC
is a stochastic algorithm. To obtain exactly reproducible results
you must use the set.seed
function
before calling gMAP
. See RBesT
overview page for global options on setting further MCMC simulation
parameters.
References
Neuenschwander B, Capkun-Niggli G, Branson M, Spiegelhalter DJ. Summarizing historical information on controls in clinical trials. Clin Trials. 2010; 7(1):5-18
Schmidli H, Gsteiger S, Roychoudhury S, O'Hagan A, Spiegelhalter D, Neuenschwander B. Robust meta-analytic-predictive priors in clinical trials with historical control information. Biometrics 2014;70(4):1023-1032.
Weber S, Li Y, Seaman III J.W., Kakizume T, Schmidli H. Applying Meta-Analytic Predictive Priors with the R Bayesian evidence synthesis tools. JSS 2021; 100(19):1-32
See Also
plot.gMAP
, forest_plot
, automixfit
, predict.gMAP
Examples
## Setting up dummy sampling for fast execution of example
## Please use 4 chains and 20x more warmup & iter in practice
.user_mc_options <- options(RBesT.MC.warmup=50, RBesT.MC.iter=100,
RBesT.MC.chains=2, RBesT.MC.thin=1)
# Binary data example 1
# Mean response rate is ~0.25. For binary endpoints
# a conservative choice for tau is a HalfNormal(0,1) as long as
# the mean response rate is in the range of 0.2 to 0.8. For
# very small or large rates consider the n_infinity approach
# illustrated below.
# for exact reproducible results, the seed must be set
set.seed(34563)
map_AS <- gMAP(cbind(r, n-r) ~ 1 | study,
family=binomial,
data=AS,
tau.dist="HalfNormal", tau.prior=1,
beta.prior=2)
print(map_AS)
# obtain numerical summaries
map_sum <- summary(map_AS)
print(map_sum)
names(map_sum)
# [1] "tau" "beta" "theta.pred" "theta"
map_sum$theta.pred
# graphical model checks (returns list of ggplot2 plots)
map_checks <- plot(map_AS)
# forest plot with shrinkage estimates
map_checks$forest_model
# density of MAP prior on response scale
map_checks$densityThetaStar
# density of MAP prior on link scale
map_checks$densityThetaStarLink
# obtain shrinkage estimates
fitted(map_AS)
# regression coefficients
coef(map_AS)
# finally fit MAP prior with parametric mixture
map_mix <- mixfit(map_AS, Nc=2)
plot(map_mix)$mix
# optionally select number of components automatically via AIC
map_automix <- automixfit(map_AS)
plot(map_automix)$mix
# Normal example 2, see normal vignette
# Prior considerations
# The general principle to derive a prior for tau can be based on the
# n_infinity concept as discussed in Neuenschwander et al., 2010.
# This assumes a normal approximation which applies for the colitis
# data set as:
p_bar <- mean(with(colitis, r/n))
s <- round(1/sqrt(p_bar * (1-p_bar)), 1)
# s is the approximate sampling standard deviation and a
# conservative prior is tau ~ HalfNormal(0,s/2)
tau_prior_sd <- s/2
# Evaluate HalfNormal prior for tau
tau_cat <- c(pooling=0
,small=0.0625
,moderate=0.125
,substantial=0.25
,large=0.5
,veryLarge=1
,stratified=Inf)
# Interval probabilites (basically saying we are assuming
# heterogeniety to be smaller than very large)
diff(2*pnorm(tau_cat * s, 0, tau_prior_sd))
# Cumulative probabilities as 1-F
1 - 2*(pnorm(tau_cat * s, 0, tau_prior_sd) - 0.5)
## Recover user set sampling defaults
options(.user_mc_options)