Description Usage Arguments Details Value Author(s) References See Also Examples
View source: R/optweight.fit.R
optweight.fit
performs the optimization (via osqp; Anderson, 2018) for optweight
and should, in most coses, not be used directly. No processing of inputs is performed, so they must be given exactly as described below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
treat.list |
A list containing one vector of treatment statuses for each time point. Non-numeric (i.e., factor or character) vectors are allowed. |
covs.list |
A list containing one matrix of covariates to be balanced for each time point. All matrices must be numeric but do not have to be full rank. |
tols |
A list containing one vector of balance tolerance values for each time point. |
estimand |
The desired estimand, which determines the target population. For binary treatments, can be "ATE", "ATT", "ATC", or |
targets |
A vector of target populaton mean values for each baseline covariate. The resulting weights will yield sample means within |
s.weights |
A vector of sampling weights. Optimization occurs on the product of the sampling weights and the estimated weights. |
focal |
When multinomial treatments are used and the "ATT" is requested, which group to consider the "treated" or focal group. This group will not be weighted, and the other groups will be weighted to be more like the focal group. |
norm |
A string containing the name of the norm corresponding to the objective function to minimize. The options are |
std.binary, std.cont |
|
min.w |
A single |
verbose |
Whether information on the optimization problem solution should be printed. This information contains how many iterations it took to estimate the weights and whether the solution is optimal. |
force |
optweights are currently not valid for use with longitudinal treatments, and will produce an error message if attempted. Set to |
... |
Options that are passed to |
optweight.fit
transforms the inputs into the required inputs for solve_osqp
, which are (sparse) matrices and vectors, and then supplies the outputs (the weights, duals variables, and convergence information) back to optweight
. No processing of inputs is performed, as this is normally handled by optweight
.
The default values for some of the parameters sent to solve_osqp
are not the same as those in osqpSettings
. The following are the differences: max_iter
is set to 20000 and eps_abs
and eps_rel
are set to 1E-8 (i.e., 10^-8). All other values are the same.
Note that optweights with longitudinal treatments are not valid and should not be used until further research is done.
An optweight.fit
object with the following elements:
w |
The estimated weights, one for each unit. |
duals |
A data.frame containing the dual variables for each covariate, or a list thereof. See Zubizarreta (2015) for interpretation of these values. |
info |
The |
Noah Greifer
Anderson, E. (2018). osqp: Quadratic Programming Solver using the 'OSQP' Library. R package version 0.1.0. https://CRAN.R-project.org/package=osqp
Wang, Y., & Zubizarreta, J. R. (2017). Approximate Balancing Weights: Characterizations from a Shrinkage Estimation Perspective. ArXiv:1705.00998 [Math, Stat]. Retrieved from http://arxiv.org/abs/1705.00998
Yiu, S., & Su, L. (2018). Covariate association eliminating weights: a unified weighting framework for causal effect estimation. Biometrika. doi: 10.1093/biomet/asy015
Zubizarreta, J. R. (2015). Stable Weights that Balance Covariates for Estimation With Incomplete Outcome Data. Journal of the American Statistical Association, 110(511), 910–922. doi: 10.1080/01621459.2015.1023805
optweight
which you should use for estimating the balancing weights, unless you know better.
https://osqp.org/docs/index.html for more information on osqp, the underlying solver, and the options for solve_osqp
.
osqpSettings
for details on options for solve_osqp
.
1 2 3 4 5 6 7 8 9 10 11 12 |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.