View source: R/pre_processing_data.R
ReplaceTreatmentSplit | R Documentation |
ReplaceTreatmentSplit
chooses the best treatment location to replace with their
control, given the L2 imbalance that each individual treatment has. Then
re-estimates the remaining treatment locations using the replaced treatment as
part of the control donor pool.
ReplaceTreatmentSplit(
treatment_locations,
data,
treatment_start_time,
treatment_end_time,
model,
verbose = FALSE,
Y_id = "Y",
time_id = "time",
location_id = "location",
X = c(),
fixed_effects = TRUE
)
treatment_locations |
Vector of locations where the treatment was applied. |
data |
DataFrame that GeoLfit will use to determine a result.
Should be the output of |
treatment_start_time |
Time index of the start of the treatment. |
treatment_end_time |
Time index of the end of the treatment. |
model |
A string indicating the outcome model used to augment the Augmented Synthetic Control Method. Augmentation through a prognostic function can improve fit and reduce L2 imbalance metrics.
|
verbose |
boolean that determines if processing messages will be shown. |
Y_id |
Name of the outcome variable (String). |
time_id |
Name of the time variable (String). |
location_id |
Name of the location variable (String). |
X |
Vector with covariates names. |
fixed_effects |
A logic flag indicating whether to include unit fixed effects in the model. Set to TRUE by default. |
list that contains:
"data": Data with replaced values for treatment locations during treatment period.
"l2_imbalance_df": Ranking of treatment locations based on L2 imbalance for each iteration.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.