control_calib is function that contains control parameters for joint_calib_create_matrix
control_calib(
interpolation = c("logit", "linear"),
logit_const = -1000,
survey_sparse = FALSE,
ebal_constraint_tolerance = 1,
ebal_print_level = 0
)a list with parameters
type of interpolation: logit or linear,
constant for logit interpolation,
whether to use sparse matrices via Matrix package in survey::grake() (currently not supported),
This is the tolerance level used by ebalance to decide if the moments in the reweighted data are equal to the target moments (see ebal::ebalance()),
Controls the level of printing: 0 (normal printing), 2 (detailed), and 3 (very detailed) (see ebal::ebalance()).
Maciej Beręsewicz