Setup-chunk to load the package, set a seed and turn off verbosity for the rendering of the vignette.
postcard provides tools for accurately estimating marginal effects using plug-in estimation with GLMs, including increasing precision using prognostic covariate adjustment. See Powering RCTs for marginal effects with GLMs using prognostic score adjustment by Højbjerre-Frandsen et. al (2025).
The use of plug-in estimation and influence functions can help us obtain more accurate estimates. Coupled with prognostic covariate adjustment, we can increase the precision of our estimates and obtain a higher power with sacrificing control over the type I error rate.
Introductory examples on the use of rctglm()
and
rctglm_with_prognosticscore()
functions are available here.
For more details, see vignette("model-fit")
.
First, we simulate some data to be able to enable showcasing of the
functionalities. For this we use the glm_data()
function
from the package, where the user can specify an expression alongside
variables and a family of the response to then simulate a response from
a GLM with linear predictor given by the expression provided.
rctglm()
without prognostic covariate
adjustmentThe rctglm()
function estimates any specified estimand
using plug-in estimation for randomised clinical trials and estimates
the variance using the influence function of the marginal effect
estimand.
The interface of rctglm()
is similar to that of the
stats::glm()
function but with an added mandatory
specification of
Thus, we can estimate the ATE by simply writing the below:
Note that as a default,
verbose = 2
, meaning that information about the algorithm is printed to the console. However, here we suppress this behavior. See more invignette("model-fit")
.
ate <- rctglm(formula = Y ~ A * W,
exposure_indicator = A,
exposure_prob = 1/2,
data = dat_treat,
family = "gaussian") # Default value
This creates an rctglm
object which prints as
ate
#>
#> Object of class rctglm
#>
#> Call: rctglm(formula = Y ~ A * W, exposure_indicator = A, exposure_prob = 1/2,
#> data = dat_treat, family = "gaussian")
#>
#> Counterfactual control mean (psi_0=E[Y|X, A=0]) estimate: 2.776
#> Counterfactual control mean (psi_1=E[Y|X, A=1]) estimate: 4.867
#> Estimand function r: psi1 - psi0
#> Estimand (r(psi_1, psi_0)) estimate (SE): 2.091 (0.09209)
The structure of such an rctglm
object is broken down in
the Value
section of the documentation in
rctglm()
.
Methods available are estimand
(or the shorthand
est
) which prints a data.frame
with and
estimate of the estimand and its standard error. A method for
coef
is also available to extract coefficients from the
underlying glm
fit.
See more info in the documentation page
rctglm_methods()
.
The rctglm_with_prognosticscore()
function uses the
fit_best_learner()
function to fit a prognostic model to
historical data and then uses the prognostic model to predict \[\begin{align}
\mathbb{E}[Y|X,A=0]
\end{align}\]
for all observations in the current data set. These prognostic
scores are then used as a covariate in the GLM when running
rctglm()
.
Allowing the use of complex non-linear models to create such a prognostic score allows utilising information from potentially many variables, “catching” non-linear relationships and then using all this information in the GLM model using a single covariate adjustment.
We simulate some historical data to showcase the use of this function as well:
dat_notreat <- glm_data(
Y ~ b0+b1*sin(W)^2,
W = runif(n, min = -2, max = 2),
family = gaussian # Default value
)
The call to rctglm_with_prognosticscore()
is the same as
to rctglm()
but with an added specification of
fit_best_learner()
Thus, a simple call which estimates the average treatment effect, adjusting for a prognostic score, is seen below:
ate_prog <- rctglm_with_prognosticscore(
formula = Y ~ A * W,
exposure_indicator = A,
exposure_prob = 1/2,
data = dat_treat,
family = gaussian(link = "identity"), # Default value
data_hist = dat_notreat)
Quick results of the fit can be seen by printing the object:
ate_prog
#>
#> Object of class rctglm_prog
#>
#> Call: rctglm_with_prognosticscore(formula = Y ~ A * W, exposure_indicator = A,
#> exposure_prob = 1/2, data = dat_treat, family = gaussian(link = "identity"),
#> data_hist = dat_notreat)
#>
#> Counterfactual control mean (psi_0=E[Y|X, A=0]) estimate: 2.827
#> Counterfactual control mean (psi_1=E[Y|X, A=1]) estimate: 4.821
#> Estimand function r: psi1 - psi0
#> Estimand (r(psi_1, psi_0)) estimate (SE): 1.994 (0.06405)
It’s evident that in this case where there is a non-linear relationship between the covariate we observe and the response, adjusting for the prognostic score reduces the standard error of our estimand approximation by quite a bit.
Information on the prognostic model is available in the list element
prognostic_info
, which the method prog()
can
be used to extract. A breakdown of what this list includes, see the
Value
section of the
rctglm_with_prognosticscore()
documentation.
In cases of seeking to conduct new studies, sample size/power analyses are vital to the successful planning of such studies. Here, we present implementations in this package that take advantage of power approximation formulas to perform such analyses.
See a more detailed walkthrough of a use case in
vignette("prospective-power")
.
The method proposed in Powering RCTs for marginal
effects with GLMs using prognostic score adjustment by
Højbjerre-Frandsen et. al (2025), which can be used to estimate the
power when estimating any marginal effect, is implemented in the
function power_marginaleffect()
.
According to the conservative approach in the article, if wanting to conduct power analyses to figure out how many participants is needed for an upcoming trial, where you are planning to use prognostic covariate adjustment, predictions should be obtained from a discrete super learner identical to the one planned to use for generating prognostic scores when adjusting in the analysis when estimating the marginal effect.
Here we showcase a simple use of a
glm()
, but fx.fit_best_learner()
could be used to fit a discrete super learner as the prediction model. Could also add steps to get out-of-sample (OOS) predictions (see examples).
Finding the assumed variance to use for your power analysis with an
ANCOVA model can be done using the variance_ancova
function, which estimates the term \(\sigma^2(1-R^2)\) given a
formula
and data
.
Functions power_gs()
and power_nc()
exist,
which estimate the power given a sample size n
using
approximation formulas. The functions are the results of two different
approximation formulas but behave exactly the same except for a
mandatory specification of a df
argument for the
power_nc
function, which gives the degrees of freedom in
the t-distribution used.
Details about the formulas are available in the documentation
For the Guenther-Schouten approximation, the formula directly gives
us a sample size as a function of the power, so getting the required
sample size as a function of the power is available in the function
samplesize_gs()
.