weightit | R Documentation |
weightit()
allows for the easy generation of balancing weights
using a variety of available methods for binary, continuous, and
multi-category treatments. Many of these methods exist in other packages,
which weightit()
calls; these packages must be installed to use the desired
method.
weightit(
formula,
data = NULL,
method = "glm",
estimand = "ATE",
stabilize = FALSE,
focal = NULL,
by = NULL,
s.weights = NULL,
ps = NULL,
moments = NULL,
int = FALSE,
subclass = NULL,
missing = NULL,
verbose = FALSE,
include.obj = FALSE,
keep.mparts = TRUE,
...
)
formula |
a formula with a treatment variable on the left hand side and
the covariates to be balanced on the right hand side. See |
data |
an optional data set in the form of a data frame that contains
the variables in |
method |
a string of length 1 containing the name of the method that
will be used to estimate weights. See Details below for allowable options.
The default is |
estimand |
the desired estimand. For binary and multi-category
treatments, can be |
stabilize |
whether or not and how to stabilize the weights. If |
focal |
when |
by |
a string containing the name of the variable in |
s.weights |
A vector of sampling weights or the name of a variable in
|
ps |
A vector of propensity scores or the name of a variable in |
moments |
|
int |
|
subclass |
|
missing |
|
verbose |
|
include.obj |
|
keep.mparts |
|
... |
other arguments for functions called by |
The primary purpose of weightit()
is as a dispatcher to functions
that perform the estimation of balancing weights using the requested
method
. Below are the methods allowed and links to pages containing more
information about them, including additional arguments and outputs (e.g.,
when include.obj = TRUE
), how missing values are treated, which estimands
are allowed, and whether sampling weights are allowed.
"glm" | Propensity score weighting using generalized linear models |
"gbm" | Propensity score weighting using generalized boosted modeling |
"cbps" | Covariate Balancing Propensity Score weighting |
"npcbps" | Non-parametric Covariate Balancing Propensity Score weighting |
"ebal" | Entropy balancing |
"ipt" | Inverse probability tilting |
"optweight" | Optimization-based weighting |
"super" | Propensity score weighting using SuperLearner |
"bart" | Propensity score weighting using Bayesian additive regression trees (BART) |
"energy" | Energy balancing |
method
can also be supplied as a user-defined function; see method_user
for instructions and examples. Setting method = NULL
computes unit weights.
estimand
and focal
For binary and multi-category treatments, theargument to estimand
determines what distribution the weighted sample
should resemble. When set to "ATE"
, this requests that each group resemble
the full sample. When set to "ATO"
, "ATM"
, or "ATOS"
(for the methods
that allow them), this requests that each group resemble an "overlap" sample.
When set to "ATT"
or "ATC"
, this requests that each group resemble the
treated or control group, respectively (termed the "focal" group). Weights
are set to 1 for the focal group.
How does weightit()
decide which group is the treated and which group is
the control? For binary treatments, several heuristics are used. The first is
by checking whether a valid argument to focal
was supplied containing the
name of the focal group, which is the treated group when estimand = "ATT"
and the control group when estimand = "ATC"
. If focal
is not supplied,
guesses are made using the following criteria, evaluated in order:
If the treatment variable is logical
, TRUE
is considered treated and FALSE
control.
If the treatment is numeric (or a string or factor with values that can be coerced to numeric values), if 0 is one of the values, it is considered the control, and otherwise, the lower value is considered the control (with the other considered treated).
If exactly one of the treatment values is "t"
, "tr"
, "treat"
, "treated"
, or "exposed"
, it is considered the treated (and the other control).
If exactly one of the treatment values is "c"
, "co"
, "ctrl"
, "control"
, or "unexposed"
, it is considered the control (and the other treated).
If the treatment variable is a factor, the first level is considered control and the second treated.
The lowest value after sorting with sort()
is considered control and the other treated.
To be safe, it is best to code your binary treatment variable as 0
for
control and 1
for treated. Otherwise, focal
should be supplied when
requesting the ATT or ATC. For multi-category treatments, focal
is required
when requesting the ATT or ATC; none of the heuristics above are used.
weightit()
, please cite both theWeightIt package (using citation("WeightIt")
) and the paper(s) in the
references section of the method used.
A weightit
object with the following elements:
weights |
The estimated weights, one for each unit. |
treat |
The values of the treatment variable. |
covs |
The covariates used in the fitting. Only includes the raw covariates, which may have been altered in the fitting process. |
estimand |
The estimand requested. |
method |
The weight estimation method specified. |
ps |
The estimated or provided propensity scores. Estimated propensity scores are
returned for binary treatments and only when |
s.weights |
The provided sampling weights. |
focal |
The focal treatment level if the ATT or ATC was requested. |
by |
A data.frame
containing the |
obj |
When |
info |
Additional information about the fitting. See the individual methods pages for what is included. |
When keep.mparts
is TRUE
(the default) and the chosen method is
compatible with M-estimation, the components related to M-estimation for use
in glm_weightit()
are stored in the "Mparts"
attribute. When by
is
specified, keep.mparts
is set to FALSE
.
weightitMSM()
for estimating weights with sequential (i.e.,
longitudinal) treatments for use in estimating marginal structural models
(MSMs).
weightit.fit()
, which is a lower-level dispatcher function that accepts a
matrix of covariates and a vector of treatment statuses rather than a formula
and data frame and performs minimal argument checking and processing. It may
be useful for speeding up simulation studies for which the correct arguments
are known. In general, weightit()
should be used.
summary.weightit()
for summarizing the weights
library("cobalt")
data("lalonde", package = "cobalt")
#Balancing covariates between treatment groups (binary)
(W1 <- weightit(treat ~ age + educ + married +
nodegree + re74, data = lalonde,
method = "glm", estimand = "ATT"))
summary(W1)
bal.tab(W1)
#Balancing covariates with respect to race (multi-category)
(W2 <- weightit(race ~ age + educ + married +
nodegree + re74, data = lalonde,
method = "ebal", estimand = "ATE"))
summary(W2)
bal.tab(W2)
#Balancing covariates with respect to re75 (continuous)
(W3 <- weightit(re75 ~ age + educ + married +
nodegree + re74, data = lalonde,
method = "cbps"))
summary(W3)
bal.tab(W3)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.