Nick’s regressions

Published

February 18, 2026

Abstract

Set of regressions ran on some outputs requested by nick

Code
```{r}
#| message: false
#| warning: false
#| label: load-data

library(tidyverse)
library(fixest)
library(haven)
library(kableExtra)
library(modelsummary)
library(ggplot2)
library(patchwork)
library(DescTools)
library(broom)
library(tibble)
library(dplyr)
library(tidyr)
library(haven)

conflicted::conflict_prefer("select", "dplyr")
conflicted::conflict_prefer("filter", "dplyr")

theme_set(theme_minimal())


# To refresh data, first run the do file at:
###### "/Users/st2246/Work/Pilot3/code/tidy_run_main.do"
# Then run python file:
##### /Users/st2246/Work/Pilot3/code/pipeline/load.py
ROOT <- '/Users/st2246/Work/Pilot3/data/generated/main/'

df <- read_dta(paste0(ROOT, "transform/30_merged_panel-hh_id-period.dta")) %>%
    mutate(
        treatment = as.factor(treatment),
        treatment_split = as.factor(treatment_split),
        treatment_balanced = as.factor(treatment_balanced),
        enum_id = as.factor(enum_id),
        # Make sure draw is non-empty for control arms too
        draw_realized = ifelse(treatment == 0, "C", draw_realized),
        draw_imputed = ifelse(treatment == 0, "C", draw_imputed),
        draw_imputed_lag1 = ifelse(treatment == 0, "C", draw_imputed_lag1),
        draw_realized_lag1 = ifelse(treatment == 0, "C", draw_realized_lag1),
        pass_bags = if_else(is.na(pass_bags), 0, pass_bags),
        study_income = as.numeric(pass_bags * 12),
        study_income = if_else(treatment == 0, 0, study_income),
        study_income = if_else(pickup_completed == 0, 0, study_income),
        # high = draw == "H"
        hh_size = as.numeric(hh_size),
        hh_id = as.factor(hh_id)
    )
```
Code
```{r}
FCM_SUBFILES <- paste0(ROOT, "FCM Analysis/FCM Subfiles")
files <- c('Food_Wins_Purch_PC.dta', 'Food_Wins_Purch_AEM.dta','Food_Wins_Purch_tot.dta', 'Food_Wins_Consump_PC.dta', 'Food_Wins_consump_AEM.dta', 'Food_Wins_consump_tot.dta' )
fcms_df <- files %>%
    set_names() %>%
    map(~ read_dta(file.path(FCM_SUBFILES, .))) %>%
    reduce(left_join, by = c("hh_id", "period")) %>%
    mutate(
        hh_id = as.factor(hh_id)
    )

df <- df %>%
    left_join(fcms_df, by = c("hh_id", "period"))
```
Code
```{r}
# Save all numeric variable names (excluding id/grouping columns)
variables <- df %>%
    select(where(is.numeric)) %>%
    select(-any_of(c("hh_id", "period"))) %>%
    names()

# Create baseline values using filter + join approach
baseline_df <- df %>%
    filter(period == 0) %>%
    select(hh_id, all_of(c(variables))) %>%
    rename_with(~ paste0(.x, "_bl"), .cols = -hh_id)

df <- df %>%
    left_join(baseline_df, by = "hh_id")
```
Code
```{r}
#| message: false
#| warning: false
#| label: run-regressions

# Function to run regressions for a variable
run_regressions <- function(
    var,
    reg_data = df,
    fe_spec = "| district_id + period + wave + enum_id + day_of_week + cohort",
    fe_spec_endline = "| district_id + wave + enum_id + day_of_week + cohort",
    controls = paste0(var, "_bl + hh_size + census_wealth_index")) {

    reg_data_bl <- reg_data 
    reg_data <- reg_data %>%
        filter(period > 0)

    
    
    # By Treatment groups
    group_reg <- feols(as.formula(paste0(var, " ~ ", controls, " + i(treatment) ", fe_spec)),
        cluster = "hh_id",
        data = reg_data
    )

    # By Treatment groups - including baseline
    group_reg_with_baseline <- feols(as.formula(paste0(var, " ~ ", controls, " + i(treatment) ", fe_spec)),
        cluster = "hh_id",
        data = reg_data_bl
    )

    group_reg_no_endline <- feols(as.formula(paste0(var, " ~ ", controls, " + i(treatment) ", fe_spec)),
        cluster = "hh_id",
        data = reg_data %>% filter(period < 6)
    ) 

    # By Treatment groups - balanced_risky
    group_reg_balanced <- feols(as.formula(paste0(var, " ~ ", controls, " + i(treatment_balanced) ", fe_spec)),
        cluster = "hh_id",
        data = reg_data
    )
    # By Treatment groups - balanced_risky
    group_reg_split <- feols(as.formula(paste0(var, " ~ ", controls, " + i(treatment_split) ", fe_spec)),
        cluster = "hh_id",
        data = reg_data
    )

    income_reg <- feols(as.formula(paste0(var, " ~ ", controls, " + study_income ", fe_spec)),
        cluster = "hh_id",
        data = reg_data
    )

    income_and_treatment_reg <- feols(as.formula(paste0(var, " ~ ", controls, " + i(treatment) + study_income ", fe_spec)),
        cluster = "hh_id",
        data = reg_data
    )

    income_treatment_interaction_reg <- feols(as.formula(paste0(var, " ~ ", controls, " + i(treatment) * study_income ", fe_spec)),
        cluster = "hh_id",
        data = reg_data,
        collin.tol = 1e-5
    )

    draw_imputed_reg <- feols(as.formula(paste0(var, " ~ ", controls, " + i(draw_imputed, ref = 'C') + unpredictable ", fe_spec)),
        cluster = "hh_id",
        data = reg_data
    )

    draw_imputed_with_lag_reg <- feols(as.formula(paste0(var, " ~ ", controls, " + i(draw_imputed, ref = 'C') + i(draw_imputed_lag1, ref = 'C') + unpredictable ", fe_spec)),
        cluster = "hh_id",
        data = reg_data
    )

    draw_realized_reg <- feols(as.formula(paste0(var, " ~ ", controls, " + i(draw_realized, ref = 'C') + unpredictable ", fe_spec)),
        cluster = "hh_id",
        data = reg_data %>% filter(draw_realized != "")
    )

    draw_realized_with_lag_reg <- feols(as.formula(paste0(var, " ~ ", controls, " + i(draw_realized, ref = 'C') + i(draw_realized_lag1, ref = 'C') + unpredictable ", fe_spec)),
        cluster = "hh_id",
        data = reg_data %>% filter(draw_realized != "" & draw_realized_lag1 != "")
    )

    # By Treatment groups -> Using balanced panel of people who completed all surveys
    balanced_panel_reg <- feols(as.formula(paste0(var, " ~ ", controls, " + i(treatment) ", fe_spec)),
        cluster = "hh_id",
        data = reg_data %>% filter(completed_all_surveys == 1)
    )

    endline_only <- feols(as.formula(paste0(var, " ~ ", controls, " + i(treatment) ", fe_spec_endline)),
        cluster = "community_id",
        data = reg_data %>% filter(period == 6)
    )

    treated_v_control <- feols(as.formula(paste0(var, " ~ ", controls, " + treated ", fe_spec)),
        cluster = "hh_id",
        data = reg_data
    )

    treated_v_control_endline <- feols(as.formula(paste0(var, " ~ ", controls, " + treated ", fe_spec_endline, " + enum_id")),
        cluster = "community_id",
        data = reg_data %>% filter(period == 6)
    )

    # Create named list using simple numeric names to avoid HTML encoding
    return(setNames(
        list(
            group_reg, group_reg_balanced, group_reg_split,
            income_reg, income_and_treatment_reg, income_treatment_interaction_reg,
            draw_imputed_reg, draw_imputed_with_lag_reg, draw_realized_reg,
            draw_realized_with_lag_reg, balanced_panel_reg, endline_only,
            treated_v_control, treated_v_control_endline, group_reg_with_baseline, group_reg_no_endline
        ),
        c(
            var,
            paste0(var, " - Balanced Risky"),
            paste0(var, " - Split Risky"),
            paste0(var, " - Income"),
            paste0(var, " - Income + Arm"),
            paste0(var, " - Income X Arm"),
            paste0(var, " - Imputed Draw"),
            paste0(var, " - Imputed Draw with Lag"),
            paste0(var, " - Realized Draw"),
            paste0(var, " - Realized Draw with Lag"),
            paste0(var, " - Balanced Panel"),
            paste0(var, " - Endline Only"),
            paste0(var, " - Treated vs Control"),
            paste0(var, " - Treated vs Control (Endline Only)"),
            paste0(var, " - Baseline Included"),
            paste0(var, " - Excluding Endline")
        )
    ))
}


allLabels <- c(
    "treatment" = "Arm",
    "treated" = "Treated",
    "treatment::1" = "Stable",
    "treatment::2" = "Predictable",
    "treatment::3" = "Risky",
    "treatment_balanced::1" = "Stable",
    "treatment_balanced::2" = "Predictable",
    "treatment_balanced::3" = "Risky (Balanced)",
    "treatment_split::1" = "Stable",
    "treatment_split::2" = "Predictable",
    "treatment_split::3" = "Risky Medium",
    "treatment_split::4" = "Risky High",
    "treatment_split::5" = "Risky Low",
    "draw_realized::H" = "High Draw",
    "draw_realized::M" = "Medium Draw",
    "draw_realized::L" = "Low Draw",
    "draw_realized_lag1::H" = "High Draw previous period",
    "draw_realized_lag1::M" = "Medium Draw previous period",
    "draw_realized_lag1::L" = "Low Draw previous period",
    "draw_imputed::H" = "High Draw",
    "draw_imputed::M" = "Medium Draw",
    "draw_imputed::L" = "Low Draw",
    "draw_imputed_lag1::H" = "High Draw previous period",
    "draw_imputed_lag1::M" = "Medium Draw previous period",
    "draw_imputed_lag1::L" = "Low Draw previous period",
    "study_income" = "Study Income",
    "study_income:treatment::1" = "Stable × Study Income",
    "study_income:treatment::2" = "Predictable × Study Income",
    "study_income:treatment::3" = "Risky × Study Income"
    # add labels for interaction between study income and arm
)

makeTable <- function(models) {
    table <- modelsummary(models,
        escape = FALSE,
        output = "kableExtra",
        estimate = "{estimate}{stars}",
        statistic = "{std.error} ({conf.low}, {conf.high})",
        coef_omit = "_bl|hh_size|census_wealth_index",
        coef_rename = allLabels,
        coef_omit_sources = FALSE,
        stars = c(`***` = 0.01, `**` = 0.05, `*` = 0.1),
        gof_map = tribble(
            ~raw, ~clean, ~fmt,
            "nobs", "Observations", 0,
            "FE", "Community FE", 1,
        )
    ) %>%
        kable_classic(full_width = F, html_font = "Cambria", fixed_thead = T)
    table
}

# Helper: given a vector of model indices, collect models for all dependent_vars
collect_models <- function(indices) {
  unlist(lapply(indices, function(i) {
    lapply(dependent_vars, function(v) models[[v]][[i]])
  }), recursive = FALSE)
}
```
Code
```{r}
data_set_index <- 1
chosen <- file_dfs[[data_set_index]]
full_list <- get_varying_vars(chosen, c("hh_id", "period"))
```

1 Regressions for Food_Wins_Purch_PC.dta

Code
```{r}
#| tbl-cap: ""

makeTable(collect_models(c(1, 2)))
```
 food_purchase_total_99_pc  food_purchase_total_phone_99_pc  food_purchase_total_bl_99_pc  food_purchase_grains_99_pc  food_purchase_veges_99_pc  food_purchase_bevs_99_pc  food_purchase_pulses_99_pc  food_purchase_dairy_99_pc  food_purchase_meat_99_pc  food_purchase_total_99_pc  food_purchase_total_phone_99_pc  food_purchase_total_bl_99_pc  food_purchase_grains_99_pc  food_purchase_veges_99_pc  food_purchase_bevs_99_pc  food_purchase_pulses_99_pc  food_purchase_dairy_99_pc  food_purchase_meat_99_pc
Stable 7.621*** 6.663*** 0.568* 5.564*** 0.373** 0.081 1.090** −0.020 0.339 7.874*** 6.942*** 0.608* 5.784*** 0.395** 0.082 1.105** −0.015 0.355
2.267 (3.176, 12.067) 2.079 (2.587, 10.739) 0.338 (−0.095, 1.232) 1.542 (2.540, 8.589) 0.168 (0.043, 0.704) 0.096 (−0.107, 0.268) 0.493 (0.124, 2.057) 0.077 (−0.171, 0.130) 0.245 (−0.141, 0.819) 2.265 (3.432, 12.317) 2.078 (2.865, 11.018) 0.336 (−0.052, 1.267) 1.542 (2.759, 8.809) 0.168 (0.067, 0.724) 0.096 (−0.105, 0.270) 0.492 (0.139, 2.070) 0.077 (−0.166, 0.135) 0.244 (−0.124, 0.835)
Predictable 7.941*** 7.471*** 0.477 4.545*** 0.445** 0.210** 2.164*** 0.141* 0.648** 7.797*** 7.462*** 0.412 4.608*** 0.444** 0.208** 2.113*** 0.142* 0.638**
2.306 (3.419, 12.462) 2.134 (3.286, 11.656) 0.366 (−0.241, 1.195) 1.495 (1.613, 7.477) 0.174 (0.104, 0.785) 0.106 (0.003, 0.417) 0.518 (1.148, 3.181) 0.080 (−0.016, 0.299) 0.296 (0.067, 1.228) 2.313 (3.260, 12.335) 2.134 (3.276, 11.648) 0.382 (−0.338, 1.162) 1.490 (1.685, 7.532) 0.174 (0.103, 0.785) 0.106 (0.001, 0.416) 0.519 (1.095, 3.131) 0.081 (−0.016, 0.300) 0.297 (0.055, 1.221)
Risky 7.333*** 6.789*** 0.333 5.178*** 0.219 0.104 1.559*** 0.018 0.322
1.896 (3.614, 11.052) 1.725 (3.407, 10.171) 0.321 (−0.296, 0.962) 1.227 (2.772, 7.584) 0.141 (−0.057, 0.495) 0.079 (−0.052, 0.260) 0.427 (0.722, 2.396) 0.067 (−0.113, 0.148) 0.223 (−0.115, 0.760)
Risky (Balanced) 7.902*** 7.010*** 0.184 5.921*** 0.098 0.041 1.550*** −0.125 0.033
2.593 (2.816, 12.988) 2.409 (2.285, 11.734) 0.353 (−0.508, 0.876) 1.791 (2.408, 9.434) 0.176 (−0.247, 0.443) 0.099 (−0.154, 0.236) 0.570 (0.431, 2.668) 0.078 (−0.277, 0.028) 0.283 (−0.523, 0.588)
Observations 12593 12593 12593 12593 12593 12593 12593 12593 12593 8065 8065 8065 8065 8065 8065 8065 8065 8065
Code
```{r}
#| tbl-cap: ""

makeTable(collect_models(3))
```
 food_purchase_total_99_pc  food_purchase_total_phone_99_pc  food_purchase_total_bl_99_pc  food_purchase_grains_99_pc  food_purchase_veges_99_pc  food_purchase_bevs_99_pc  food_purchase_pulses_99_pc  food_purchase_dairy_99_pc  food_purchase_meat_99_pc
Stable 7.611*** 6.713*** 0.569* 5.603*** 0.371** 0.082 1.075** −0.019 0.345
2.266 (3.167, 12.056) 2.077 (2.640, 10.786) 0.339 (−0.096, 1.234) 1.541 (2.581, 8.626) 0.168 (0.042, 0.700) 0.096 (−0.106, 0.270) 0.494 (0.106, 2.044) 0.077 (−0.169, 0.131) 0.245 (−0.136, 0.826)
Predictable 7.814*** 7.440*** 0.435 4.537*** 0.440** 0.212** 2.107*** 0.138* 0.659**
2.310 (3.285, 12.344) 2.135 (3.251, 11.628) 0.372 (−0.295, 1.165) 1.493 (1.609, 7.465) 0.173 (0.100, 0.780) 0.106 (0.005, 0.419) 0.520 (1.088, 3.126) 0.081 (−0.020, 0.296) 0.296 (0.079, 1.239)
Risky Medium 7.748*** 6.828*** 0.186 5.729*** 0.083 0.033 1.549*** −0.126 0.024
2.593 (2.663, 12.833) 2.408 (2.105, 11.550) 0.356 (−0.512, 0.885) 1.793 (2.213, 9.245) 0.176 (−0.262, 0.428) 0.100 (−0.162, 0.229) 0.570 (0.432, 2.666) 0.078 (−0.279, 0.026) 0.284 (−0.533, 0.580)
Risky High 5.467* 5.388** 0.031 4.279** 0.186 0.073 0.713 0.064 0.596
3.081 (−0.575, 11.509) 2.665 (0.161, 10.614) 0.475 (−0.900, 0.962) 1.894 (0.563, 7.995) 0.220 (−0.246, 0.618) 0.119 (−0.161, 0.307) 0.670 (−0.601, 2.027) 0.120 (−0.171, 0.299) 0.389 (−0.167, 1.358)
Risky Low 8.483*** 7.808*** 0.731 5.935*** 0.253 0.271* 1.498** 0.020 0.605
3.062 (2.478, 14.488) 2.908 (2.105, 13.511) 0.445 (−0.142, 1.605) 2.048 (1.918, 9.952) 0.219 (−0.176, 0.683) 0.146 (−0.015, 0.557) 0.732 (0.063, 2.933) 0.100 (−0.177, 0.217) 0.397 (−0.173, 1.384)
Observations 9830 9830 9830 9830 9830 9830 9830 9830 9830
Code
```{r}
#| tbl-cap: ""

makeTable(collect_models(c(4, 5, 6)))
```
 food_purchase_total_99_pc  food_purchase_total_phone_99_pc  food_purchase_total_bl_99_pc  food_purchase_grains_99_pc  food_purchase_veges_99_pc  food_purchase_bevs_99_pc  food_purchase_pulses_99_pc  food_purchase_dairy_99_pc  food_purchase_meat_99_pc  food_purchase_total_99_pc  food_purchase_total_phone_99_pc  food_purchase_total_bl_99_pc  food_purchase_grains_99_pc  food_purchase_veges_99_pc  food_purchase_bevs_99_pc  food_purchase_pulses_99_pc  food_purchase_dairy_99_pc  food_purchase_meat_99_pc  food_purchase_total_99_pc  food_purchase_total_phone_99_pc  food_purchase_total_bl_99_pc  food_purchase_grains_99_pc  food_purchase_veges_99_pc  food_purchase_bevs_99_pc  food_purchase_pulses_99_pc  food_purchase_dairy_99_pc  food_purchase_meat_99_pc
Study Income 0.013* 0.010 0.003* 0.010* 0.000 0.000 0.002 0.000 −0.000 −0.011 −0.014* 0.002 −0.007 −0.001 −0.000 −0.004* 0.000 −0.002* −0.020* −0.023** 0.003 −0.016** −0.000 −0.000 −0.004 0.000 −0.002*
0.008 (−0.002, 0.028) 0.007 (−0.004, 0.023) 0.002 (−0.001, 0.006) 0.005 (−0.001, 0.020) 0.001 (−0.001, 0.002) 0.000 (−0.001, 0.001) 0.002 (−0.002, 0.005) 0.000 (−0.000, 0.001) 0.001 (−0.002, 0.002) 0.008 (−0.028, 0.005) 0.008 (−0.029, 0.001) 0.002 (−0.002, 0.006) 0.006 (−0.018, 0.004) 0.001 (−0.002, 0.001) 0.000 (−0.001, 0.000) 0.002 (−0.008, 0.000) 0.000 (−0.001, 0.001) 0.001 (−0.004, 0.000) 0.010 (−0.040, 0.000) 0.009 (−0.041, −0.005) 0.002 (−0.002, 0.008) 0.007 (−0.030, −0.002) 0.001 (−0.002, 0.001) 0.000 (−0.001, 0.001) 0.002 (−0.008, 0.001) 0.000 (−0.001, 0.001) 0.001 (−0.005, 0.000)
Stable 8.747*** 8.031*** 0.362 6.250*** 0.432** 0.117 1.449*** −0.026 0.521* 8.353 7.471 0.209 2.450 0.841 −0.135 1.829 0.482 1.187
2.397 (4.047, 13.448) 2.198 (3.721, 12.342) 0.393 (−0.409, 1.134) 1.627 (3.060, 9.440) 0.180 (0.078, 0.786) 0.101 (−0.082, 0.316) 0.540 (0.391, 2.507) 0.084 (−0.190, 0.138) 0.269 (−0.006, 1.048) 6.021 (−3.454, 20.161) 5.535 (−3.383, 18.324) 1.112 (−1.971, 2.389) 3.605 (−4.620, 9.520) 0.569 (−0.275, 1.957) 0.232 (−0.590, 0.321) 2.128 (−2.345, 6.003) 0.318 (−0.142, 1.106) 0.870 (−0.518, 2.892)
Predictable 9.050*** 8.818*** 0.274 5.220*** 0.502*** 0.246** 2.517*** 0.136 0.827*** 6.883** 6.390** 0.563 3.268* 0.506** 0.273** 2.498*** 0.082 0.617*
2.462 (4.222, 13.877) 2.276 (4.355, 13.281) 0.406 (−0.522, 1.070) 1.612 (2.059, 8.382) 0.186 (0.138, 0.867) 0.110 (0.030, 0.462) 0.553 (1.433, 3.602) 0.085 (−0.030, 0.301) 0.318 (0.203, 1.451) 2.731 (1.528, 12.238) 2.535 (1.419, 11.360) 0.450 (−0.320, 1.447) 1.799 (−0.260, 6.797) 0.205 (0.104, 0.908) 0.120 (0.037, 0.509) 0.625 (1.272, 3.725) 0.089 (−0.092, 0.256) 0.363 (−0.095, 1.329)
Risky 8.439*** 8.133*** 0.130 5.852*** 0.277* 0.140 1.911*** 0.012 0.501** 9.235*** 9.030*** 0.032 6.697*** 0.261 0.140 1.904*** 0.013 0.553**
2.103 (4.315, 12.564) 1.934 (4.341, 11.925) 0.351 (−0.557, 0.818) 1.384 (3.138, 8.566) 0.158 (−0.033, 0.587) 0.086 (−0.028, 0.308) 0.474 (0.982, 2.841) 0.073 (−0.130, 0.154) 0.254 (0.003, 0.999) 2.203 (4.915, 13.556) 2.030 (5.048, 13.011) 0.374 (−0.702, 0.765) 1.461 (3.831, 9.563) 0.166 (−0.066, 0.587) 0.089 (−0.035, 0.314) 0.492 (0.940, 2.868) 0.075 (−0.134, 0.159) 0.268 (0.027, 1.078)
Stable × Study Income 0.012 0.015 0.001 0.047 −0.004 0.003 −0.004 −0.005* −0.006
0.059 (−0.104, 0.128) 0.054 (−0.091, 0.121) 0.011 (−0.021, 0.022) 0.036 (−0.024, 0.118) 0.005 (−0.015, 0.006) 0.002 (−0.002, 0.007) 0.020 (−0.044, 0.036) 0.003 (−0.011, 0.001) 0.008 (−0.022, 0.010)
Predictable × Study Income 0.031* 0.034** −0.004 0.029** −0.000 −0.000 0.000 0.001 0.003
0.017 (−0.003, 0.065) 0.016 (0.003, 0.065) 0.004 (−0.012, 0.004) 0.012 (0.006, 0.052) 0.001 (−0.003, 0.002) 0.001 (−0.002, 0.001) 0.004 (−0.008, 0.009) 0.001 (−0.001, 0.002) 0.002 (−0.002, 0.007)
Observations 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593
Note

For risky arms that did not complete dropoff, we impute a medium draw for the regressions below

Code
```{r}
#| tbl-cap: ""

makeTable(collect_models(c(7, 8)))
```
 food_purchase_total_99_pc  food_purchase_total_phone_99_pc  food_purchase_total_bl_99_pc  food_purchase_grains_99_pc  food_purchase_veges_99_pc  food_purchase_bevs_99_pc  food_purchase_pulses_99_pc  food_purchase_dairy_99_pc  food_purchase_meat_99_pc  food_purchase_total_99_pc  food_purchase_total_phone_99_pc  food_purchase_total_bl_99_pc  food_purchase_grains_99_pc  food_purchase_veges_99_pc  food_purchase_bevs_99_pc  food_purchase_pulses_99_pc  food_purchase_dairy_99_pc  food_purchase_meat_99_pc
High Draw 6.287*** 5.680*** 0.646* 3.620** 0.337* 0.149 1.682*** 0.144* 0.400 9.363*** 7.742*** 1.338** 5.619*** 0.324 0.260* 2.034*** 0.074 0.575
2.285 (1.805, 10.768) 2.119 (1.524, 9.835) 0.377 (−0.094, 1.386) 1.500 (0.679, 6.560) 0.172 (−0.000, 0.675) 0.104 (−0.055, 0.352) 0.522 (0.658, 2.706) 0.080 (−0.013, 0.301) 0.285 (−0.160, 0.959) 2.985 (3.508, 15.217) 2.739 (2.370, 13.113) 0.574 (0.212, 2.464) 2.054 (1.591, 9.646) 0.209 (−0.087, 0.734) 0.148 (−0.030, 0.550) 0.724 (0.615, 3.453) 0.110 (−0.142, 0.290) 0.392 (−0.194, 1.345)
Low Draw 7.670*** 7.068*** 0.565 4.482*** 0.376** 0.162 2.113*** 0.100 0.510* 10.787*** 9.184*** 1.249** 6.483*** 0.368* 0.274** 2.510*** 0.031 0.691*
2.331 (3.099, 12.242) 2.160 (2.831, 11.304) 0.359 (−0.139, 1.270) 1.520 (1.501, 7.463) 0.177 (0.029, 0.722) 0.103 (−0.040, 0.364) 0.525 (1.084, 3.142) 0.080 (−0.057, 0.256) 0.300 (−0.079, 1.098) 2.934 (5.034, 16.540) 2.727 (3.836, 14.532) 0.533 (0.203, 2.295) 2.018 (2.525, 10.440) 0.213 (−0.049, 0.785) 0.139 (0.001, 0.547) 0.720 (1.098, 3.922) 0.107 (−0.179, 0.241) 0.405 (−0.104, 1.486)
Medium Draw 8.564*** 7.739*** 0.442 6.051*** 0.460*** 0.134 1.349*** −0.001 0.528** 8.506*** 7.701*** 0.463 6.035*** 0.441*** 0.127 1.320*** −0.015 0.610**
2.213 (4.225, 12.904) 2.028 (3.762, 11.716) 0.343 (−0.230, 1.114) 1.489 (3.130, 8.971) 0.167 (0.133, 0.787) 0.092 (−0.047, 0.315) 0.482 (0.404, 2.294) 0.075 (−0.148, 0.145) 0.248 (0.043, 1.014) 2.233 (4.127, 12.885) 2.042 (3.696, 11.706) 0.364 (−0.252, 1.177) 1.495 (3.104, 8.967) 0.170 (0.109, 0.774) 0.093 (−0.056, 0.310) 0.490 (0.359, 2.282) 0.074 (−0.161, 0.130) 0.250 (0.120, 1.099)
unpredictable 0.264 0.342 −0.262 0.999 −0.144 −0.050 −0.292 −0.096 −0.136 0.614 0.584 −0.227 1.192 −0.122 −0.032 −0.213 −0.086 −0.208
1.917 (−3.494, 4.023) 1.765 (−3.120, 3.804) 0.234 (−0.721, 0.197) 1.234 (−1.422, 3.419) 0.142 (−0.423, 0.135) 0.083 (−0.212, 0.113) 0.436 (−1.147, 0.564) 0.062 (−0.218, 0.025) 0.251 (−0.628, 0.357) 1.881 (−3.074, 4.302) 1.710 (−2.770, 3.939) 0.270 (−0.758, 0.303) 1.203 (−1.166, 3.551) 0.140 (−0.397, 0.152) 0.089 (−0.206, 0.142) 0.425 (−1.046, 0.620) 0.063 (−0.210, 0.038) 0.240 (−0.679, 0.262)
draw_imputed_lag1:: 1.465 0.967 0.091 0.796 0.128 0.088 0.316 0.078 −0.526
2.746 (−3.920, 6.850) 2.642 (−4.215, 6.148) 0.317 (−0.531, 0.712) 2.000 (−3.127, 4.718) 0.198 (−0.260, 0.517) 0.128 (−0.163, 0.338) 0.769 (−1.191, 1.824) 0.098 (−0.114, 0.270) 0.412 (−1.333, 0.281)
High Draw previous period −4.459* −3.249 −0.790 −2.630 −0.060 −0.155 −0.922 0.057 −0.183
2.351 (−9.070, 0.151) 2.037 (−7.244, 0.746) 0.612 (−1.990, 0.410) 1.610 (−5.788, 0.527) 0.158 (−0.370, 0.251) 0.139 (−0.427, 0.117) 0.589 (−2.078, 0.234) 0.089 (−0.117, 0.231) 0.315 (−0.801, 0.434)
Low Draw previous period −3.527 −2.126 −0.906 −2.480 0.042 −0.146 −0.083 0.083 −0.063
2.376 (−8.186, 1.131) 2.055 (−6.157, 1.904) 0.619 (−2.120, 0.308) 1.623 (−5.664, 0.703) 0.162 (−0.277, 0.360) 0.138 (−0.416, 0.125) 0.599 (−1.258, 1.092) 0.092 (−0.096, 0.263) 0.321 (−0.693, 0.568)
Observations 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593
Note

Only treated participants that completed pickup are included in the regressions below.

Code
```{r}
#| tbl-cap: ""

makeTable(collect_models(c(9, 10)))
```
 food_purchase_total_99_pc  food_purchase_total_phone_99_pc  food_purchase_total_bl_99_pc  food_purchase_grains_99_pc  food_purchase_veges_99_pc  food_purchase_bevs_99_pc  food_purchase_pulses_99_pc  food_purchase_dairy_99_pc  food_purchase_meat_99_pc  food_purchase_total_99_pc  food_purchase_total_phone_99_pc  food_purchase_total_bl_99_pc  food_purchase_grains_99_pc  food_purchase_veges_99_pc  food_purchase_bevs_99_pc  food_purchase_pulses_99_pc  food_purchase_dairy_99_pc  food_purchase_meat_99_pc
High Draw 7.394*** 6.847*** 0.507 4.199*** 0.437** 0.174 1.962*** 0.163* 0.610** 2.925 2.621 0.734 1.262 −0.051 −0.239 0.515 0.010 0.543
2.373 (2.741, 12.048) 2.192 (2.547, 11.146) 0.400 (−0.279, 1.292) 1.540 (1.179, 7.220) 0.177 (0.090, 0.784) 0.111 (−0.043, 0.391) 0.541 (0.901, 3.022) 0.085 (−0.003, 0.330) 0.302 (0.019, 1.201) 912512.632 (−1789487.087, 1789492.936) 850026.499 (−1666948.472, 1666953.714) 206209.706 (−404388.417, 404389.885) 634440.926 (−1244174.062, 1244176.586) 66180.738 (−129784.304, 129784.201) 36204.989 (−71000.314, 70999.837) 214188.606 (−420035.720, 420036.750) 34155.567 (−66981.032, 66981.052) 110956.205 (−217590.988, 217592.074)
Low Draw 8.445*** 7.924*** 0.421 4.864*** 0.446** 0.194* 2.352*** 0.117 0.692** 5.213 4.867 0.673 2.706 0.022 −0.168 1.143 −0.007 0.632
2.420 (3.699, 13.192) 2.241 (3.528, 12.319) 0.390 (−0.343, 1.185) 1.571 (1.783, 7.946) 0.181 (0.091, 0.802) 0.111 (−0.024, 0.411) 0.541 (1.290, 3.414) 0.084 (−0.047, 0.282) 0.318 (0.069, 1.315) 912512.717 (−1789484.964, 1789495.391) 850026.595 (−1666946.415, 1666956.150) 206209.645 (−404388.360, 404389.705) 634440.970 (−1244172.705, 1244178.118) 66180.739 (−129784.232, 129784.277) 36204.989 (−71000.245, 70999.908) 214188.620 (−420035.120, 420037.407) 34155.566 (−66981.047, 66981.033) 110956.217 (−217590.923, 217592.187)
Medium Draw 7.516*** 6.607*** 0.569* 5.639*** 0.350** 0.091 1.060** −0.041 0.317 5.908** 5.138** 0.658* 4.669*** 0.293* 0.077 0.679 −0.060 0.258
2.290 (3.025, 12.006) 2.099 (2.489, 10.724) 0.337 (−0.092, 1.231) 1.565 (2.569, 8.709) 0.169 (0.018, 0.681) 0.097 (−0.099, 0.281) 0.489 (0.100, 2.019) 0.076 (−0.191, 0.109) 0.246 (−0.166, 0.800) 2.302 (1.395, 10.422) 2.092 (1.036, 9.240) 0.389 (−0.104, 1.420) 1.556 (1.618, 7.721) 0.175 (−0.051, 0.636) 0.099 (−0.117, 0.271) 0.488 (−0.279, 1.637) 0.074 (−0.204, 0.084) 0.241 (−0.216, 0.732)
unpredictable −0.946 −1.018 −0.050 0.395 −0.261* −0.091 −0.635 −0.120* −0.408 −1.369 −1.299 −0.116 0.112 −0.238 −0.102 −0.562 −0.120* −0.579**
2.027 (−4.921, 3.029) 1.878 (−4.701, 2.666) 0.279 (−0.597, 0.497) 1.312 (−2.178, 2.969) 0.147 (−0.550, 0.028) 0.096 (−0.279, 0.098) 0.467 (−1.550, 0.280) 0.069 (−0.255, 0.015) 0.269 (−0.936, 0.121) 1.981 (−5.254, 2.516) 1.816 (−4.860, 2.261) 0.330 (−0.763, 0.530) 1.278 (−2.394, 2.617) 0.147 (−0.526, 0.051) 0.104 (−0.306, 0.102) 0.462 (−1.469, 0.345) 0.069 (−0.254, 0.015) 0.255 (−1.079, −0.079)
High Draw previous period 2.011 1.836 −0.159 1.654 0.357 0.361 0.503 0.140 0.020
912512.480 (−1789487.702, 1789491.724) 850026.356 (−1666948.976, 1666952.648) 206209.642 (−404389.185, 404388.868) 634440.816 (−1244173.454, 1244176.762) 66180.742 (−129783.903, 129784.618) 36204.992 (−70999.721, 71000.443) 214188.572 (−420035.666, 420036.673) 34155.564 (−66980.895, 66981.175) 110956.185 (−217591.471, 217591.511)
Low Draw previous period 2.861 2.835 −0.252 1.719 0.433 0.371 1.288 0.176 0.138
912512.559 (−1789487.008, 1789492.729) 850026.410 (−1666948.084, 1666953.755) 206209.720 (−404389.432, 404388.928) 634440.874 (−1244173.503, 1244176.941) 66180.744 (−129783.832, 129784.697) 36204.993 (−70999.713, 71000.455) 214188.557 (−420034.851, 420037.427) 34155.563 (−66980.857, 66981.209) 110956.192 (−217591.367, 217591.643)
Observations 11968 11968 11968 11968 11968 11968 11968 11968 11968 10385 10385 10385 10385 10385 10385 10385 10385 10385
Note

Only participants who completed all surveys are included in the regressions below.

Code
```{r}
#| tbl-cap: ""

makeTable(collect_models(11))
```
 food_purchase_total_99_pc  food_purchase_total_phone_99_pc  food_purchase_total_bl_99_pc  food_purchase_grains_99_pc  food_purchase_veges_99_pc  food_purchase_bevs_99_pc  food_purchase_pulses_99_pc  food_purchase_dairy_99_pc  food_purchase_meat_99_pc
Stable 9.021*** 8.305*** 0.547 6.577*** 0.571*** 0.130 1.072* 0.078 0.545**
2.667 (3.790, 14.252) 2.454 (3.491, 13.120) 0.338 (−0.116, 1.211) 1.861 (2.928, 10.227) 0.177 (0.223, 0.919) 0.110 (−0.085, 0.345) 0.571 (−0.048, 2.192) 0.088 (−0.095, 0.251) 0.272 (0.012, 1.078)
Predictable 9.199*** 8.597*** 0.540 5.168*** 0.631*** 0.256** 1.896*** 0.175* 0.908***
2.714 (3.875, 14.523) 2.563 (3.570, 13.625) 0.347 (−0.141, 1.222) 1.806 (1.625, 8.711) 0.188 (0.262, 1.000) 0.125 (0.011, 0.501) 0.604 (0.712, 3.080) 0.091 (−0.003, 0.352) 0.338 (0.244, 1.571)
Risky 9.033*** 8.324*** 0.608** 5.972*** 0.422*** 0.197** 1.773*** 0.104 0.567**
2.244 (4.632, 13.435) 2.074 (4.257, 12.392) 0.310 (0.001, 1.216) 1.510 (3.010, 8.935) 0.145 (0.138, 0.707) 0.093 (0.015, 0.380) 0.513 (0.766, 2.780) 0.077 (−0.047, 0.254) 0.250 (0.077, 1.058)
Observations 9384 9384 9384 9384 9384 9384 9384 9384 9384
Note

The regressions below include baseline (period 0) data.

Code
```{r}
#| tbl-cap: ""

makeTable(collect_models(15))
```
 food_purchase_total_99_pc  food_purchase_total_phone_99_pc  food_purchase_total_bl_99_pc  food_purchase_grains_99_pc  food_purchase_veges_99_pc  food_purchase_bevs_99_pc  food_purchase_pulses_99_pc  food_purchase_dairy_99_pc  food_purchase_meat_99_pc
Stable 6.366*** 5.575*** 0.447 4.716*** 0.331** 0.065 0.893** −0.020 0.225
1.946 (2.549, 10.183) 1.766 (2.111, 9.038) 0.330 (−0.201, 1.095) 1.313 (2.142, 7.290) 0.144 (0.049, 0.613) 0.083 (−0.097, 0.227) 0.422 (0.065, 1.721) 0.066 (−0.150, 0.109) 0.211 (−0.188, 0.638)
Predictable 6.787*** 6.334*** 0.410 3.962*** 0.363** 0.156* 1.828*** 0.120* 0.520**
1.982 (2.900, 10.673) 1.818 (2.768, 9.900) 0.347 (−0.271, 1.090) 1.275 (1.461, 6.462) 0.149 (0.071, 0.655) 0.091 (−0.023, 0.335) 0.445 (0.955, 2.701) 0.069 (−0.014, 0.255) 0.253 (0.024, 1.017)
Risky 5.897*** 5.520*** 0.178 4.311*** 0.167 0.069 1.226*** 0.007 0.206
1.627 (2.707, 9.088) 1.467 (2.643, 8.397) 0.304 (−0.418, 0.773) 1.043 (2.266, 6.356) 0.121 (−0.070, 0.403) 0.069 (−0.066, 0.205) 0.366 (0.508, 1.945) 0.057 (−0.106, 0.119) 0.191 (−0.168, 0.580)
Observations 14865 14865 14865 14865 14865 14865 14865 14865 14865
Note

The regressions below exclude endline (period 6) data.

Code
```{r}
#| tbl-cap: ""

makeTable(collect_models(16))
```
 food_purchase_total_99_pc  food_purchase_total_phone_99_pc  food_purchase_total_bl_99_pc  food_purchase_grains_99_pc  food_purchase_veges_99_pc  food_purchase_bevs_99_pc  food_purchase_pulses_99_pc  food_purchase_dairy_99_pc  food_purchase_meat_99_pc
Stable 7.293*** 6.668*** 0.069 5.470*** 0.338** 0.039 0.932* −0.015 0.416*
2.230 (2.920, 11.666) 2.180 (2.393, 10.944) 0.053 (−0.036, 0.174) 1.631 (2.272, 8.667) 0.169 (0.006, 0.670) 0.086 (−0.129, 0.207) 0.504 (−0.056, 1.920) 0.081 (−0.174, 0.145) 0.246 (−0.066, 0.897)
Predictable 7.610*** 7.415*** 0.070 4.361*** 0.471*** 0.176* 1.977*** 0.129 0.662**
2.242 (3.214, 12.005) 2.234 (3.034, 11.795) 0.054 (−0.036, 0.176) 1.577 (1.268, 7.453) 0.173 (0.132, 0.809) 0.101 (−0.021, 0.373) 0.518 (0.962, 2.992) 0.081 (−0.030, 0.289) 0.292 (0.091, 1.234)
Risky 7.155*** 6.769*** 0.085* 5.044*** 0.235* 0.070 1.432*** 0.014 0.420*
1.831 (3.563, 10.746) 1.810 (3.220, 10.318) 0.047 (−0.007, 0.177) 1.294 (2.507, 7.582) 0.140 (−0.039, 0.509) 0.073 (−0.073, 0.214) 0.430 (0.588, 2.277) 0.070 (−0.122, 0.150) 0.220 (−0.012, 0.853)
Observations 10345 10345 10345 10345 10345 10345 10345 10345 10345
Code
```{r}
data_set_index <- 2
chosen <- file_dfs[[data_set_index]]
full_list <- get_varying_vars(chosen, c("hh_id", "period"))
```

2 Regressions for Food_Wins_Purch_AEM.dta

Code
```{r}
#| tbl-cap: ""

makeTable(collect_models(c(1, 2)))
```
 food_purchase_total_99_AEM  food_purchase_total_phone_99_AEM  food_purchase_total_bl_99_AEM  food_purchase_grains_99_AEM  food_purchase_veges_99_AEM  food_purchase_bevs_99_AEM  food_purchase_pulses_99_AEM  food_purchase_dairy_99_AEM  food_purchase_meat_99_AEM  fopurch_tot_99_NoMed_AEM  fopurch_tot_bl_99_NoMed_AEM  fopurch_tot_99_NoGrain_AEM  fopurch_tot_phone_99_NoGrain_AEM  fopurch_tot_bl_99_NoGrain_AEM  fopurch_tot_99_NoGr_NoMed_AEM  fopurch_tot_bl_99_NoGr_NoMed_AEM  food_purchase_total_99_AEM  food_purchase_total_phone_99_AEM  food_purchase_total_bl_99_AEM  food_purchase_grains_99_AEM  food_purchase_veges_99_AEM  food_purchase_bevs_99_AEM  food_purchase_pulses_99_AEM  food_purchase_dairy_99_AEM  food_purchase_meat_99_AEM  fopurch_tot_99_NoMed_AEM  fopurch_tot_bl_99_NoMed_AEM  fopurch_tot_99_NoGrain_AEM  fopurch_tot_phone_99_NoGrain_AEM  fopurch_tot_bl_99_NoGrain_AEM  fopurch_tot_99_NoGr_NoMed_AEM  fopurch_tot_bl_99_NoGr_NoMed_AEM
Stable 8.864*** 7.777*** 0.670* 6.499*** 0.433** 0.101 1.278** −0.020 0.379 8.867*** 8.867*** 2.559** 2.559** 2.559** 2.531** 2.531** 9.170*** 8.113*** 0.712* 6.756*** 0.463** 0.103 1.298** −0.014 0.397 9.163*** 9.163*** 2.656** 2.656** 2.656** 2.617** 2.617**
2.589 (3.787, 13.942) 2.383 (3.104, 12.450) 0.381 (−0.078, 1.417) 1.771 (3.026, 9.971) 0.193 (0.055, 0.811) 0.109 (−0.111, 0.314) 0.567 (0.166, 2.390) 0.087 (−0.191, 0.151) 0.280 (−0.170, 0.927) 2.583 (3.802, 13.932) 2.583 (3.802, 13.932) 1.134 (0.335, 4.784) 1.134 (0.335, 4.784) 1.134 (0.335, 4.784) 1.120 (0.334, 4.727) 1.120 (0.334, 4.727) 2.586 (4.097, 14.243) 2.381 (3.441, 12.784) 0.379 (−0.032, 1.455) 1.769 (3.285, 10.227) 0.192 (0.086, 0.839) 0.108 (−0.109, 0.316) 0.567 (0.186, 2.409) 0.087 (−0.184, 0.156) 0.279 (−0.151, 0.945) 2.579 (4.104, 14.222) 2.579 (4.104, 14.222) 1.130 (0.440, 4.872) 1.130 (0.440, 4.872) 1.130 (0.440, 4.872) 1.115 (0.430, 4.805) 1.115 (0.430, 4.805)
Predictable 9.322*** 8.770*** 0.582 5.365*** 0.511*** 0.240** 2.522*** 0.159* 0.742** 9.335*** 9.335*** 4.074*** 4.074*** 4.074*** 4.059*** 4.059*** 9.187*** 8.779*** 0.514 5.446*** 0.513*** 0.239** 2.470*** 0.160* 0.735** 9.201*** 9.201*** 3.913*** 3.913*** 3.913*** 3.897*** 3.897***
2.661 (4.104, 14.541) 2.466 (3.933, 13.606) 0.415 (−0.232, 1.397) 1.726 (1.981, 8.750) 0.198 (0.123, 0.899) 0.120 (0.006, 0.475) 0.600 (1.345, 3.698) 0.091 (−0.020, 0.337) 0.341 (0.073, 1.411) 2.645 (4.149, 14.521) 2.645 (4.149, 14.521) 1.243 (1.636, 6.512) 1.243 (1.636, 6.512) 1.243 (1.636, 6.512) 1.222 (1.662, 6.456) 1.222 (1.662, 6.456) 2.669 (3.953, 14.422) 2.466 (3.942, 13.616) 0.433 (−0.335, 1.363) 1.721 (2.071, 8.821) 0.198 (0.124, 0.902) 0.120 (0.004, 0.475) 0.601 (1.292, 3.649) 0.091 (−0.019, 0.339) 0.342 (0.064, 1.406) 2.652 (3.999, 14.402) 2.652 (3.999, 14.402) 1.253 (1.455, 6.370) 1.253 (1.455, 6.370) 1.253 (1.455, 6.370) 1.231 (1.483, 6.312) 1.231 (1.483, 6.312)
Risky 8.237*** 7.620*** 0.404 5.833*** 0.246 0.120 1.736*** 0.021 0.342 8.190*** 8.190*** 2.593** 2.593** 2.593** 2.540** 2.540**
2.177 (3.969, 12.506) 1.987 (3.724, 11.515) 0.362 (−0.306, 1.114) 1.413 (3.063, 8.603) 0.161 (−0.069, 0.562) 0.090 (−0.057, 0.296) 0.489 (0.778, 2.694) 0.076 (−0.127, 0.170) 0.256 (−0.159, 0.843) 2.166 (3.943, 12.436) 2.166 (3.943, 12.436) 1.015 (0.601, 4.584) 1.015 (0.601, 4.584) 1.015 (0.601, 4.584) 1.003 (0.574, 4.506) 1.003 (0.574, 4.506)
Risky (Balanced) 8.959*** 7.953*** 0.226 6.696*** 0.119 0.055 1.750*** −0.139 0.037 8.876*** 8.876*** 2.193* 2.193* 2.193* 2.112* 2.112*
2.973 (3.128, 14.790) 2.771 (2.517, 13.389) 0.401 (−0.561, 1.013) 2.048 (2.678, 10.713) 0.203 (−0.279, 0.516) 0.114 (−0.170, 0.279) 0.658 (0.460, 3.041) 0.089 (−0.313, 0.035) 0.328 (−0.606, 0.679) 2.964 (3.062, 14.690) 2.964 (3.062, 14.690) 1.250 (−0.260, 4.645) 1.250 (−0.260, 4.645) 1.250 (−0.260, 4.645) 1.240 (−0.320, 4.543) 1.240 (−0.320, 4.543)
Observations 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 8065 8065 8065 8065 8065 8065 8065 8065 8065 8065 8065 8065 8065 8065 8065 8065
Code
```{r}
#| tbl-cap: ""

makeTable(collect_models(3))
```
 food_purchase_total_99_AEM  food_purchase_total_phone_99_AEM  food_purchase_total_bl_99_AEM  food_purchase_grains_99_AEM  food_purchase_veges_99_AEM  food_purchase_bevs_99_AEM  food_purchase_pulses_99_AEM  food_purchase_dairy_99_AEM  food_purchase_meat_99_AEM  fopurch_tot_99_NoMed_AEM  fopurch_tot_bl_99_NoMed_AEM  fopurch_tot_99_NoGrain_AEM  fopurch_tot_phone_99_NoGrain_AEM  fopurch_tot_bl_99_NoGrain_AEM  fopurch_tot_99_NoGr_NoMed_AEM  fopurch_tot_bl_99_NoGr_NoMed_AEM
Stable 8.854*** 7.828*** 0.669* 6.535*** 0.432** 0.103 1.262** −0.018 0.386 8.851*** 8.851*** 2.538** 2.538** 2.538** 2.503** 2.503**
2.589 (3.777, 13.931) 2.381 (3.159, 12.498) 0.382 (−0.080, 1.418) 1.769 (3.065, 10.004) 0.193 (0.054, 0.810) 0.109 (−0.110, 0.317) 0.569 (0.147, 2.377) 0.087 (−0.189, 0.152) 0.280 (−0.163, 0.935) 2.582 (3.788, 13.915) 2.582 (3.788, 13.915) 1.135 (0.312, 4.764) 1.135 (0.312, 4.764) 1.135 (0.312, 4.764) 1.121 (0.306, 4.701) 1.121 (0.306, 4.701)
Predictable 9.182*** 8.731*** 0.536 5.352*** 0.506** 0.243** 2.459*** 0.155* 0.754** 9.198*** 9.198*** 3.973*** 3.973*** 3.973*** 3.960*** 3.960***
2.666 (3.953, 14.411) 2.469 (3.888, 13.573) 0.421 (−0.290, 1.363) 1.725 (1.969, 8.736) 0.198 (0.117, 0.894) 0.120 (0.008, 0.478) 0.602 (1.279, 3.639) 0.091 (−0.024, 0.334) 0.341 (0.086, 1.423) 2.650 (4.000, 14.395) 2.650 (4.000, 14.395) 1.247 (1.527, 6.418) 1.247 (1.527, 6.418) 1.247 (1.527, 6.418) 1.226 (1.556, 6.364) 1.226 (1.556, 6.364)
Risky Medium 8.810*** 7.764*** 0.233 6.487*** 0.103 0.046 1.756*** −0.141 0.029 8.729*** 8.729*** 2.219* 2.219* 2.219* 2.140* 2.140*
2.971 (2.983, 14.637) 2.769 (2.334, 13.194) 0.405 (−0.560, 1.027) 2.049 (2.468, 10.506) 0.203 (−0.295, 0.500) 0.115 (−0.179, 0.272) 0.657 (0.467, 3.045) 0.089 (−0.315, 0.033) 0.328 (−0.614, 0.672) 2.963 (2.918, 14.539) 2.963 (2.918, 14.539) 1.253 (−0.239, 4.677) 1.253 (−0.239, 4.677) 1.253 (−0.239, 4.677) 1.243 (−0.298, 4.577) 1.243 (−0.298, 4.577)
Risky High 6.582* 6.474** 0.095 5.132** 0.233 0.085 0.882 0.083 0.672 6.577* 6.577* 1.739 1.739 1.739 1.732 1.732
3.556 (−0.393, 13.557) 3.071 (0.451, 12.497) 0.543 (−0.969, 1.160) 2.178 (0.861, 9.404) 0.254 (−0.266, 0.731) 0.136 (−0.182, 0.352) 0.776 (−0.641, 2.404) 0.138 (−0.188, 0.353) 0.441 (−0.193, 1.536) 3.537 (−0.361, 13.515) 3.537 (−0.361, 13.515) 1.823 (−1.836, 5.314) 1.823 (−1.836, 5.314) 1.823 (−1.836, 5.314) 1.804 (−1.806, 5.271) 1.804 (−1.806, 5.271)
Risky Low 10.064*** 9.254*** 0.893* 7.128*** 0.304 0.322* 1.695** 0.022 0.726 10.061*** 10.061*** 3.126** 3.126** 3.126** 3.084** 3.084**
3.481 (3.238, 16.891) 3.309 (2.764, 15.745) 0.507 (−0.101, 1.888) 2.348 (2.522, 11.733) 0.247 (−0.180, 0.788) 0.168 (−0.008, 0.652) 0.818 (0.091, 3.298) 0.114 (−0.201, 0.246) 0.460 (−0.177, 1.629) 3.468 (3.258, 16.864) 3.468 (3.258, 16.864) 1.544 (0.099, 6.154) 1.544 (0.099, 6.154) 1.544 (0.099, 6.154) 1.531 (0.081, 6.088) 1.531 (0.081, 6.088)
Observations 9830 9830 9830 9830 9830 9830 9830 9830 9830 9830 9830 9830 9830 9830 9830 9830
Code
```{r}
#| tbl-cap: ""

makeTable(collect_models(c(4, 5, 6)))
```
 food_purchase_total_99_AEM  food_purchase_total_phone_99_AEM  food_purchase_total_bl_99_AEM  food_purchase_grains_99_AEM  food_purchase_veges_99_AEM  food_purchase_bevs_99_AEM  food_purchase_pulses_99_AEM  food_purchase_dairy_99_AEM  food_purchase_meat_99_AEM  fopurch_tot_99_NoMed_AEM  fopurch_tot_bl_99_NoMed_AEM  fopurch_tot_99_NoGrain_AEM  fopurch_tot_phone_99_NoGrain_AEM  fopurch_tot_bl_99_NoGrain_AEM  fopurch_tot_99_NoGr_NoMed_AEM  fopurch_tot_bl_99_NoGr_NoMed_AEM  food_purchase_total_99_AEM  food_purchase_total_phone_99_AEM  food_purchase_total_bl_99_AEM  food_purchase_grains_99_AEM  food_purchase_veges_99_AEM  food_purchase_bevs_99_AEM  food_purchase_pulses_99_AEM  food_purchase_dairy_99_AEM  food_purchase_meat_99_AEM  fopurch_tot_99_NoMed_AEM  fopurch_tot_bl_99_NoMed_AEM  fopurch_tot_99_NoGrain_AEM  fopurch_tot_phone_99_NoGrain_AEM  fopurch_tot_bl_99_NoGrain_AEM  fopurch_tot_99_NoGr_NoMed_AEM  fopurch_tot_bl_99_NoGr_NoMed_AEM  food_purchase_total_99_AEM  food_purchase_total_phone_99_AEM  food_purchase_total_bl_99_AEM  food_purchase_grains_99_AEM  food_purchase_veges_99_AEM  food_purchase_bevs_99_AEM  food_purchase_pulses_99_AEM  food_purchase_dairy_99_AEM  food_purchase_meat_99_AEM  fopurch_tot_99_NoMed_AEM  fopurch_tot_bl_99_NoMed_AEM  fopurch_tot_99_NoGrain_AEM  fopurch_tot_phone_99_NoGrain_AEM  fopurch_tot_bl_99_NoGrain_AEM  fopurch_tot_99_NoGr_NoMed_AEM  fopurch_tot_bl_99_NoGr_NoMed_AEM
Study Income 0.015* 0.011 0.003* 0.011* 0.000 0.000 0.002 0.000 −0.000 0.015* 0.015* 0.005 0.005 0.005 0.004 0.004 −0.013 −0.016* 0.002 −0.008 −0.001 −0.000 −0.004* 0.000 −0.002* −0.013 −0.013 −0.005 −0.005 −0.005 −0.005 −0.005 −0.022* −0.026** 0.004 −0.018** −0.000 −0.000 −0.004 0.000 −0.003* −0.022* −0.022* −0.005 −0.005 −0.005 −0.005 −0.005
0.009 (−0.002, 0.032) 0.008 (−0.005, 0.027) 0.002 (−0.001, 0.007) 0.006 (−0.001, 0.022) 0.001 (−0.001, 0.002) 0.000 (−0.001, 0.001) 0.002 (−0.002, 0.006) 0.000 (−0.000, 0.001) 0.001 (−0.002, 0.002) 0.009 (−0.002, 0.032) 0.009 (−0.002, 0.032) 0.004 (−0.004, 0.013) 0.004 (−0.004, 0.013) 0.004 (−0.004, 0.013) 0.004 (−0.004, 0.012) 0.004 (−0.004, 0.012) 0.009 (−0.032, 0.005) 0.009 (−0.033, 0.001) 0.002 (−0.002, 0.007) 0.007 (−0.021, 0.004) 0.001 (−0.002, 0.001) 0.000 (−0.001, 0.000) 0.002 (−0.009, 0.001) 0.000 (−0.001, 0.001) 0.001 (−0.004, 0.000) 0.009 (−0.032, 0.005) 0.009 (−0.032, 0.005) 0.004 (−0.014, 0.004) 0.004 (−0.014, 0.004) 0.004 (−0.014, 0.004) 0.004 (−0.014, 0.003) 0.004 (−0.014, 0.003) 0.012 (−0.045, 0.001) 0.011 (−0.047, −0.005) 0.003 (−0.002, 0.009) 0.008 (−0.034, −0.002) 0.001 (−0.002, 0.001) 0.001 (−0.001, 0.001) 0.003 (−0.009, 0.002) 0.000 (−0.001, 0.001) 0.001 (−0.005, 0.000) 0.012 (−0.045, 0.001) 0.012 (−0.045, 0.001) 0.005 (−0.015, 0.006) 0.005 (−0.015, 0.006) 0.005 (−0.015, 0.006) 0.005 (−0.015, 0.006) 0.005 (−0.015, 0.006)
Stable 10.183*** 9.367*** 0.429 7.330*** 0.503** 0.142 1.678*** −0.026 0.587* 10.204*** 10.204*** 3.063** 3.063** 3.063** 3.051** 3.051** 11.640 10.482 0.382 4.306 1.079 −0.109 2.540 0.576 1.377 11.511 11.511 6.736 6.736 6.736 6.605 6.605
2.748 (4.794, 15.571) 2.528 (4.409, 14.325) 0.447 (−0.447, 1.306) 1.871 (3.661, 10.998) 0.208 (0.095, 0.910) 0.115 (−0.084, 0.368) 0.623 (0.456, 2.899) 0.095 (−0.213, 0.160) 0.307 (−0.016, 1.189) 2.740 (4.832, 15.576) 2.740 (4.832, 15.576) 1.231 (0.649, 5.478) 1.231 (0.649, 5.478) 1.231 (0.649, 5.478) 1.215 (0.668, 5.433) 1.215 (0.668, 5.433) 7.285 (−2.647, 25.927) 6.737 (−2.730, 23.694) 1.285 (−2.138, 2.903) 4.376 (−4.275, 12.886) 0.677 (−0.249, 2.407) 0.281 (−0.661, 0.443) 2.571 (−2.503, 7.582) 0.362 (−0.133, 1.285) 1.012 (−0.607, 3.361) 7.324 (−2.852, 25.874) 7.324 (−2.852, 25.874) 4.161 (−1.425, 14.897) 4.161 (−1.425, 14.897) 4.161 (−1.425, 14.897) 4.175 (−1.581, 14.791) 4.175 (−1.581, 14.791)
Predictable 10.620*** 10.335*** 0.345 6.184*** 0.579*** 0.280** 2.915*** 0.152 0.947*** 10.652*** 10.652*** 4.570*** 4.570*** 4.570*** 4.571*** 4.571*** 8.074** 7.499** 0.667 3.870* 0.581** 0.313** 2.890*** 0.092 0.710* 8.152*** 8.152*** 4.269*** 4.269*** 4.269*** 4.316*** 4.316***
2.835 (5.061, 16.180) 2.624 (5.189, 15.481) 0.462 (−0.560, 1.251) 1.856 (2.545, 9.823) 0.213 (0.162, 0.996) 0.125 (0.035, 0.525) 0.637 (1.666, 4.165) 0.096 (−0.036, 0.341) 0.367 (0.228, 1.666) 2.819 (5.123, 16.180) 2.819 (5.123, 16.180) 1.323 (1.975, 7.166) 1.323 (1.975, 7.166) 1.323 (1.975, 7.166) 1.302 (2.018, 7.125) 1.302 (2.018, 7.125) 3.136 (1.925, 14.223) 2.910 (1.792, 13.206) 0.514 (−0.340, 1.675) 2.059 (−0.168, 7.908) 0.234 (0.122, 1.041) 0.137 (0.045, 0.582) 0.717 (1.484, 4.296) 0.101 (−0.105, 0.290) 0.417 (−0.108, 1.527) 3.127 (2.021, 14.283) 3.127 (2.021, 14.283) 1.478 (1.371, 7.167) 1.478 (1.371, 7.167) 1.478 (1.371, 7.167) 1.462 (1.449, 7.182) 1.462 (1.449, 7.182)
Risky 9.533*** 9.182*** 0.168 6.650*** 0.314* 0.160* 2.129*** 0.015 0.547* 9.504*** 9.504*** 3.087*** 3.087*** 3.087*** 3.051*** 3.051*** 10.398*** 10.164*** 0.054 7.597*** 0.292 0.157 2.107*** 0.015 0.603** 10.357*** 10.357*** 3.062*** 3.062*** 3.062*** 3.013*** 3.013***
2.414 (4.799, 14.267) 2.225 (4.819, 13.546) 0.396 (−0.609, 0.945) 1.592 (3.528, 9.772) 0.181 (−0.040, 0.669) 0.097 (−0.030, 0.350) 0.543 (1.064, 3.194) 0.082 (−0.146, 0.177) 0.291 (−0.024, 1.117) 2.402 (4.794, 14.213) 2.402 (4.794, 14.213) 1.097 (0.937, 5.238) 1.097 (0.937, 5.238) 1.097 (0.937, 5.238) 1.083 (0.927, 5.175) 1.083 (0.927, 5.175) 2.527 (5.443, 15.353) 2.335 (5.586, 14.743) 0.424 (−0.777, 0.884) 1.680 (4.302, 10.891) 0.191 (−0.082, 0.666) 0.100 (−0.040, 0.354) 0.563 (1.003, 3.210) 0.085 (−0.152, 0.181) 0.307 (0.002, 1.204) 2.513 (5.430, 15.285) 2.513 (5.430, 15.285) 1.136 (0.834, 5.289) 1.136 (0.834, 5.289) 1.136 (0.834, 5.289) 1.120 (0.817, 5.210) 1.120 (0.817, 5.210)
Stable × Study Income −0.006 −0.001 −0.001 0.040 −0.006 0.003 −0.009 −0.006* −0.007 −0.004 −0.004 −0.037 −0.037 −0.037 −0.036 −0.036
0.071 (−0.145, 0.134) 0.065 (−0.129, 0.127) 0.013 (−0.026, 0.024) 0.044 (−0.045, 0.126) 0.006 (−0.019, 0.007) 0.003 (−0.003, 0.008) 0.025 (−0.057, 0.039) 0.003 (−0.013, 0.001) 0.010 (−0.026, 0.011) 0.071 (−0.144, 0.136) 0.071 (−0.144, 0.136) 0.040 (−0.115, 0.041) 0.040 (−0.115, 0.041) 0.040 (−0.115, 0.041) 0.040 (−0.115, 0.042) 0.040 (−0.115, 0.042)
Predictable × Study Income 0.035* 0.039** −0.005 0.034** −0.000 −0.000 0.000 0.001 0.003 0.035* 0.035* 0.003 0.003 0.003 0.002 0.002
0.020 (−0.004, 0.074) 0.018 (0.004, 0.075) 0.005 (−0.014, 0.005) 0.013 (0.008, 0.060) 0.001 (−0.003, 0.003) 0.001 (−0.002, 0.001) 0.005 (−0.010, 0.010) 0.001 (−0.001, 0.002) 0.003 (−0.002, 0.008) 0.020 (−0.004, 0.073) 0.020 (−0.004, 0.073) 0.010 (−0.016, 0.022) 0.010 (−0.016, 0.022) 0.010 (−0.016, 0.022) 0.010 (−0.016, 0.021) 0.010 (−0.016, 0.021)
Observations 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593
Note

For risky arms that did not complete dropoff, we impute a medium draw for the regressions below

Code
```{r}
#| tbl-cap: ""

makeTable(collect_models(c(7, 8)))
```
 food_purchase_total_99_AEM  food_purchase_total_phone_99_AEM  food_purchase_total_bl_99_AEM  food_purchase_grains_99_AEM  food_purchase_veges_99_AEM  food_purchase_bevs_99_AEM  food_purchase_pulses_99_AEM  food_purchase_dairy_99_AEM  food_purchase_meat_99_AEM  fopurch_tot_99_NoMed_AEM  fopurch_tot_bl_99_NoMed_AEM  fopurch_tot_99_NoGrain_AEM  fopurch_tot_phone_99_NoGrain_AEM  fopurch_tot_bl_99_NoGrain_AEM  fopurch_tot_99_NoGr_NoMed_AEM  fopurch_tot_bl_99_NoGr_NoMed_AEM  food_purchase_total_99_AEM  food_purchase_total_phone_99_AEM  food_purchase_total_bl_99_AEM  food_purchase_grains_99_AEM  food_purchase_veges_99_AEM  food_purchase_bevs_99_AEM  food_purchase_pulses_99_AEM  food_purchase_dairy_99_AEM  food_purchase_meat_99_AEM  fopurch_tot_99_NoMed_AEM  fopurch_tot_bl_99_NoMed_AEM  fopurch_tot_99_NoGrain_AEM  fopurch_tot_phone_99_NoGrain_AEM  fopurch_tot_bl_99_NoGrain_AEM  fopurch_tot_99_NoGr_NoMed_AEM  fopurch_tot_bl_99_NoGr_NoMed_AEM
High Draw 7.384*** 6.682*** 0.771* 4.250** 0.388** 0.173 1.978*** 0.162* 0.453 7.385*** 7.385*** 3.253*** 3.253*** 3.253*** 3.225*** 3.225*** 10.872*** 8.995*** 1.572** 6.545*** 0.374 0.299* 2.352*** 0.086 0.629 10.858*** 10.858*** 4.534*** 4.534*** 4.534*** 4.485*** 4.485***
2.637 (2.213, 12.554) 2.448 (1.882, 11.481) 0.431 (−0.073, 1.616) 1.730 (0.857, 7.642) 0.197 (0.003, 0.774) 0.117 (−0.057, 0.403) 0.606 (0.790, 3.166) 0.091 (−0.015, 0.340) 0.328 (−0.191, 1.097) 2.621 (2.245, 12.524) 2.621 (2.245, 12.524) 1.214 (0.871, 5.634) 1.214 (0.871, 5.634) 1.214 (0.871, 5.634) 1.195 (0.882, 5.568) 1.195 (0.882, 5.568) 3.421 (4.164, 17.581) 3.139 (2.838, 15.151) 0.668 (0.261, 2.882) 2.346 (1.944, 11.146) 0.239 (−0.094, 0.842) 0.170 (−0.034, 0.633) 0.833 (0.719, 3.985) 0.127 (−0.162, 0.334) 0.449 (−0.252, 1.510) 3.407 (4.178, 17.539) 3.407 (4.178, 17.539) 1.725 (1.151, 7.916) 1.725 (1.151, 7.916) 1.725 (1.151, 7.916) 1.704 (1.143, 7.826) 1.704 (1.143, 7.826)
Low Draw 8.834*** 8.152*** 0.658 5.204*** 0.425** 0.188 2.413*** 0.111 0.561 8.840*** 8.840*** 3.688*** 3.688*** 3.688*** 3.662*** 3.662*** 12.369*** 10.527*** 1.449** 7.503*** 0.417* 0.315** 2.837*** 0.037 0.744 12.364*** 12.364*** 5.013*** 5.013*** 5.013*** 4.968*** 4.968***
2.686 (3.567, 14.101) 2.492 (3.265, 13.039) 0.408 (−0.141, 1.458) 1.752 (1.768, 8.640) 0.202 (0.029, 0.821) 0.117 (−0.041, 0.417) 0.605 (1.225, 3.600) 0.090 (−0.066, 0.289) 0.346 (−0.117, 1.240) 2.671 (3.602, 14.079) 2.671 (3.602, 14.079) 1.243 (1.251, 6.126) 1.243 (1.251, 6.126) 1.243 (1.251, 6.126) 1.224 (1.261, 6.062) 1.224 (1.261, 6.062) 3.352 (5.797, 18.942) 3.118 (4.413, 16.642) 0.620 (0.233, 2.665) 2.302 (2.988, 12.018) 0.243 (−0.058, 0.893) 0.160 (0.000, 0.629) 0.825 (1.220, 4.454) 0.123 (−0.204, 0.279) 0.465 (−0.167, 1.656) 3.341 (5.812, 18.917) 3.341 (5.812, 18.917) 1.644 (1.789, 8.237) 1.644 (1.789, 8.237) 1.644 (1.789, 8.237) 1.626 (1.780, 8.156) 1.626 (1.780, 8.156)
Medium Draw 10.055*** 9.105*** 0.540 7.128*** 0.536*** 0.160 1.595*** 0.002 0.609** 10.066*** 10.066*** 3.150*** 3.150*** 3.150*** 3.133*** 3.133*** 9.910*** 8.983*** 0.566 7.055*** 0.512*** 0.151 1.543*** −0.015 0.698** 9.920*** 9.920*** 3.088*** 3.088*** 3.088*** 3.067*** 3.067***
2.532 (5.089, 15.020) 2.329 (4.537, 13.672) 0.386 (−0.217, 1.296) 1.712 (3.771, 10.484) 0.191 (0.161, 0.911) 0.105 (−0.045, 0.366) 0.555 (0.507, 2.683) 0.085 (−0.165, 0.168) 0.283 (0.054, 1.164) 2.524 (5.116, 15.015) 2.524 (5.116, 15.015) 1.123 (0.947, 5.353) 1.123 (0.947, 5.353) 1.123 (0.947, 5.353) 1.109 (0.959, 5.307) 1.109 (0.959, 5.307) 2.553 (4.904, 14.916) 2.343 (4.388, 13.578) 0.410 (−0.238, 1.371) 1.715 (3.691, 10.419) 0.195 (0.131, 0.894) 0.106 (−0.056, 0.358) 0.564 (0.437, 2.649) 0.084 (−0.179, 0.150) 0.285 (0.138, 1.258) 2.544 (4.930, 14.909) 2.544 (4.930, 14.909) 1.136 (0.860, 5.316) 1.136 (0.860, 5.316) 1.136 (0.860, 5.316) 1.120 (0.870, 5.264) 1.120 (0.870, 5.264)
unpredictable 0.014 0.107 −0.300 0.950 −0.169 −0.059 −0.408 −0.107 −0.171 −0.038 −0.038 −0.848 −0.848 −0.848 −0.874 −0.874 0.497 0.467 −0.263 1.234 −0.142 −0.038 −0.300 −0.094 −0.252 0.447 0.447 −0.651 −0.651 −0.651 −0.674 −0.674
2.207 (−4.314, 4.341) 2.032 (−3.877, 4.091) 0.271 (−0.831, 0.231) 1.417 (−1.828, 3.729) 0.163 (−0.488, 0.150) 0.094 (−0.244, 0.126) 0.506 (−1.401, 0.584) 0.071 (−0.245, 0.032) 0.289 (−0.737, 0.395) 2.196 (−4.345, 4.268) 2.196 (−4.345, 4.268) 1.028 (−2.863, 1.168) 1.028 (−2.863, 1.168) 1.028 (−2.863, 1.168) 1.014 (−2.861, 1.114) 1.014 (−2.861, 1.114) 2.167 (−3.753, 4.746) 1.969 (−3.393, 4.328) 0.313 (−0.876, 0.351) 1.382 (−1.475, 3.943) 0.160 (−0.456, 0.172) 0.100 (−0.235, 0.159) 0.491 (−1.263, 0.663) 0.072 (−0.236, 0.047) 0.277 (−0.795, 0.291) 2.155 (−3.778, 4.672) 2.155 (−3.778, 4.672) 1.029 (−2.669, 1.367) 1.029 (−2.669, 1.367) 1.029 (−2.669, 1.367) 1.012 (−2.659, 1.312) 1.012 (−2.659, 1.312)
draw_imputed_lag1:: 2.220 1.649 0.084 1.307 0.162 0.110 0.490 0.091 −0.583 2.228 2.228 0.875 0.875 0.875 0.891 0.891
3.130 (−3.918, 8.358) 3.016 (−4.265, 7.564) 0.365 (−0.632, 0.800) 2.283 (−3.169, 5.783) 0.226 (−0.281, 0.605) 0.146 (−0.177, 0.396) 0.880 (−1.236, 2.216) 0.113 (−0.131, 0.313) 0.468 (−1.501, 0.336) 3.132 (−3.915, 8.370) 3.132 (−3.915, 8.370) 1.368 (−1.808, 3.558) 1.368 (−1.808, 3.558) 1.368 (−1.808, 3.558) 1.368 (−1.791, 3.572) 1.368 (−1.791, 3.572)
High Draw previous period −5.163* −3.751 −0.913 −3.106* −0.071 −0.179 −1.029 0.059 −0.186 −5.180* −5.180* −2.156 −2.156 −2.156 −2.164 −2.164
2.685 (−10.429, 0.103) 2.319 (−8.298, 0.796) 0.715 (−2.316, 0.490) 1.833 (−6.700, 0.489) 0.181 (−0.427, 0.285) 0.160 (−0.493, 0.136) 0.671 (−2.345, 0.286) 0.103 (−0.143, 0.261) 0.359 (−0.889, 0.517) 2.672 (−10.421, 0.060) 2.672 (−10.421, 0.060) 1.532 (−5.160, 0.848) 1.532 (−5.160, 0.848) 1.532 (−5.160, 0.848) 1.510 (−5.126, 0.797) 1.510 (−5.126, 0.797)
Low Draw previous period −4.091 −2.477 −1.040 −2.903 0.043 −0.166 −0.094 0.091 −0.041 −4.044 −4.044 −1.288 −1.288 −1.288 −1.238 −1.238
2.713 (−9.411, 1.230) 2.339 (−7.063, 2.109) 0.721 (−2.455, 0.374) 1.846 (−6.523, 0.717) 0.186 (−0.322, 0.408) 0.159 (−0.478, 0.147) 0.681 (−1.430, 1.241) 0.106 (−0.117, 0.300) 0.366 (−0.760, 0.677) 2.701 (−9.341, 1.253) 2.701 (−9.341, 1.253) 1.561 (−4.350, 1.773) 1.561 (−4.350, 1.773) 1.561 (−4.350, 1.773) 1.542 (−4.261, 1.785) 1.542 (−4.261, 1.785)
Observations 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593
Note

Only treated participants that completed pickup are included in the regressions below.

Code
```{r}
#| tbl-cap: ""

makeTable(collect_models(c(9, 10)))
```
 food_purchase_total_99_AEM  food_purchase_total_phone_99_AEM  food_purchase_total_bl_99_AEM  food_purchase_grains_99_AEM  food_purchase_veges_99_AEM  food_purchase_bevs_99_AEM  food_purchase_pulses_99_AEM  food_purchase_dairy_99_AEM  food_purchase_meat_99_AEM  fopurch_tot_99_NoMed_AEM  fopurch_tot_bl_99_NoMed_AEM  fopurch_tot_99_NoGrain_AEM  fopurch_tot_phone_99_NoGrain_AEM  fopurch_tot_bl_99_NoGrain_AEM  fopurch_tot_99_NoGr_NoMed_AEM  fopurch_tot_bl_99_NoGr_NoMed_AEM  food_purchase_total_99_AEM  food_purchase_total_phone_99_AEM  food_purchase_total_bl_99_AEM  food_purchase_grains_99_AEM  food_purchase_veges_99_AEM  food_purchase_bevs_99_AEM  food_purchase_pulses_99_AEM  food_purchase_dairy_99_AEM  food_purchase_meat_99_AEM  fopurch_tot_99_NoMed_AEM  fopurch_tot_bl_99_NoMed_AEM  fopurch_tot_99_NoGrain_AEM  fopurch_tot_phone_99_NoGrain_AEM  fopurch_tot_bl_99_NoGrain_AEM  fopurch_tot_99_NoGr_NoMed_AEM  fopurch_tot_bl_99_NoGr_NoMed_AEM
High Draw 8.773*** 8.119*** 0.633 5.004*** 0.503** 0.200 2.314*** 0.184* 0.709** 8.772*** 8.772*** 3.907*** 3.907*** 3.907*** 3.884*** 3.884*** 3.482 3.153 0.790 1.547 −0.057 −0.273 0.632 0.011 0.353 3.486 3.486 2.332 2.332 2.332 2.331 2.331
2.741 (3.398, 14.149) 2.536 (3.146, 13.093) 0.456 (−0.262, 1.527) 1.780 (1.513, 8.495) 0.202 (0.108, 0.899) 0.125 (−0.046, 0.446) 0.627 (1.085, 3.543) 0.096 (−0.005, 0.372) 0.347 (0.028, 1.389) 2.723 (3.432, 14.111) 2.723 (3.432, 14.111) 1.283 (1.392, 6.423) 1.283 (1.392, 6.423) 1.283 (1.392, 6.423) 1.260 (1.413, 6.355) 1.260 (1.413, 6.355) 1059133.733 (−2077018.984, 2077025.948) 985323.984 (−1932274.128, 1932280.435) 243403.955 (−477328.433, 477330.013) 730433.179 (−1432420.133, 1432423.227) 77070.840 (−151140.428, 151140.314) 41939.330 (−82245.724, 82245.177) 248838.156 (−487985.373, 487986.637) 39527.418 (−77515.540, 77515.562) 128843.045 (−252668.305, 252669.011) 1052333.413 (−2063683.158, 2063690.129) 1052333.413 (−2063683.158, 2063690.129) 487171.334 (−955368.811, 955373.475) 487171.334 (−955368.811, 955373.475) 487171.334 (−955368.811, 955373.475) 473788.851 (−929124.990, 929129.651) 473788.851 (−929124.990, 929129.651)
Low Draw 9.820*** 9.219*** 0.506 5.720*** 0.506** 0.222* 2.700*** 0.131 0.782** 9.825*** 9.825*** 4.191*** 4.191*** 4.191*** 4.170*** 4.170*** 5.990 5.631 0.689 3.161 0.017 −0.195 1.310 −0.008 0.445 6.009 6.009 3.151 3.151 3.151 3.158 3.158
2.789 (4.349, 15.290) 2.588 (4.144, 14.293) 0.442 (−0.361, 1.374) 1.813 (2.165, 9.275) 0.207 (0.100, 0.913) 0.126 (−0.025, 0.469) 0.624 (1.477, 3.923) 0.095 (−0.056, 0.317) 0.367 (0.063, 1.501) 2.772 (4.389, 15.261) 2.772 (4.389, 15.261) 1.305 (1.632, 6.751) 1.305 (1.632, 6.751) 1.305 (1.632, 6.751) 1.283 (1.655, 6.686) 1.283 (1.655, 6.686) 1059133.824 (−2077016.653, 2077028.634) 985324.095 (−1932271.867, 1932283.130) 243403.872 (−477328.373, 477329.750) 730433.229 (−1432418.618, 1432424.940) 77070.841 (−151140.356, 151140.390) 41939.330 (−82245.645, 82245.256) 248838.173 (−487984.729, 487987.348) 39527.416 (−77515.556, 77515.540) 128843.060 (−252668.242, 252669.132) 1052333.506 (−2063680.818, 2063692.836) 1052333.506 (−2063680.818, 2063692.836) 487171.330 (−955367.984, 955374.286) 487171.330 (−955367.984, 955374.286) 487171.330 (−955367.984, 955374.286) 473788.856 (−929124.172, 929130.487) 473788.856 (−929124.172, 929130.487)
Medium Draw 8.649*** 7.627*** 0.665* 6.525*** 0.399** 0.112 1.222** −0.045 0.347 8.661*** 8.661*** 2.355** 2.355** 2.355** 2.336** 2.336** 6.724** 5.856** 0.770* 5.334*** 0.333* 0.095 0.773 −0.065 0.287 6.717** 6.717** 1.637 1.637 1.637 1.599 1.599
2.611 (3.528, 13.770) 2.403 (2.915, 12.339) 0.380 (−0.079, 1.410) 1.795 (3.005, 10.046) 0.193 (0.020, 0.778) 0.110 (−0.104, 0.328) 0.561 (0.121, 2.322) 0.087 (−0.215, 0.126) 0.281 (−0.203, 0.897) 2.604 (3.554, 13.769) 2.604 (3.554, 13.769) 1.132 (0.135, 4.576) 1.132 (0.135, 4.576) 1.132 (0.135, 4.576) 1.118 (0.144, 4.528) 1.118 (0.144, 4.528) 2.622 (1.581, 11.866) 2.393 (1.164, 10.548) 0.438 (−0.088, 1.628) 1.782 (1.839, 8.829) 0.200 (−0.060, 0.726) 0.112 (−0.124, 0.314) 0.558 (−0.321, 1.868) 0.083 (−0.228, 0.097) 0.275 (−0.252, 0.826) 2.614 (1.589, 11.844) 2.614 (1.589, 11.844) 1.137 (−0.594, 3.867) 1.137 (−0.594, 3.867) 1.137 (−0.594, 3.867) 1.119 (−0.595, 3.794) 1.119 (−0.595, 3.794)
unpredictable −1.530 −1.586 −0.080 0.144 −0.306* −0.104 −0.824 −0.133* −0.502 −1.587 −1.587 −1.615 −1.615 −1.615 −1.653 −1.653 −1.965 −1.854 −0.162 −0.157 −0.276 −0.115 −0.722 −0.132* −0.690** −2.035 −2.035 −1.778 −1.778 −1.778 −1.831* −1.831*
2.337 (−6.114, 3.053) 2.165 (−5.832, 2.660) 0.323 (−0.712, 0.553) 1.510 (−2.817, 3.105) 0.168 (−0.636, 0.023) 0.109 (−0.318, 0.110) 0.538 (−1.879, 0.232) 0.078 (−0.286, 0.021) 0.311 (−1.112, 0.108) 2.323 (−6.143, 2.969) 2.323 (−6.143, 2.969) 1.098 (−3.768, 0.538) 1.098 (−3.768, 0.538) 1.098 (−3.768, 0.538) 1.079 (−3.769, 0.463) 1.079 (−3.769, 0.463) 2.284 (−6.445, 2.515) 2.092 (−5.957, 2.250) 0.381 (−0.909, 0.585) 1.470 (−3.040, 2.725) 0.168 (−0.605, 0.053) 0.118 (−0.345, 0.116) 0.531 (−1.764, 0.319) 0.078 (−0.284, 0.021) 0.295 (−1.269, −0.111) 2.267 (−6.481, 2.411) 2.267 (−6.481, 2.411) 1.087 (−3.911, 0.354) 1.087 (−3.911, 0.354) 1.087 (−3.911, 0.354) 1.065 (−3.920, 0.258) 1.065 (−3.920, 0.258)
High Draw previous period 2.376 2.130 −0.078 1.905 0.409 0.412 0.588 0.156 0.296 2.331 2.331 0.268 0.268 0.268 0.211 0.211
1059133.573 (−2077019.776, 2077024.528) 985323.842 (−1932274.873, 1932279.133) 243403.871 (−477329.137, 477328.981) 730433.069 (−1432419.560, 1432423.371) 77070.845 (−151139.973, 151140.791) 41939.333 (−82245.044, 82245.868) 248838.117 (−487985.340, 487986.517) 39527.413 (−77515.386, 77515.697) 128843.024 (−252668.320, 252668.912) 1052333.252 (−2063683.998, 2063688.660) 1052333.252 (−2063683.998, 2063688.660) 487171.241 (−955370.693, 955371.229) 487171.241 (−955370.693, 955371.229) 487171.241 (−955370.693, 955371.229) 473788.766 (−929126.942, 929127.364) 473788.766 (−929126.942, 929127.364)
Low Draw previous period 3.383 3.288 −0.172 2.031 0.494 0.427 1.468 0.199 0.438 3.404 3.404 1.118 1.118 1.118 1.123 1.123
1059133.667 (−2077018.953, 2077025.720) 985323.903 (−1932273.834, 1932280.410) 243403.974 (−477329.433, 477329.088) 730433.134 (−1432419.561, 1432423.623) 77070.849 (−151139.894, 151140.882) 41939.335 (−82245.033, 82245.886) 248838.098 (−487984.424, 487987.360) 39527.413 (−77515.342, 77515.741) 128843.033 (−252668.196, 252669.071) 1052333.337 (−2063683.091, 2063689.899) 1052333.337 (−2063683.091, 2063689.899) 487171.270 (−955369.900, 955372.136) 487171.270 (−955369.900, 955372.136) 487171.270 (−955369.900, 955372.136) 473788.783 (−929126.064, 929128.311) 473788.783 (−929126.064, 929128.311)
Observations 11968 11968 11968 11968 11968 11968 11968 11968 11968 11968 11968 11968 11968 11968 11968 11968 10385 10385 10385 10385 10385 10385 10385 10385 10385 10385 10385 10385 10385 10385 10385 10385
Note

Only participants who completed all surveys are included in the regressions below.

Code
```{r}
#| tbl-cap: ""

makeTable(collect_models(11))
```
 food_purchase_total_99_AEM  food_purchase_total_phone_99_AEM  food_purchase_total_bl_99_AEM  food_purchase_grains_99_AEM  food_purchase_veges_99_AEM  food_purchase_bevs_99_AEM  food_purchase_pulses_99_AEM  food_purchase_dairy_99_AEM  food_purchase_meat_99_AEM  fopurch_tot_99_NoMed_AEM  fopurch_tot_bl_99_NoMed_AEM  fopurch_tot_99_NoGrain_AEM  fopurch_tot_phone_99_NoGrain_AEM  fopurch_tot_bl_99_NoGrain_AEM  fopurch_tot_99_NoGr_NoMed_AEM  fopurch_tot_bl_99_NoGr_NoMed_AEM
Stable 10.697*** 9.875*** 0.675* 7.830*** 0.676*** 0.164 1.284* 0.097 0.644** 10.655*** 10.655*** 3.289*** 3.289*** 3.289*** 3.228** 3.228**
3.052 (4.711, 16.683) 2.818 (4.348, 15.402) 0.384 (−0.078, 1.428) 2.141 (3.630, 12.029) 0.204 (0.276, 1.075) 0.125 (−0.081, 0.410) 0.656 (−0.003, 2.571) 0.100 (−0.100, 0.293) 0.312 (0.031, 1.256) 3.042 (4.688, 16.621) 3.042 (4.688, 16.621) 1.269 (0.799, 5.779) 1.269 (0.799, 5.779) 1.269 (0.799, 5.779) 1.256 (0.765, 5.691) 1.256 (0.765, 5.691)
Predictable 10.895*** 10.177*** 0.665* 6.182*** 0.737*** 0.292** 2.221*** 0.197* 1.058*** 10.860*** 10.860*** 4.792*** 4.792*** 4.792*** 4.744*** 4.744***
3.138 (4.741, 17.050) 2.965 (4.361, 15.994) 0.396 (−0.112, 1.442) 2.088 (2.086, 10.278) 0.215 (0.316, 1.158) 0.142 (0.015, 0.570) 0.697 (0.854, 3.587) 0.102 (−0.003, 0.398) 0.393 (0.288, 1.828) 3.122 (4.735, 16.984) 3.122 (4.735, 16.984) 1.392 (2.062, 7.522) 1.392 (2.062, 7.522) 1.392 (2.062, 7.522) 1.374 (2.049, 7.439) 1.374 (2.049, 7.439)
Risky 10.232*** 9.425*** 0.728** 6.791*** 0.481*** 0.228** 1.990*** 0.122 0.626** 10.162*** 10.162*** 3.781*** 3.781*** 3.781*** 3.710*** 3.710***
2.587 (5.157, 15.307) 2.397 (4.723, 14.126) 0.351 (0.039, 1.417) 1.743 (3.371, 10.210) 0.166 (0.155, 0.807) 0.106 (0.020, 0.436) 0.590 (0.834, 3.146) 0.087 (−0.048, 0.293) 0.288 (0.061, 1.192) 2.574 (5.112, 15.212) 2.574 (5.112, 15.212) 1.138 (1.549, 6.013) 1.138 (1.549, 6.013) 1.138 (1.549, 6.013) 1.126 (1.502, 5.918) 1.126 (1.502, 5.918)
Observations 9384 9384 9384 9384 9384 9384 9384 9384 9384 9384 9384 9384 9384 9384 9384 9384
Note

The regressions below include baseline (period 0) data.

Code
```{r}
#| tbl-cap: ""

makeTable(collect_models(15))
```
 food_purchase_total_99_AEM  food_purchase_total_phone_99_AEM  food_purchase_total_bl_99_AEM  food_purchase_grains_99_AEM  food_purchase_veges_99_AEM  food_purchase_bevs_99_AEM  food_purchase_pulses_99_AEM  food_purchase_dairy_99_AEM  food_purchase_meat_99_AEM  fopurch_tot_99_NoMed_AEM  fopurch_tot_bl_99_NoMed_AEM  fopurch_tot_99_NoGrain_AEM  fopurch_tot_phone_99_NoGrain_AEM  fopurch_tot_bl_99_NoGrain_AEM  fopurch_tot_99_NoGr_NoMed_AEM  fopurch_tot_bl_99_NoGr_NoMed_AEM
Stable 7.392*** 6.498*** 0.525 5.497*** 0.384** 0.082 1.047** −0.021 0.249 7.352*** 7.352*** 2.055** 2.055** 2.055** 1.990** 1.990**
2.225 (3.029, 11.756) 2.026 (2.526, 10.470) 0.374 (−0.209, 1.258) 1.508 (2.540, 8.453) 0.165 (0.060, 0.707) 0.094 (−0.102, 0.266) 0.486 (0.094, 2.000) 0.075 (−0.168, 0.127) 0.241 (−0.223, 0.720) 2.219 (3.002, 11.703) 2.219 (3.002, 11.703) 0.982 (0.129, 3.982) 0.982 (0.129, 3.982) 0.982 (0.129, 3.982) 0.971 (0.087, 3.893) 0.971 (0.087, 3.893)
Predictable 7.960*** 7.427*** 0.502 4.666*** 0.417** 0.179* 2.131*** 0.135* 0.597** 7.951*** 7.951*** 3.390*** 3.390*** 3.390*** 3.360*** 3.360***
2.289 (3.472, 12.448) 2.102 (3.305, 11.550) 0.395 (−0.272, 1.277) 1.472 (1.779, 7.554) 0.170 (0.084, 0.750) 0.103 (−0.023, 0.382) 0.516 (1.120, 3.142) 0.078 (−0.018, 0.288) 0.292 (0.024, 1.170) 2.274 (3.491, 12.411) 2.274 (3.491, 12.411) 1.072 (1.288, 5.492) 1.072 (1.288, 5.492) 1.072 (1.288, 5.492) 1.054 (1.293, 5.426) 1.054 (1.293, 5.426)
Risky 6.627*** 6.193*** 0.230 4.855*** 0.187 0.080 1.366*** 0.008 0.215 6.561*** 6.561*** 1.925** 1.925** 1.925** 1.855** 1.855**
1.869 (2.961, 10.292) 1.691 (2.878, 9.509) 0.345 (−0.446, 0.906) 1.201 (2.499, 7.211) 0.138 (−0.083, 0.458) 0.078 (−0.073, 0.234) 0.420 (0.543, 2.189) 0.065 (−0.119, 0.136) 0.219 (−0.213, 0.644) 1.860 (2.915, 10.208) 1.860 (2.915, 10.208) 0.878 (0.203, 3.648) 0.878 (0.203, 3.648) 0.878 (0.203, 3.648) 0.867 (0.155, 3.556) 0.867 (0.155, 3.556)
Observations 14865 14865 14865 14865 14865 14865 14865 14865 14865 14865 14865 14865 14865 14865 14865 14865
Note

The regressions below exclude endline (period 6) data.

Code
```{r}
#| tbl-cap: ""

makeTable(collect_models(16))
```
 food_purchase_total_99_AEM  food_purchase_total_phone_99_AEM  food_purchase_total_bl_99_AEM  food_purchase_grains_99_AEM  food_purchase_veges_99_AEM  food_purchase_bevs_99_AEM  food_purchase_pulses_99_AEM  food_purchase_dairy_99_AEM  food_purchase_meat_99_AEM  fopurch_tot_99_NoMed_AEM  fopurch_tot_bl_99_NoMed_AEM  fopurch_tot_99_NoGrain_AEM  fopurch_tot_phone_99_NoGrain_AEM  fopurch_tot_bl_99_NoGrain_AEM  fopurch_tot_99_NoGr_NoMed_AEM  fopurch_tot_bl_99_NoGr_NoMed_AEM
Stable 8.485*** 7.797*** 0.078 6.417*** 0.387** 0.052 1.095* −0.014 0.463 8.573*** 8.573*** 2.227** 2.227** 2.227** 2.283** 2.283**
2.561 (3.463, 13.507) 2.508 (2.880, 12.715) 0.061 (−0.041, 0.198) 1.880 (2.731, 10.102) 0.194 (0.006, 0.768) 0.098 (−0.140, 0.244) 0.579 (−0.041, 2.230) 0.093 (−0.195, 0.168) 0.282 (−0.090, 1.015) 2.565 (3.542, 13.604) 2.565 (3.542, 13.604) 1.011 (0.244, 4.211) 1.011 (0.244, 4.211) 1.011 (0.244, 4.211) 1.013 (0.297, 4.270) 1.013 (0.297, 4.270)
Predictable 8.903*** 8.707*** 0.083 5.164*** 0.536*** 0.201* 2.315*** 0.146 0.747** 8.983*** 8.983*** 3.853*** 3.853*** 3.853*** 3.903*** 3.903***
2.594 (3.815, 13.991) 2.584 (3.639, 13.775) 0.062 (−0.040, 0.205) 1.821 (1.592, 8.736) 0.197 (0.149, 0.924) 0.114 (−0.023, 0.425) 0.599 (1.141, 3.490) 0.092 (−0.035, 0.326) 0.337 (0.087, 1.407) 2.594 (3.896, 14.071) 2.594 (3.896, 14.071) 1.086 (1.724, 5.982) 1.086 (1.724, 5.982) 1.086 (1.724, 5.982) 1.084 (1.777, 6.029) 1.084 (1.777, 6.029)
Risky 7.989*** 7.581*** 0.097* 5.672*** 0.260 0.082 1.594*** 0.017 0.444* 7.994*** 7.994*** 2.455*** 2.455*** 2.455*** 2.460*** 2.460***
2.111 (3.850, 12.128) 2.087 (3.489, 11.674) 0.054 (−0.008, 0.203) 1.491 (2.747, 8.597) 0.160 (−0.055, 0.575) 0.083 (−0.082, 0.245) 0.493 (0.627, 2.562) 0.079 (−0.138, 0.172) 0.253 (−0.053, 0.941) 2.109 (3.857, 12.131) 2.109 (3.857, 12.131) 0.860 (0.769, 4.141) 0.860 (0.769, 4.141) 0.860 (0.769, 4.141) 0.859 (0.775, 4.145) 0.859 (0.775, 4.145)
Observations 10345 10345 10345 10345 10345 10345 10345 10345 10345 10345 10345 10345 10345 10345 10345 10345
Code
```{r}
data_set_index <- 3
chosen <- file_dfs[[data_set_index]]
full_list <- get_varying_vars(chosen, c("hh_id", "period"))
```

3 Regressions for Food_Wins_Purch_tot.dta

Code
```{r}
#| tbl-cap: ""

makeTable(collect_models(c(1, 2)))
```
 food_purchase_total_bl_99  fopurch_tot_99_NoMed  fopurch_tot_bl_99_NoMed  fopurch_tot_99_NoGrain  fopurch_tot_phone_99_NoGrain  fopurch_tot_bl_99_NoGrain  fopurch_tot_99_NoGr_NoMed  fopurch_tot_bl_99_NoGr_NoMed  food_purch_99_ShGr  food_purch_99_ShGr_NoMed  food_purch_bl_99_ShGr  food_purch_bl_99_ShGr_NoMed  food_purch_ph_99_ShGr  food_purchase_total_bl_99  fopurch_tot_99_NoMed  fopurch_tot_bl_99_NoMed  fopurch_tot_99_NoGrain  fopurch_tot_phone_99_NoGrain  fopurch_tot_bl_99_NoGrain  fopurch_tot_99_NoGr_NoMed  fopurch_tot_bl_99_NoGr_NoMed  food_purch_99_ShGr  food_purch_99_ShGr_NoMed  food_purch_bl_99_ShGr  food_purch_bl_99_ShGr_NoMed  food_purch_ph_99_ShGr
Stable 4.632** 56.666*** 56.666*** 19.725*** 19.725*** 19.725*** 19.216*** 19.216*** 0.014* 0.015* 0.295 0.015* 0.017** 5.072*** 58.051*** 58.051*** 20.258*** 20.258*** 20.258*** 19.689*** 19.689*** 0.015* 0.015** 0.363 0.015** 0.018**
1.955 (0.799, 8.465) 15.024 (27.205, 86.128) 15.024 (27.205, 86.128) 6.591 (6.800, 32.650) 6.591 (6.800, 32.650) 6.591 (6.800, 32.650) 6.552 (6.366, 32.065) 6.552 (6.366, 32.065) 0.008 (−0.000, 0.029) 0.008 (−0.000, 0.030) 0.586 (−0.854, 1.444) 0.008 (−0.000, 0.030) 0.008 (0.002, 0.033) 1.957 (1.232, 8.911) 15.073 (28.484, 87.618) 15.073 (28.484, 87.618) 6.591 (7.329, 33.186) 6.591 (7.329, 33.186) 6.591 (7.329, 33.186) 6.550 (6.841, 32.538) 6.550 (6.841, 32.538) 0.008 (−0.000, 0.030) 0.008 (0.000, 0.030) 0.585 (−0.784, 1.509) 0.008 (0.000, 0.030) 0.008 (0.002, 0.033)
Predictable 4.221** 54.418*** 54.418*** 25.861*** 25.861*** 25.861*** 25.636*** 25.636*** 0.004 0.004 0.184 0.004 0.006 4.117** 53.608*** 53.608*** 25.148*** 25.148*** 25.148*** 24.893*** 24.893*** 0.004 0.004 0.209 0.004 0.006
2.038 (0.224, 8.218) 14.357 (26.264, 82.573) 14.357 (26.264, 82.573) 6.584 (12.949, 38.773) 6.584 (12.949, 38.773) 6.584 (12.949, 38.773) 6.520 (12.850, 38.422) 6.520 (12.850, 38.422) 0.008 (−0.012, 0.019) 0.008 (−0.012, 0.019) 0.570 (−0.933, 1.301) 0.008 (−0.012, 0.019) 0.009 (−0.011, 0.022) 2.051 (0.094, 8.141) 14.349 (25.461, 81.754) 14.349 (25.461, 81.754) 6.601 (12.199, 38.097) 6.601 (12.199, 38.097) 6.601 (12.199, 38.097) 6.537 (12.069, 37.717) 6.537 (12.069, 37.717) 0.008 (−0.012, 0.019) 0.008 (−0.012, 0.019) 0.567 (−0.903, 1.320) 0.008 (−0.012, 0.019) 0.009 (−0.011, 0.023)
Risky 2.676* 53.462*** 53.462*** 20.123*** 20.123*** 20.123*** 19.781*** 19.781*** 0.012* 0.012* 0.512 0.012* 0.013*
1.604 (−0.470, 5.821) 11.763 (30.394, 76.529) 11.763 (30.394, 76.529) 5.292 (9.745, 30.501) 5.292 (9.745, 30.501) 5.292 (9.745, 30.501) 5.251 (9.484, 30.078) 5.251 (9.484, 30.078) 0.006 (−0.001, 0.025) 0.006 (−0.000, 0.025) 0.560 (−0.586, 1.610) 0.006 (−0.000, 0.025) 0.007 (−0.000, 0.027)
Risky (Balanced) 2.637 61.652*** 61.652*** 19.541*** 19.541*** 19.541*** 18.914*** 18.914*** 0.014 0.014 0.507 0.014 0.014
2.153 (−1.586, 6.859) 17.169 (27.973, 95.332) 17.169 (27.973, 95.332) 7.286 (5.248, 33.834) 7.286 (5.248, 33.834) 7.286 (5.248, 33.834) 7.234 (4.723, 33.105) 7.234 (4.723, 33.105) 0.009 (−0.003, 0.030) 0.009 (−0.003, 0.031) 0.747 (−0.959, 1.973) 0.009 (−0.003, 0.031) 0.009 (−0.003, 0.031)
Observations 12593 12593 12593 12593 12593 12593 12593 12593 12590 12590 4585 12590 12590 8065 8065 8065 8065 8065 8065 8065 8065 8062 8062 2927 8062 8062
Code
```{r}
#| tbl-cap: ""

makeTable(collect_models(3))
```
 food_purchase_total_bl_99  fopurch_tot_99_NoMed  fopurch_tot_bl_99_NoMed  fopurch_tot_99_NoGrain  fopurch_tot_phone_99_NoGrain  fopurch_tot_bl_99_NoGrain  fopurch_tot_99_NoGr_NoMed  fopurch_tot_bl_99_NoGr_NoMed  food_purch_99_ShGr  food_purch_99_ShGr_NoMed  food_purch_bl_99_ShGr  food_purch_bl_99_ShGr_NoMed  food_purch_ph_99_ShGr
Stable 4.748** 56.744*** 56.744*** 19.590*** 19.590*** 19.590*** 19.040*** 19.040*** 0.015* 0.015* 0.361 0.015* 0.018**
1.953 (0.918, 8.578) 15.054 (27.219, 86.270) 15.054 (27.219, 86.270) 6.594 (6.657, 32.523) 6.594 (6.657, 32.523) 6.594 (6.657, 32.523) 6.554 (6.185, 31.895) 6.554 (6.185, 31.895) 0.008 (−0.000, 0.029) 0.008 (−0.000, 0.030) 0.583 (−0.783, 1.505) 0.008 (−0.000, 0.030) 0.008 (0.002, 0.033)
Predictable 4.176** 53.666*** 53.666*** 25.359*** 25.359*** 25.359*** 25.114*** 25.114*** 0.004 0.004 0.225 0.004 0.005
2.042 (0.171, 8.182) 14.353 (25.515, 81.817) 14.353 (25.515, 81.817) 6.594 (12.426, 38.292) 6.594 (12.426, 38.292) 6.594 (12.426, 38.292) 6.531 (12.305, 37.923) 6.531 (12.305, 37.923) 0.008 (−0.012, 0.019) 0.008 (−0.012, 0.019) 0.564 (−0.882, 1.332) 0.008 (−0.012, 0.019) 0.009 (−0.011, 0.022)
Risky Medium 2.539 60.267*** 60.267*** 19.175*** 19.175*** 19.175*** 18.555** 18.555** 0.013 0.013 0.472 0.013 0.013
2.154 (−1.685, 6.764) 17.108 (26.713, 93.820) 17.108 (26.713, 93.820) 7.268 (4.921, 33.429) 7.268 (4.921, 33.429) 7.268 (4.921, 33.429) 7.217 (4.400, 32.710) 7.217 (4.400, 32.710) 0.009 (−0.004, 0.030) 0.009 (−0.004, 0.030) 0.746 (−0.991, 1.935) 0.009 (−0.004, 0.030) 0.009 (−0.004, 0.031)
Risky High −0.057 28.564* 28.564* 8.783 8.783 8.783 8.798 8.798 0.007 0.006 −0.256 0.006 0.010
2.306 (−4.580, 4.466) 17.017 (−4.812, 61.940) 17.017 (−4.812, 61.940) 7.908 (−6.727, 24.292) 7.908 (−6.727, 24.292) 7.908 (−6.727, 24.292) 7.839 (−6.578, 24.173) 7.839 (−6.578, 24.173) 0.009 (−0.012, 0.025) 0.009 (−0.012, 0.025) 0.649 (−1.528, 1.017) 0.009 (−0.012, 0.025) 0.010 (−0.010, 0.031)
Risky Low 6.303** 68.286*** 68.286*** 24.626*** 24.626*** 24.626*** 24.166*** 24.166*** 0.027*** 0.027*** −0.043 0.027*** 0.029***
2.940 (0.536, 12.070) 19.905 (29.246, 107.326) 19.905 (29.246, 107.326) 8.976 (7.022, 42.230) 8.976 (7.022, 42.230) 8.976 (7.022, 42.230) 8.925 (6.661, 41.671) 8.925 (6.661, 41.671) 0.009 (0.008, 0.046) 0.009 (0.009, 0.046) 0.719 (−1.454, 1.368) 0.009 (0.009, 0.046) 0.010 (0.010, 0.048)
Observations 9830 9830 9830 9830 9830 9830 9830 9830 9827 9827 3577 9827 9827
Code
```{r}
#| tbl-cap: ""

makeTable(collect_models(c(4, 5, 6)))
```
 food_purchase_total_bl_99  fopurch_tot_99_NoMed  fopurch_tot_bl_99_NoMed  fopurch_tot_99_NoGrain  fopurch_tot_phone_99_NoGrain  fopurch_tot_bl_99_NoGrain  fopurch_tot_99_NoGr_NoMed  fopurch_tot_bl_99_NoGr_NoMed  food_purch_99_ShGr  food_purch_99_ShGr_NoMed  food_purch_bl_99_ShGr  food_purch_bl_99_ShGr_NoMed  food_purch_ph_99_ShGr  food_purchase_total_bl_99  fopurch_tot_99_NoMed  fopurch_tot_bl_99_NoMed  fopurch_tot_99_NoGrain  fopurch_tot_phone_99_NoGrain  fopurch_tot_bl_99_NoGrain  fopurch_tot_99_NoGr_NoMed  fopurch_tot_bl_99_NoGr_NoMed  food_purch_99_ShGr  food_purch_99_ShGr_NoMed  food_purch_bl_99_ShGr  food_purch_bl_99_ShGr_NoMed  food_purch_ph_99_ShGr  food_purchase_total_bl_99  fopurch_tot_99_NoMed  fopurch_tot_bl_99_NoMed  fopurch_tot_99_NoGrain  fopurch_tot_phone_99_NoGrain  fopurch_tot_bl_99_NoGrain  fopurch_tot_99_NoGr_NoMed  fopurch_tot_bl_99_NoGr_NoMed  food_purch_99_ShGr  food_purch_99_ShGr_NoMed  food_purch_bl_99_ShGr  food_purch_bl_99_ShGr_NoMed  food_purch_ph_99_ShGr
Study Income 0.006 0.116** 0.116** 0.037* 0.037* 0.037* 0.037* 0.037* 0.000** 0.000** 0.000 0.000** 0.000** −0.005 −0.054 −0.054 −0.032 −0.032 −0.032 −0.031 −0.031 0.000* 0.000* −0.001 0.000* 0.000 0.001 −0.128** −0.128** −0.043 −0.043 −0.043 −0.042 −0.042 −0.000 −0.000 −0.005 −0.000 −0.000
0.008 (−0.010, 0.023) 0.048 (0.022, 0.210) 0.048 (0.022, 0.210) 0.022 (−0.006, 0.081) 0.022 (−0.006, 0.081) 0.022 (−0.006, 0.081) 0.022 (−0.006, 0.079) 0.022 (−0.006, 0.079) 0.000 (0.000, 0.000) 0.000 (0.000, 0.000) 0.002 (−0.005, 0.005) 0.000 (0.000, 0.000) 0.000 (0.000, 0.000) 0.010 (−0.025, 0.015) 0.051 (−0.153, 0.045) 0.051 (−0.153, 0.045) 0.023 (−0.078, 0.014) 0.023 (−0.078, 0.014) 0.023 (−0.078, 0.014) 0.023 (−0.077, 0.014) 0.023 (−0.077, 0.014) 0.000 (−0.000, 0.000) 0.000 (−0.000, 0.000) 0.003 (−0.007, 0.005) 0.000 (−0.000, 0.000) 0.000 (−0.000, 0.000) 0.011 (−0.021, 0.023) 0.060 (−0.246, −0.010) 0.060 (−0.246, −0.010) 0.026 (−0.094, 0.009) 0.026 (−0.094, 0.009) 0.026 (−0.094, 0.009) 0.026 (−0.093, 0.009) 0.026 (−0.093, 0.009) 0.000 (−0.000, 0.000) 0.000 (−0.000, 0.000) 0.004 (−0.013, 0.003) 0.000 (−0.000, 0.000) 0.000 (−0.000, 0.000)
Stable 5.146** 62.001*** 62.001*** 22.884*** 22.884*** 22.884*** 22.335*** 22.335*** 0.009 0.010 0.390 0.010 0.014 3.979 59.728 59.728 36.109 36.109 36.109 35.358 35.358 −0.032 −0.032 −1.976* −0.032 −0.044*
2.226 (0.781, 9.512) 15.793 (31.031, 92.971) 15.793 (31.031, 92.971) 7.035 (9.088, 36.680) 7.035 (9.088, 36.680) 7.035 (9.088, 36.680) 6.992 (8.624, 36.046) 6.992 (8.624, 36.046) 0.008 (−0.007, 0.025) 0.008 (−0.006, 0.026) 0.663 (−0.910, 1.690) 0.008 (−0.006, 0.026) 0.009 (−0.003, 0.030) 8.234 (−12.167, 20.125) 44.741 (−28.010, 147.466) 44.741 (−28.010, 147.466) 24.189 (−11.326, 83.545) 24.189 (−11.326, 83.545) 24.189 (−11.326, 83.545) 24.332 (−12.358, 83.073) 24.332 (−12.358, 83.073) 0.023 (−0.078, 0.014) 0.024 (−0.078, 0.015) 1.063 (−4.061, 0.108) 0.024 (−0.078, 0.015) 0.024 (−0.091, 0.004)
Predictable 4.727** 59.672*** 59.672*** 28.972*** 28.972*** 28.972*** 28.708*** 28.708*** −0.001 −0.001 0.278 −0.001 0.002 6.573** 39.870** 39.870** 24.673*** 24.673*** 24.673*** 24.588*** 24.588*** −0.012 −0.013 −0.672 −0.013 −0.005
2.294 (0.230, 9.225) 15.184 (29.895, 89.448) 15.184 (29.895, 89.448) 6.968 (15.307, 42.637) 6.968 (15.307, 42.637) 6.968 (15.307, 42.637) 6.899 (15.179, 42.237) 6.899 (15.179, 42.237) 0.009 (−0.018, 0.015) 0.009 (−0.018, 0.015) 0.648 (−0.993, 1.549) 0.009 (−0.018, 0.015) 0.009 (−0.017, 0.020) 2.950 (0.789, 12.358) 16.924 (6.682, 73.058) 16.924 (6.682, 73.058) 8.015 (8.955, 40.391) 8.015 (8.955, 40.391) 8.015 (8.955, 40.391) 7.927 (9.043, 40.133) 7.927 (9.043, 40.133) 0.010 (−0.032, 0.007) 0.010 (−0.032, 0.007) 0.751 (−2.145, 0.801) 0.010 (−0.032, 0.007) 0.011 (−0.027, 0.017)
Risky 3.181* 58.704*** 58.704*** 23.227*** 23.227*** 23.227*** 22.847*** 22.847*** 0.007 0.007 0.602 0.007 0.010 2.558 65.929*** 65.929*** 24.293*** 24.293*** 24.293*** 23.855*** 23.855*** 0.012* 0.013* 0.997 0.013* 0.014*
1.896 (−0.538, 6.900) 12.895 (33.416, 83.992) 12.895 (33.416, 83.992) 5.783 (11.887, 34.568) 5.783 (11.887, 34.568) 5.783 (11.887, 34.568) 5.734 (11.603, 34.090) 5.734 (11.603, 34.090) 0.007 (−0.007, 0.021) 0.007 (−0.007, 0.021) 0.711 (−0.793, 1.996) 0.007 (−0.007, 0.021) 0.007 (−0.005, 0.024) 1.966 (−1.297, 6.412) 13.354 (39.742, 92.115) 13.354 (39.742, 92.115) 5.918 (12.689, 35.898) 5.918 (12.689, 35.898) 5.918 (12.689, 35.898) 5.865 (12.355, 35.356) 5.865 (12.355, 35.356) 0.007 (−0.002, 0.027) 0.007 (−0.001, 0.027) 0.782 (−0.538, 2.531) 0.007 (−0.001, 0.027) 0.008 (−0.001, 0.029)
Stable × Study Income 0.005 0.097 0.097 −0.123 −0.123 −0.123 −0.121 −0.121 0.000** 0.000** 0.028** 0.000** 0.001***
0.080 (−0.152, 0.162) 0.434 (−0.754, 0.949) 0.434 (−0.754, 0.949) 0.231 (−0.576, 0.331) 0.231 (−0.576, 0.331) 0.231 (−0.576, 0.331) 0.232 (−0.577, 0.335) 0.232 (−0.577, 0.335) 0.000 (0.000, 0.001) 0.000 (0.000, 0.001) 0.011 (0.006, 0.049) 0.000 (0.000, 0.001) 0.000 (0.000, 0.001)
Predictable × Study Income −0.026 0.279** 0.279** 0.056 0.056 0.056 0.053 0.053 0.000*** 0.000*** 0.014** 0.000*** 0.000*
0.024 (−0.074, 0.023) 0.109 (0.065, 0.494) 0.109 (0.065, 0.494) 0.054 (−0.050, 0.161) 0.054 (−0.050, 0.161) 0.054 (−0.050, 0.161) 0.053 (−0.051, 0.157) 0.053 (−0.051, 0.157) 0.000 (0.000, 0.000) 0.000 (0.000, 0.000) 0.007 (0.001, 0.027) 0.000 (0.000, 0.000) 0.000 (−0.000, 0.000)
Observations 12593 12593 12593 12593 12593 12593 12593 12593 12590 12590 4585 12590 12590 12593 12593 12593 12593 12593 12593 12593 12593 12590 12590 4585 12590 12590 12593 12593 12593 12593 12593 12593 12593 12593 12590 12590 4585 12590 12590
Note

For risky arms that did not complete dropoff, we impute a medium draw for the regressions below

Code
```{r}
#| tbl-cap: ""

makeTable(collect_models(c(7, 8)))
```
 food_purchase_total_bl_99  fopurch_tot_99_NoMed  fopurch_tot_bl_99_NoMed  fopurch_tot_99_NoGrain  fopurch_tot_phone_99_NoGrain  fopurch_tot_bl_99_NoGrain  fopurch_tot_99_NoGr_NoMed  fopurch_tot_bl_99_NoGr_NoMed  food_purch_99_ShGr  food_purch_99_ShGr_NoMed  food_purch_bl_99_ShGr  food_purch_bl_99_ShGr_NoMed  food_purch_ph_99_ShGr  food_purchase_total_bl_99  fopurch_tot_99_NoMed  fopurch_tot_bl_99_NoMed  fopurch_tot_99_NoGrain  fopurch_tot_phone_99_NoGrain  fopurch_tot_bl_99_NoGrain  fopurch_tot_99_NoGr_NoMed  fopurch_tot_bl_99_NoGr_NoMed  food_purch_99_ShGr  food_purch_99_ShGr_NoMed  food_purch_bl_99_ShGr  food_purch_bl_99_ShGr_NoMed  food_purch_ph_99_ShGr
High Draw 4.084** 47.533*** 47.533*** 22.236*** 22.236*** 22.236*** 21.990*** 21.990*** 0.008 0.008 0.146 0.008 0.008 8.143*** 65.457*** 65.457*** 27.792*** 27.792*** 27.792*** 27.438*** 27.438*** 0.014 0.014 2.985 0.014 0.017*
2.058 (0.049, 8.120) 14.257 (19.574, 75.492) 14.257 (19.574, 75.492) 6.507 (9.476, 34.996) 6.507 (9.476, 34.996) 6.507 (9.476, 34.996) 6.442 (9.356, 34.623) 6.442 (9.356, 34.623) 0.008 (−0.007, 0.023) 0.008 (−0.007, 0.024) 0.606 (−1.042, 1.334) 0.008 (−0.007, 0.024) 0.008 (−0.008, 0.024) 2.802 (2.648, 13.638) 18.589 (29.003, 101.911) 18.589 (29.003, 101.911) 8.504 (11.115, 44.469) 8.504 (11.115, 44.469) 8.504 (11.115, 44.469) 8.462 (10.844, 44.032) 8.462 (10.844, 44.032) 0.010 (−0.006, 0.033) 0.010 (−0.006, 0.033) 295601.535 (−579675.827, 579681.797) 0.010 (−0.006, 0.033) 0.010 (−0.003, 0.038)
Low Draw 5.751*** 55.821*** 55.821*** 25.831*** 25.831*** 25.831*** 25.503*** 25.503*** 0.006 0.006 0.843 0.006 0.007 9.822*** 74.110*** 74.110*** 31.603*** 31.603*** 31.603*** 31.183*** 31.183*** 0.011 0.011 3.711 0.011 0.016
2.081 (1.669, 9.833) 14.253 (27.870, 83.772) 14.253 (27.870, 83.772) 6.502 (13.081, 38.581) 6.502 (13.081, 38.581) 6.502 (13.081, 38.581) 6.439 (12.876, 38.129) 6.439 (12.876, 38.129) 0.008 (−0.010, 0.021) 0.008 (−0.010, 0.021) 0.627 (−0.388, 2.073) 0.008 (−0.010, 0.021) 0.009 (−0.010, 0.024) 2.851 (4.232, 15.412) 18.376 (38.074, 110.146) 18.376 (38.074, 110.146) 8.419 (15.092, 48.113) 8.419 (15.092, 48.113) 8.419 (15.092, 48.113) 8.385 (14.740, 47.625) 8.385 (14.740, 47.625) 0.010 (−0.009, 0.031) 0.010 (−0.009, 0.031) 295601.370 (−579674.778, 579682.199) 0.010 (−0.009, 0.031) 0.011 (−0.005, 0.036)
Medium Draw 3.939** 59.342*** 59.342*** 21.500*** 21.500*** 21.500*** 21.052*** 21.052*** 0.011 0.012 −0.018 0.012 0.016** 4.414** 58.536*** 58.536*** 20.731*** 20.731*** 20.731*** 20.224*** 20.224*** 0.013* 0.013* 0.791 0.013* 0.017**
1.887 (0.238, 7.641) 14.332 (31.237, 87.446) 14.332 (31.237, 87.446) 6.315 (9.117, 33.884) 6.315 (9.117, 33.884) 6.315 (9.117, 33.884) 6.274 (8.749, 33.355) 6.274 (8.749, 33.355) 0.007 (−0.003, 0.026) 0.007 (−0.003, 0.026) 0.566 (−1.127, 1.092) 0.007 (−0.003, 0.026) 0.008 (0.000, 0.031) 2.026 (0.441, 8.388) 14.368 (30.361, 86.711) 14.368 (30.361, 86.711) 6.338 (8.302, 33.159) 6.338 (8.302, 33.159) 6.338 (8.302, 33.159) 6.288 (7.893, 32.554) 6.288 (7.893, 32.554) 0.008 (−0.002, 0.027) 0.008 (−0.002, 0.028) 295601.618 (−579678.184, 579679.767) 0.008 (−0.002, 0.028) 0.008 (0.001, 0.033)
unpredictable −2.139 1.382 1.382 −3.663 −3.663 −3.663 −3.708 −3.708 0.005 0.005 0.060 0.005 0.005 −2.307 3.980 3.980 −2.245 −2.245 −2.245 −2.228 −2.228 0.004 0.004 0.164 0.004 0.005
1.502 (−5.084, 0.805) 11.518 (−21.204, 23.968) 11.518 (−21.204, 23.968) 5.127 (−13.717, 6.391) 5.127 (−13.717, 6.391) 5.127 (−13.717, 6.391) 5.075 (−13.660, 6.244) 5.075 (−13.660, 6.244) 0.006 (−0.006, 0.016) 0.006 (−0.006, 0.016) 0.449 (−0.821, 0.940) 0.006 (−0.006, 0.016) 0.006 (−0.007, 0.018) 1.724 (−5.687, 1.074) 11.438 (−18.449, 26.410) 11.438 (−18.449, 26.410) 5.175 (−12.392, 7.903) 5.175 (−12.392, 7.903) 5.175 (−12.392, 7.903) 5.110 (−12.249, 7.794) 5.110 (−12.249, 7.794) 0.006 (−0.007, 0.015) 0.006 (−0.007, 0.015) 0.462 (−0.742, 1.069) 0.006 (−0.007, 0.015) 0.007 (−0.008, 0.017)
draw_imputed_lag1:: −2.037 11.840 11.840 7.390 7.390 7.390 7.772 7.772 −0.006 −0.006 −0.006 −0.007
1.725 (−5.421, 1.347) 17.608 (−22.689, 46.370) 17.608 (−22.689, 46.370) 7.719 (−7.747, 22.527) 7.719 (−7.747, 22.527) 7.719 (−7.747, 22.527) 7.706 (−7.340, 22.883) 7.706 (−7.340, 22.883) 0.009 (−0.024, 0.012) 0.009 (−0.025, 0.012) 0.009 (−0.025, 0.012) 0.010 (−0.025, 0.012)
High Draw previous period −4.809 −27.784* −27.784* −10.230 −10.230 −10.230 −10.318 −10.318 −0.004 −0.004 −3.288 −0.004 −0.009
3.014 (−10.719, 1.102) 14.342 (−55.909, 0.340) 14.342 (−55.909, 0.340) 6.988 (−23.934, 3.474) 6.988 (−23.934, 3.474) 6.988 (−23.934, 3.474) 6.947 (−23.942, 3.306) 6.947 (−23.942, 3.306) 0.008 (−0.020, 0.012) 0.008 (−0.020, 0.012) 295601.399 (−579681.834, 579675.258) 0.008 (−0.020, 0.012) 0.009 (−0.026, 0.008)
Low Draw previous period −4.296 −20.035 −20.035 −5.998 −5.998 −5.998 −5.799 −5.799 −0.007 −0.007 −2.611 −0.007 −0.011
3.059 (−10.293, 1.702) 14.584 (−48.634, 8.565) 14.584 (−48.634, 8.565) 7.081 (−19.883, 7.888) 7.081 (−19.883, 7.888) 7.081 (−19.883, 7.888) 7.041 (−19.607, 8.009) 7.041 (−19.607, 8.009) 0.008 (−0.023, 0.010) 0.008 (−0.023, 0.010) 295601.531 (−579681.416, 579676.193) 0.008 (−0.023, 0.010) 0.009 (−0.028, 0.007)
Medium Draw previous period −0.713
295601.623 (−579679.697, 579678.271)
Observations 12593 12593 12593 12593 12593 12593 12593 12593 12590 12590 4585 12590 12590 12593 12593 12593 12593 12593 12593 12593 12593 12590 12590 4585 12590 12590
Note

Only treated participants that completed pickup are included in the regressions below.

Code
```{r}
#| tbl-cap: ""

makeTable(collect_models(c(9, 10)))
```
 food_purchase_total_bl_99  fopurch_tot_99_NoMed  fopurch_tot_bl_99_NoMed  fopurch_tot_99_NoGrain  fopurch_tot_phone_99_NoGrain  fopurch_tot_bl_99_NoGrain  fopurch_tot_99_NoGr_NoMed  fopurch_tot_bl_99_NoGr_NoMed  food_purch_99_ShGr  food_purch_99_ShGr_NoMed  food_purch_bl_99_ShGr  food_purch_bl_99_ShGr_NoMed  food_purch_ph_99_ShGr  food_purchase_total_bl_99  fopurch_tot_99_NoMed  fopurch_tot_bl_99_NoMed  fopurch_tot_99_NoGrain  fopurch_tot_phone_99_NoGrain  fopurch_tot_bl_99_NoGrain  fopurch_tot_99_NoGr_NoMed  fopurch_tot_bl_99_NoGr_NoMed  food_purch_99_ShGr  food_purch_99_ShGr_NoMed  food_purch_bl_99_ShGr  food_purch_bl_99_ShGr_NoMed  food_purch_ph_99_ShGr
High Draw 3.355 51.468*** 51.468*** 24.519*** 24.519*** 24.519*** 24.309*** 24.309*** 0.005 0.005 −0.110 0.005 0.006 2.163 −1.104 −1.104 4.800 4.800 4.800 4.862 4.862 0.110 0.105 0.211 0.105 0.268
2.163 (−0.887, 7.597) 14.868 (22.311, 80.624) 14.868 (22.311, 80.624) 6.818 (11.149, 37.888) 6.818 (11.149, 37.888) 6.818 (11.149, 37.888) 6.751 (11.071, 37.547) 6.751 (11.071, 37.547) 0.008 (−0.011, 0.021) 0.008 (−0.011, 0.021) 0.645 (−1.375, 1.154) 0.008 (−0.011, 0.021) 0.009 (−0.011, 0.023) 1110938.522 (−2178612.486, 2178616.813) 5873465.655 (−11518206.720, 11518204.512) 5873465.655 (−11518206.720, 11518204.512) 2510773.645 (−4923767.433, 4923777.032) 2510773.645 (−4923767.433, 4923777.032) 2510773.645 (−4923767.433, 4923777.032) 2470883.197 (−4845539.896, 4845549.620) 2470883.197 (−4845539.896, 4845549.620) 2769.497 (−5431.035, 5431.254) 2777.267 (−5446.276, 5446.486) 0.665 (−1.094, 1.515) 2777.267 (−5446.276, 5446.486) 2930.293 (−5746.206, 5746.741)
Low Draw 5.050** 58.664*** 58.664*** 27.819*** 27.819*** 27.819*** 27.532*** 27.532*** 0.002 0.002 0.549 0.002 0.004 3.654 11.222 11.222 9.580 9.580 9.580 9.639 9.639 0.106 0.102 1.015 0.102 0.265
2.200 (0.736, 9.364) 14.923 (29.400, 87.928) 14.923 (29.400, 87.928) 6.833 (14.419, 41.219) 6.833 (14.419, 41.219) 6.833 (14.419, 41.219) 6.765 (14.266, 40.798) 6.765 (14.266, 40.798) 0.008 (−0.014, 0.018) 0.008 (−0.014, 0.019) 0.631 (−0.688, 1.787) 0.008 (−0.014, 0.019) 0.009 (−0.014, 0.022) 1110938.485 (−2178610.925, 2178618.232) 5873466.062 (−11518195.193, 11518217.637) 5873466.062 (−11518195.193, 11518217.637) 2510773.739 (−4923762.838, 4923781.997) 2510773.739 (−4923762.838, 4923781.997) 2510773.739 (−4923762.838, 4923781.997) 2470883.290 (−4845535.303, 4845554.580) 2470883.290 (−4845535.303, 4845554.580) 2769.497 (−5431.038, 5431.250) 2777.267 (−5446.279, 5446.482) 0.750 (−0.456, 2.487) 2777.267 (−5446.279, 5446.482) 2930.293 (−5746.208, 5746.739)
Medium Draw 4.446** 55.561*** 55.561*** 18.608*** 18.608*** 18.608*** 18.131*** 18.131*** 0.016** 0.017** 0.346 0.017** 0.020** 5.042** 44.420*** 44.420*** 13.739** 13.739** 13.739** 13.132** 13.132** 0.017** 0.017** 0.379 0.017** 0.020**
1.939 (0.643, 8.249) 15.156 (25.839, 85.282) 15.156 (25.839, 85.282) 6.595 (5.675, 31.541) 6.595 (5.675, 31.541) 6.595 (5.675, 31.541) 6.554 (5.278, 30.984) 6.554 (5.278, 30.984) 0.008 (0.001, 0.031) 0.008 (0.002, 0.032) 0.594 (−0.820, 1.511) 0.008 (0.002, 0.032) 0.008 (0.004, 0.035) 2.256 (0.618, 9.467) 15.170 (14.671, 74.169) 15.170 (14.671, 74.169) 6.601 (0.794, 26.684) 6.601 (0.794, 26.684) 6.601 (0.794, 26.684) 6.540 (0.307, 25.956) 6.540 (0.307, 25.956) 0.008 (0.001, 0.033) 0.008 (0.002, 0.033) 0.594 (−0.785, 1.544) 0.008 (0.002, 0.033) 0.009 (0.004, 0.037)
unpredictable −1.009 −2.590 −2.590 −6.285 −6.285 −6.285 −6.400 −6.400 0.010 0.010 0.448 0.010 0.008 −1.703 −6.451 −6.451 −7.282 −7.282 −7.282 −7.474 −7.474 0.008 0.008 0.381 0.008 0.006
1.732 (−4.404, 2.387) 12.598 (−27.296, 22.116) 12.598 (−27.296, 22.116) 5.665 (−17.395, 4.825) 5.665 (−17.395, 4.825) 5.665 (−17.395, 4.825) 5.609 (−17.399, 4.599) 5.609 (−17.399, 4.599) 0.006 (−0.003, 0.022) 0.006 (−0.003, 0.022) 0.536 (−0.603, 1.499) 0.006 (−0.003, 0.022) 0.007 (−0.005, 0.022) 2.039 (−5.703, 2.296) 12.538 (−31.039, 18.137) 12.538 (−31.039, 18.137) 5.737 (−18.533, 3.969) 5.737 (−18.533, 3.969) 5.737 (−18.533, 3.969) 5.662 (−18.577, 3.630) 5.662 (−18.577, 3.630) 0.007 (−0.005, 0.021) 0.007 (−0.005, 0.021) 0.545 (−0.688, 1.450) 0.007 (−0.005, 0.021) 0.007 (−0.008, 0.021)
High Draw previous period 1.571 37.446 37.446 13.109 13.109 13.109 12.637 12.637 −0.102 −0.097 −0.771 −0.097 −0.259
1110938.286 (−2178612.617, 2178615.758) 5873465.112 (−11518167.105, 11518241.997) 5873465.112 (−11518167.105, 11518241.997) 2510773.412 (−4923758.666, 4923784.885) 2510773.412 (−4923758.666, 4923784.885) 2510773.412 (−4923758.666, 4923784.885) 2470882.971 (−4845531.677, 4845556.952) 2470882.971 (−4845531.677, 4845556.952) 2769.498 (−5431.247, 5431.043) 2777.267 (−5446.479, 5446.285) 0.590 (−1.927, 0.386) 2777.267 (−5446.479, 5446.285) 2930.293 (−5746.733, 5746.214)
Low Draw previous period 1.942 45.149 45.149 17.276 17.276 17.276 17.120 17.120 −0.104 −0.100 −0.100 −0.261
1110938.437 (−2178612.541, 2178616.426) 5873465.502 (−11518160.168, 11518250.466) 5873465.502 (−11518160.168, 11518250.466) 2510773.597 (−4923754.861, 4923789.414) 2510773.597 (−4923754.861, 4923789.414) 2510773.597 (−4923754.861, 4923789.414) 2470883.137 (−4845527.522, 4845561.761) 2470883.137 (−4845527.522, 4845561.761) 2769.498 (−5431.249, 5431.041) 2777.267 (−5446.481, 5446.282) 2777.267 (−5446.481, 5446.282) 2930.293 (−5746.734, 5746.212)
Observations 11968 11968 11968 11968 11968 11968 11968 11968 11965 11965 4333 11965 11965 10385 10385 10385 10385 10385 10385 10385 10385 10382 10382 4278 10382 10382
Note

Only participants who completed all surveys are included in the regressions below.

Code
```{r}
#| tbl-cap: ""

makeTable(collect_models(11))
```
 food_purchase_total_bl_99  fopurch_tot_99_NoMed  fopurch_tot_bl_99_NoMed  fopurch_tot_99_NoGrain  fopurch_tot_phone_99_NoGrain  fopurch_tot_bl_99_NoGrain  fopurch_tot_99_NoGr_NoMed  fopurch_tot_bl_99_NoGr_NoMed  food_purch_99_ShGr  food_purch_99_ShGr_NoMed  food_purch_bl_99_ShGr  food_purch_bl_99_ShGr_NoMed  food_purch_ph_99_ShGr
Stable 2.667 56.813*** 56.813*** 19.731** 19.731** 19.731** 19.312** 19.312** 0.019** 0.020** 0.468 0.020** 0.023**
2.229 (−1.705, 7.039) 18.275 (20.967, 92.659) 18.275 (20.967, 92.659) 7.820 (4.393, 35.070) 7.820 (4.393, 35.070) 7.820 (4.393, 35.070) 7.780 (4.052, 34.572) 7.780 (4.052, 34.572) 0.009 (0.001, 0.037) 0.009 (0.001, 0.038) 0.800 (−1.102, 2.038) 0.009 (0.001, 0.038) 0.010 (0.004, 0.042)
Predictable 2.646 50.423*** 50.423*** 24.085*** 24.085*** 24.085*** 23.859*** 23.859*** 0.007 0.007 0.256 0.007 0.008
2.355 (−1.973, 7.265) 17.636 (15.830, 85.015) 17.636 (15.830, 85.015) 7.846 (8.696, 39.474) 7.846 (8.696, 39.474) 7.846 (8.696, 39.474) 7.800 (8.560, 39.158) 7.800 (8.560, 39.158) 0.009 (−0.011, 0.026) 0.010 (−0.011, 0.026) 0.776 (−1.267, 1.778) 0.010 (−0.011, 0.026) 0.010 (−0.012, 0.027)
Risky 2.396 56.140*** 56.140*** 23.194*** 23.194*** 23.194*** 22.810*** 22.810*** 0.010 0.010 0.363 0.010 0.012
1.937 (−1.402, 6.195) 14.733 (27.241, 85.039) 14.733 (27.241, 85.039) 6.454 (10.535, 35.852) 6.454 (10.535, 35.852) 6.454 (10.535, 35.852) 6.413 (10.232, 35.388) 6.413 (10.232, 35.388) 0.008 (−0.006, 0.026) 0.008 (−0.006, 0.027) 0.781 (−1.168, 1.894) 0.008 (−0.006, 0.027) 0.009 (−0.005, 0.029)
Observations 9384 9384 9384 9384 9384 9384 9384 9384 9382 9382 3313 9382 9382
Note

The regressions below include baseline (period 0) data.

Code
```{r}
#| tbl-cap: ""

makeTable(collect_models(15))
```
 food_purchase_total_bl_99  fopurch_tot_99_NoMed  fopurch_tot_bl_99_NoMed  fopurch_tot_99_NoGrain  fopurch_tot_phone_99_NoGrain  fopurch_tot_bl_99_NoGrain  fopurch_tot_99_NoGr_NoMed  fopurch_tot_bl_99_NoGr_NoMed  food_purch_99_ShGr  food_purch_99_ShGr_NoMed  food_purch_bl_99_ShGr  food_purch_bl_99_ShGr_NoMed  food_purch_ph_99_ShGr
Stable 3.663* 47.322*** 47.322*** 16.235*** 16.235*** 16.235*** 15.641*** 15.641*** 0.012* 0.013** 0.180 0.013** 0.015**
1.873 (−0.011, 7.336) 12.829 (22.164, 72.480) 12.829 (22.164, 72.480) 5.671 (5.115, 27.356) 5.671 (5.115, 27.356) 5.671 (5.115, 27.356) 5.636 (4.590, 26.693) 5.636 (4.590, 26.693) 0.006 (−0.000, 0.025) 0.006 (0.000, 0.026) 0.391 (−0.588, 0.947) 0.006 (0.000, 0.026) 0.007 (0.002, 0.029)
Predictable 4.010** 46.659*** 46.659*** 21.767*** 21.767*** 21.767*** 21.488*** 21.488*** 0.004 0.004 0.130 0.004 0.007
1.933 (0.218, 7.801) 12.314 (22.512, 70.807) 12.314 (22.512, 70.807) 5.669 (10.650, 32.884) 5.669 (10.650, 32.884) 5.669 (10.650, 32.884) 5.614 (10.478, 32.498) 5.614 (10.478, 32.498) 0.007 (−0.009, 0.017) 0.007 (−0.009, 0.018) 0.378 (−0.612, 0.873) 0.007 (−0.009, 0.018) 0.007 (−0.008, 0.021)
Risky 1.874 43.449*** 43.449*** 15.744*** 15.744*** 15.744*** 15.316*** 15.316*** 0.011* 0.011** 0.380 0.011** 0.012**
1.543 (−1.151, 4.899) 10.056 (23.729, 63.169) 10.056 (23.729, 63.169) 4.575 (6.772, 24.715) 4.575 (6.772, 24.715) 4.575 (6.772, 24.715) 4.537 (6.419, 24.212) 4.537 (6.419, 24.212) 0.005 (−0.000, 0.021) 0.005 (0.000, 0.022) 0.377 (−0.360, 1.120) 0.005 (0.000, 0.022) 0.006 (0.000, 0.023)
Observations 14865 14865 14865 14865 14865 14865 14865 14865 14862 14862 6857 14862 14862
Note

The regressions below exclude endline (period 6) data.

Code
```{r}
#| tbl-cap: ""

makeTable(collect_models(16))
```
 food_purchase_total_bl_99  fopurch_tot_99_NoMed  fopurch_tot_bl_99_NoMed  fopurch_tot_99_NoGrain  fopurch_tot_phone_99_NoGrain  fopurch_tot_bl_99_NoGrain  fopurch_tot_99_NoGr_NoMed  fopurch_tot_bl_99_NoGr_NoMed  food_purch_99_ShGr  food_purch_99_ShGr_NoMed  food_purch_bl_99_ShGr  food_purch_bl_99_ShGr_NoMed  food_purch_ph_99_ShGr
Stable 0.549 53.451*** 53.451*** 17.525*** 17.525*** 17.525*** 17.650*** 17.650*** 0.013 0.013 0.205 0.013 0.014*
0.350 (−0.138, 1.236) 14.996 (24.043, 82.858) 14.996 (24.043, 82.858) 6.042 (5.677, 29.372) 6.042 (5.677, 29.372) 6.042 (5.677, 29.372) 6.061 (5.764, 29.535) 6.061 (5.764, 29.535) 0.008 (−0.003, 0.029) 0.008 (−0.003, 0.029) 1.153 (−2.056, 2.466) 0.008 (−0.003, 0.029) 0.008 (−0.002, 0.030)
Predictable 0.583* 50.436*** 50.436*** 23.787*** 23.787*** 23.787*** 23.934*** 23.934*** −0.002 −0.002 0.031 −0.002 −0.001
0.349 (−0.102, 1.269) 14.138 (22.711, 78.161) 14.138 (22.711, 78.161) 5.817 (12.380, 35.194) 5.817 (12.380, 35.194) 5.817 (12.380, 35.194) 5.816 (12.529, 35.338) 5.816 (12.529, 35.338) 0.009 (−0.018, 0.015) 0.009 (−0.019, 0.015) 1.125 (−2.176, 2.238) 0.009 (−0.019, 0.015) 0.009 (−0.018, 0.016)
Risky 0.647** 52.158*** 52.158*** 19.483*** 19.483*** 19.483*** 19.480*** 19.480*** 0.010 0.010 0.726 0.010 0.012*
0.291 (0.076, 1.217) 11.736 (29.143, 75.173) 11.736 (29.143, 75.173) 4.808 (10.056, 28.911) 4.808 (10.056, 28.911) 4.808 (10.056, 28.911) 4.810 (10.047, 28.913) 4.810 (10.047, 28.913) 0.007 (−0.004, 0.024) 0.007 (−0.004, 0.024) 1.097 (−1.424, 2.877) 0.007 (−0.004, 0.024) 0.007 (−0.002, 0.026)
Observations 10345 10345 10345 10345 10345 10345 10345 10345 10342 10342 2337 10342 10342
Code
```{r}
data_set_index <- 4
chosen <- file_dfs[[data_set_index]]
full_list <- get_varying_vars(chosen, c("hh_id", "period"))
```

4 Regressions for Food_Wins_Consump_PC.dta

Code
```{r}
#| tbl-cap: ""

makeTable(collect_models(c(1, 2)))
```
 food_consump_item_99_pc  food_consump_item_phone_99_pc  food_consumption_item_bl_99_pc  food_consumption_grains_99_pc  food_consumption_veges_99_pc  food_consumption_bevs_99_pc  food_consumption_pulses_99_pc  food_consumption_dairy_99_pc  food_consumption_meat_99_pc  food_consumption_fruits_99_pc  food_consumption_spices_99_pc  food_consump_total_phone_99_pc  food_consump_total_bl_99_pc  food_consump_item_99_pc  food_consump_item_phone_99_pc  food_consumption_item_bl_99_pc  food_consumption_grains_99_pc  food_consumption_veges_99_pc  food_consumption_bevs_99_pc  food_consumption_pulses_99_pc  food_consumption_dairy_99_pc  food_consumption_meat_99_pc  food_consumption_fruits_99_pc  food_consumption_spices_99_pc  food_consump_total_phone_99_pc  food_consump_total_bl_99_pc
Stable 5.126*** 3.988** 0.929** 3.286*** 0.217 0.302** 0.879** −0.006 −0.005 0.018 0.403** 4.980** 1.627* 5.322*** 4.132*** 0.994** 3.422*** 0.238 0.302** 0.918** 0.009 0.042 0.025 0.443** 5.299*** 1.872**
1.800 (1.596, 8.657) 1.556 (0.936, 7.039) 0.386 (0.173, 1.686) 1.153 (1.025, 5.548) 0.183 (−0.141, 0.576) 0.130 (0.047, 0.557) 0.419 (0.057, 1.702) 0.113 (−0.227, 0.216) 0.365 (−0.722, 0.711) 0.106 (−0.190, 0.227) 0.192 (0.026, 0.780) 2.026 (1.006, 8.953) 0.876 (−0.090, 3.344) 1.786 (1.819, 8.824) 1.548 (1.095, 7.169) 0.387 (0.234, 1.754) 1.150 (1.166, 5.677) 0.182 (−0.119, 0.596) 0.129 (0.049, 0.555) 0.415 (0.104, 1.732) 0.112 (−0.211, 0.229) 0.364 (−0.671, 0.755) 0.106 (−0.182, 0.232) 0.190 (0.070, 0.816) 2.007 (1.362, 9.236) 0.867 (0.172, 3.572)
Predictable 8.334*** 6.322*** 1.284*** 4.162*** 0.444** 0.380** 1.894*** 0.295** 0.470 0.157 0.583*** 7.315*** 2.860*** 8.293*** 6.471*** 1.235*** 4.257*** 0.452** 0.387** 1.914*** 0.315*** 0.479 0.159 0.576*** 7.730*** 2.985***
1.836 (4.733, 11.934) 1.603 (3.179, 9.466) 0.411 (0.479, 2.090) 1.170 (1.868, 6.456) 0.179 (0.092, 0.796) 0.150 (0.085, 0.675) 0.449 (1.014, 2.773) 0.120 (0.059, 0.532) 0.390 (−0.293, 1.234) 0.098 (−0.036, 0.350) 0.200 (0.191, 0.975) 2.126 (3.146, 11.485) 0.970 (0.957, 4.762) 1.832 (4.700, 11.885) 1.601 (3.331, 9.612) 0.407 (0.436, 2.034) 1.168 (1.965, 6.548) 0.179 (0.101, 0.803) 0.150 (0.092, 0.682) 0.447 (1.036, 2.791) 0.120 (0.079, 0.551) 0.389 (−0.283, 1.242) 0.098 (−0.034, 0.351) 0.200 (0.183, 0.970) 2.116 (3.579, 11.880) 0.960 (1.101, 4.868)
Risky 5.870*** 4.737*** 0.410 3.562*** 0.322** 0.231** 1.133*** 0.161* −0.124 −0.034 0.369** 5.649*** 1.239
1.508 (2.913, 8.828) 1.300 (2.188, 7.286) 0.331 (−0.239, 1.059) 0.961 (1.678, 5.446) 0.154 (0.020, 0.624) 0.111 (0.014, 0.448) 0.365 (0.417, 1.849) 0.097 (−0.028, 0.350) 0.310 (−0.731, 0.483) 0.083 (−0.196, 0.129) 0.165 (0.045, 0.693) 1.700 (2.315, 8.984) 0.761 (−0.255, 2.732)
Risky (Balanced) 4.714** 4.241** −0.024 3.171** 0.234 0.164 0.929* −0.053 −0.229 −0.073 0.193 4.377* 0.081
2.064 (0.665, 8.763) 1.862 (0.589, 7.893) 0.427 (−0.862, 0.813) 1.383 (0.459, 5.884) 0.199 (−0.157, 0.626) 0.149 (−0.128, 0.456) 0.503 (−0.057, 1.915) 0.117 (−0.283, 0.177) 0.418 (−1.048, 0.591) 0.110 (−0.287, 0.142) 0.212 (−0.224, 0.609) 2.339 (−0.211, 8.965) 0.923 (−1.730, 1.892)
Observations 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 8065 8065 8065 8065 8065 8065 8065 8065 8065 8065 8065 8065 8065
Code
```{r}
#| tbl-cap: ""

makeTable(collect_models(3))
```
 food_consump_item_99_pc  food_consump_item_phone_99_pc  food_consumption_item_bl_99_pc  food_consumption_grains_99_pc  food_consumption_veges_99_pc  food_consumption_bevs_99_pc  food_consumption_pulses_99_pc  food_consumption_dairy_99_pc  food_consumption_meat_99_pc  food_consumption_fruits_99_pc  food_consumption_spices_99_pc  food_consump_total_phone_99_pc  food_consump_total_bl_99_pc
Stable 5.104*** 3.999** 0.960** 3.303*** 0.224 0.295** 0.892** −0.007 0.018 0.017 0.413** 5.044** 1.682*
1.799 (1.575, 8.633) 1.554 (0.950, 7.047) 0.387 (0.201, 1.718) 1.151 (1.045, 5.560) 0.183 (−0.135, 0.582) 0.130 (0.040, 0.549) 0.419 (0.071, 1.713) 0.113 (−0.228, 0.215) 0.365 (−0.697, 0.734) 0.106 (−0.191, 0.225) 0.192 (0.037, 0.789) 2.017 (1.088, 9.000) 0.873 (−0.029, 3.394)
Predictable 8.169*** 6.341*** 1.248*** 4.133*** 0.453** 0.374** 1.868*** 0.299** 0.480 0.160 0.569*** 7.456*** 2.869***
1.839 (4.562, 11.775) 1.604 (3.194, 9.488) 0.409 (0.445, 2.051) 1.173 (1.832, 6.434) 0.179 (0.102, 0.804) 0.150 (0.079, 0.669) 0.448 (0.990, 2.746) 0.121 (0.063, 0.536) 0.389 (−0.283, 1.244) 0.099 (−0.034, 0.353) 0.200 (0.176, 0.962) 2.121 (3.297, 11.616) 0.964 (0.978, 4.761)
Risky Medium 4.567** 4.149** −0.056 3.128** 0.227 0.157 0.894* −0.055 −0.243 −0.080 0.171 4.236* −0.022
2.071 (0.504, 8.629) 1.865 (0.491, 7.807) 0.426 (−0.893, 0.780) 1.387 (0.408, 5.847) 0.199 (−0.164, 0.618) 0.149 (−0.136, 0.449) 0.505 (−0.096, 1.883) 0.118 (−0.286, 0.176) 0.419 (−1.065, 0.579) 0.109 (−0.293, 0.133) 0.212 (−0.245, 0.588) 2.343 (−0.359, 8.832) 0.926 (−1.838, 1.794)
Risky High 5.924** 4.473** 0.112 3.786** 0.358 0.035 0.834 0.340* 0.277 0.033 0.070 5.912** 1.663
2.700 (0.628, 11.221) 2.241 (0.078, 8.868) 0.492 (−0.853, 1.076) 1.621 (0.608, 6.964) 0.251 (−0.135, 0.850) 0.150 (−0.260, 0.329) 0.646 (−0.433, 2.101) 0.177 (−0.008, 0.688) 0.508 (−0.720, 1.274) 0.165 (−0.290, 0.356) 0.224 (−0.370, 0.510) 2.943 (0.139, 11.684) 1.348 (−0.980, 4.306)
Risky Low 7.528*** 5.743*** 1.114* 3.794** 0.251 0.337* 1.418** 0.103 0.182 −0.160 0.795** 6.742** 2.054
2.531 (2.564, 12.493) 2.071 (1.681, 9.805) 0.627 (−0.115, 2.343) 1.473 (0.905, 6.684) 0.234 (−0.208, 0.710) 0.188 (−0.032, 0.706) 0.636 (0.171, 2.666) 0.156 (−0.202, 0.408) 0.506 (−0.810, 1.174) 0.135 (−0.425, 0.105) 0.335 (0.139, 1.452) 2.700 (1.447, 12.037) 1.269 (−0.434, 4.542)
Observations 9830 9830 9830 9830 9830 9830 9830 9830 9830 9830 9830 9830 9830
Code
```{r}
#| tbl-cap: ""

makeTable(collect_models(c(4, 5, 6)))
```
 food_consump_item_99_pc  food_consump_item_phone_99_pc  food_consumption_item_bl_99_pc  food_consumption_grains_99_pc  food_consumption_veges_99_pc  food_consumption_bevs_99_pc  food_consumption_pulses_99_pc  food_consumption_dairy_99_pc  food_consumption_meat_99_pc  food_consumption_fruits_99_pc  food_consumption_spices_99_pc  food_consump_total_phone_99_pc  food_consump_total_bl_99_pc  food_consump_item_99_pc  food_consump_item_phone_99_pc  food_consumption_item_bl_99_pc  food_consumption_grains_99_pc  food_consumption_veges_99_pc  food_consumption_bevs_99_pc  food_consumption_pulses_99_pc  food_consumption_dairy_99_pc  food_consumption_meat_99_pc  food_consumption_fruits_99_pc  food_consumption_spices_99_pc  food_consump_total_phone_99_pc  food_consump_total_bl_99_pc  food_consump_item_99_pc  food_consump_item_phone_99_pc  food_consumption_item_bl_99_pc  food_consumption_grains_99_pc  food_consumption_veges_99_pc  food_consumption_bevs_99_pc  food_consumption_pulses_99_pc  food_consumption_dairy_99_pc  food_consumption_meat_99_pc  food_consumption_fruits_99_pc  food_consumption_spices_99_pc  food_consump_total_phone_99_pc  food_consump_total_bl_99_pc
Study Income 0.012* 0.007 0.004** 0.007* 0.001 0.000 0.004** −0.000 −0.002* 0.000 0.002** 0.008 0.004 −0.007 −0.009 0.003 −0.005 −0.000 −0.000 0.001 −0.001 −0.003** −0.000 0.001 −0.012 −0.001 −0.011 −0.012 0.002 −0.006 −0.001 −0.000 0.001 −0.001 −0.005** −0.000 −0.000 −0.017 −0.003
0.007 (−0.001, 0.026) 0.005 (−0.003, 0.018) 0.002 (0.000, 0.008) 0.004 (−0.001, 0.015) 0.001 (−0.001, 0.002) 0.000 (−0.000, 0.001) 0.002 (0.001, 0.007) 0.000 (−0.001, 0.001) 0.001 (−0.005, 0.000) 0.000 (−0.001, 0.001) 0.001 (0.000, 0.003) 0.007 (−0.006, 0.022) 0.003 (−0.003, 0.011) 0.008 (−0.022, 0.008) 0.006 (−0.021, 0.003) 0.002 (−0.002, 0.007) 0.004 (−0.013, 0.004) 0.001 (−0.002, 0.001) 0.001 (−0.001, 0.001) 0.002 (−0.003, 0.004) 0.000 (−0.002, 0.000) 0.002 (−0.006, −0.000) 0.001 (−0.001, 0.001) 0.001 (−0.001, 0.002) 0.008 (−0.028, 0.004) 0.004 (−0.009, 0.007) 0.010 (−0.030, 0.008) 0.008 (−0.027, 0.003) 0.003 (−0.003, 0.008) 0.006 (−0.017, 0.005) 0.001 (−0.003, 0.001) 0.001 (−0.002, 0.001) 0.002 (−0.004, 0.005) 0.001 (−0.002, 0.000) 0.002 (−0.008, −0.001) 0.001 (−0.002, 0.001) 0.001 (−0.002, 0.002) 0.010 (−0.037, 0.003) 0.005 (−0.013, 0.007)
Stable 5.861*** 4.885*** 0.652 3.753*** 0.232 0.347** 0.823* 0.058 0.339 0.023 0.341 6.158*** 1.710* 3.591 3.997 −1.062 0.908 0.832 0.689* 1.015 0.556 −0.943 −0.111 0.108 3.891 −0.642
1.945 (2.047, 9.676) 1.656 (1.637, 8.133) 0.441 (−0.212, 1.517) 1.227 (1.348, 6.159) 0.197 (−0.155, 0.620) 0.140 (0.073, 0.622) 0.460 (−0.078, 1.724) 0.126 (−0.188, 0.304) 0.395 (−0.435, 1.113) 0.119 (−0.209, 0.256) 0.212 (−0.075, 0.757) 2.164 (1.914, 10.403) 0.959 (−0.171, 3.591) 4.663 (−5.552, 12.735) 4.098 (−4.039, 12.033) 0.798 (−2.627, 0.502) 2.608 (−4.205, 6.021) 0.598 (−0.341, 2.005) 0.405 (−0.106, 1.483) 1.427 (−1.784, 3.813) 0.529 (−0.482, 1.594) 1.008 (−2.920, 1.035) 0.271 (−0.643, 0.421) 0.466 (−0.806, 1.022) 5.487 (−6.868, 14.650) 2.058 (−4.677, 3.393)
Predictable 9.058*** 7.207*** 1.012** 4.622*** 0.459** 0.425*** 1.838*** 0.358*** 0.810* 0.162 0.522** 8.477*** 2.941*** 8.367*** 6.447*** 1.080* 4.479*** 0.228 0.412** 1.806*** 0.269** 0.636 0.096 0.289 7.415*** 2.579**
2.002 (5.131, 12.985) 1.725 (3.825, 10.589) 0.458 (0.114, 1.909) 1.258 (2.154, 7.089) 0.190 (0.086, 0.832) 0.159 (0.113, 0.736) 0.489 (0.879, 2.798) 0.129 (0.105, 0.610) 0.425 (−0.024, 1.644) 0.112 (−0.058, 0.381) 0.211 (0.107, 0.937) 2.298 (3.970, 12.984) 1.070 (0.842, 5.040) 2.216 (4.022, 12.712) 1.899 (2.724, 10.171) 0.588 (−0.072, 2.233) 1.396 (1.741, 7.217) 0.205 (−0.174, 0.631) 0.176 (0.067, 0.757) 0.577 (0.674, 2.939) 0.136 (0.002, 0.536) 0.497 (−0.338, 1.610) 0.128 (−0.155, 0.347) 0.242 (−0.186, 0.764) 2.544 (2.425, 12.405) 1.273 (0.082, 5.075)
Risky 6.593*** 5.619*** 0.138 4.021*** 0.337* 0.276** 1.078*** 0.223** 0.215 −0.029 0.308 6.808*** 1.320 6.925*** 5.926*** 0.176 4.177*** 0.397** 0.268** 1.082** 0.237** 0.324 −0.000 0.401** 7.274*** 1.537
1.687 (3.284, 9.901) 1.434 (2.807, 8.432) 0.389 (−0.626, 0.901) 1.056 (1.951, 6.092) 0.172 (−0.001, 0.674) 0.125 (0.032, 0.520) 0.414 (0.266, 1.889) 0.108 (0.012, 0.435) 0.359 (−0.489, 0.919) 0.108 (−0.240, 0.183) 0.191 (−0.066, 0.682) 1.905 (3.073, 10.543) 0.881 (−0.408, 3.049) 1.789 (3.417, 10.433) 1.507 (2.971, 8.881) 0.409 (−0.626, 0.977) 1.109 (2.001, 6.352) 0.180 (0.044, 0.751) 0.130 (0.013, 0.523) 0.435 (0.230, 1.935) 0.113 (0.015, 0.460) 0.379 (−0.419, 1.068) 0.118 (−0.232, 0.232) 0.199 (0.010, 0.791) 2.014 (3.325, 11.223) 0.936 (−0.298, 3.373)
Stable × Study Income 0.026 0.012 0.018** 0.030 −0.005 −0.004 −0.002 −0.005 0.014 0.002 0.003 0.028 0.026
0.046 (−0.064, 0.117) 0.040 (−0.066, 0.090) 0.009 (0.001, 0.034) 0.025 (−0.019, 0.080) 0.006 (−0.017, 0.006) 0.004 (−0.011, 0.004) 0.014 (−0.029, 0.025) 0.005 (−0.015, 0.005) 0.010 (−0.005, 0.033) 0.003 (−0.004, 0.007) 0.005 (−0.006, 0.012) 0.053 (−0.076, 0.132) 0.020 (−0.014, 0.066)
Predictable × Study Income 0.011 0.011 −0.000 0.003 0.003** 0.000 0.000 0.001 0.003 0.001 0.003 0.016 0.006
0.015 (−0.019, 0.041) 0.012 (−0.013, 0.035) 0.005 (−0.011, 0.010) 0.009 (−0.015, 0.021) 0.002 (0.000, 0.006) 0.001 (−0.002, 0.002) 0.004 (−0.008, 0.009) 0.001 (−0.001, 0.003) 0.003 (−0.004, 0.010) 0.001 (−0.001, 0.003) 0.002 (−0.001, 0.008) 0.016 (−0.016, 0.047) 0.009 (−0.011, 0.023)
Observations 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593
Note

For risky arms that did not complete dropoff, we impute a medium draw for the regressions below

Code
```{r}
#| tbl-cap: ""

makeTable(collect_models(c(7, 8)))
```
 food_consump_item_99_pc  food_consump_item_phone_99_pc  food_consumption_item_bl_99_pc  food_consumption_grains_99_pc  food_consumption_veges_99_pc  food_consumption_bevs_99_pc  food_consumption_pulses_99_pc  food_consumption_dairy_99_pc  food_consumption_meat_99_pc  food_consumption_fruits_99_pc  food_consumption_spices_99_pc  food_consump_total_phone_99_pc  food_consump_total_bl_99_pc  food_consump_item_99_pc  food_consump_item_phone_99_pc  food_consumption_item_bl_99_pc  food_consumption_grains_99_pc  food_consumption_veges_99_pc  food_consumption_bevs_99_pc  food_consumption_pulses_99_pc  food_consumption_dairy_99_pc  food_consumption_meat_99_pc  food_consumption_fruits_99_pc  food_consumption_spices_99_pc  food_consump_total_phone_99_pc  food_consump_total_bl_99_pc
High Draw 6.578*** 4.814*** 1.342*** 3.276*** 0.365* 0.322** 1.712*** 0.198 0.006 0.092 0.616*** 5.392** 2.268** 8.708*** 6.612*** 1.407*** 4.376*** 0.401 0.195 1.770*** 0.226 0.523 −0.164 0.793*** 7.670*** 2.904**
1.851 (2.949, 10.208) 1.593 (1.691, 7.937) 0.432 (0.495, 2.190) 1.162 (0.998, 5.555) 0.187 (−0.001, 0.732) 0.146 (0.035, 0.609) 0.455 (0.821, 2.604) 0.122 (−0.042, 0.438) 0.390 (−0.758, 0.770) 0.109 (−0.122, 0.305) 0.207 (0.209, 1.022) 2.107 (1.260, 9.523) 0.960 (0.385, 4.151) 2.346 (4.108, 13.308) 2.016 (2.659, 10.565) 0.446 (0.533, 2.281) 1.543 (1.350, 7.402) 0.247 (−0.083, 0.886) 0.191 (−0.179, 0.570) 0.656 (0.484, 3.057) 0.169 (−0.106, 0.559) 0.611 (−0.676, 1.721) 0.191 (−0.539, 0.211) 0.299 (0.207, 1.379) 2.749 (2.280, 13.061) 1.406 (0.147, 5.660)
Low Draw 7.042*** 5.364*** 1.248*** 3.694*** 0.321* 0.352** 1.548*** 0.154 0.336 0.100 0.589*** 6.049*** 2.367** 9.263*** 7.247*** 1.315*** 4.844*** 0.357 0.230 1.642** 0.188 0.855 −0.154 0.760*** 8.398*** 2.988**
1.902 (3.311, 10.772) 1.630 (2.167, 8.561) 0.429 (0.406, 2.090) 1.190 (1.362, 6.027) 0.182 (−0.036, 0.679) 0.146 (0.066, 0.638) 0.468 (0.630, 2.467) 0.119 (−0.080, 0.388) 0.402 (−0.453, 1.125) 0.106 (−0.109, 0.308) 0.199 (0.198, 0.980) 2.165 (1.803, 10.295) 1.013 (0.381, 4.353) 2.383 (4.589, 13.937) 2.042 (3.243, 11.251) 0.444 (0.445, 2.186) 1.581 (1.744, 7.944) 0.244 (−0.122, 0.836) 0.186 (−0.135, 0.595) 0.669 (0.330, 2.955) 0.162 (−0.131, 0.507) 0.617 (−0.355, 2.066) 0.188 (−0.522, 0.215) 0.281 (0.210, 1.311) 2.795 (2.916, 13.880) 1.434 (0.176, 5.800)
Medium Draw 6.620*** 5.195*** 0.919** 3.949*** 0.316* 0.343*** 1.138*** 0.112 0.288 0.078 0.384** 6.542*** 2.159** 7.098*** 5.393*** 1.010** 4.022*** 0.319* 0.278** 1.064** 0.110 0.553 −0.028 0.373* 6.725*** 2.198**
1.776 (3.138, 10.103) 1.521 (2.212, 8.178) 0.380 (0.173, 1.665) 1.117 (1.757, 6.140) 0.179 (−0.035, 0.668) 0.125 (0.099, 0.588) 0.418 (0.319, 1.957) 0.111 (−0.106, 0.329) 0.365 (−0.429, 1.004) 0.107 (−0.132, 0.289) 0.186 (0.019, 0.749) 1.987 (2.645, 10.440) 0.880 (0.434, 3.885) 1.832 (3.506, 10.691) 1.550 (2.354, 8.431) 0.406 (0.213, 1.807) 1.138 (1.789, 6.254) 0.180 (−0.035, 0.673) 0.125 (0.033, 0.522) 0.431 (0.218, 1.909) 0.110 (−0.105, 0.326) 0.361 (−0.155, 1.261) 0.106 (−0.236, 0.181) 0.192 (−0.005, 0.750) 1.990 (2.822, 10.629) 0.872 (0.487, 3.909)
unpredictable −0.920 −0.353 −0.860*** 0.049 −0.021 −0.106 −0.465 −0.012 −0.298 −0.128 −0.218 −0.122 −1.066 −1.231 −0.384 −0.955*** 0.083 −0.021 −0.043 −0.365 −0.006 −0.546* −0.032 −0.191 −0.101 −1.059
1.597 (−4.052, 2.211) 1.354 (−3.008, 2.303) 0.320 (−1.487, −0.232) 0.972 (−1.857, 1.956) 0.145 (−0.306, 0.264) 0.129 (−0.360, 0.147) 0.393 (−1.236, 0.306) 0.102 (−0.211, 0.188) 0.328 (−0.941, 0.346) 0.098 (−0.320, 0.064) 0.150 (−0.513, 0.077) 1.831 (−3.714, 3.469) 0.866 (−2.764, 0.632) 1.564 (−4.298, 1.835) 1.309 (−2.952, 2.184) 0.363 (−1.666, −0.244) 0.941 (−1.762, 1.928) 0.147 (−0.309, 0.267) 0.133 (−0.303, 0.217) 0.375 (−1.100, 0.370) 0.104 (−0.209, 0.198) 0.319 (−1.172, 0.080) 0.099 (−0.225, 0.162) 0.155 (−0.495, 0.112) 1.766 (−3.565, 3.363) 0.860 (−2.745, 0.627)
draw_imputed_lag1:: −2.734 −0.829 −0.637* −0.160 −0.009 0.428** 0.544 0.017 −1.734*** 0.676*** 0.146 −0.557 −0.062
2.288 (−7.220, 1.753) 2.005 (−4.761, 3.103) 0.349 (−1.321, 0.047) 1.574 (−3.247, 2.927) 0.242 (−0.483, 0.466) 0.211 (0.014, 0.842) 0.730 (−0.889, 1.976) 0.178 (−0.332, 0.367) 0.659 (−3.026, −0.442) 0.220 (0.245, 1.108) 0.332 (−0.506, 0.798) 2.707 (−5.866, 4.752) 1.469 (−2.942, 2.819)
High Draw previous period −3.054* −2.909* 0.005 −1.816 −0.041 0.040 −0.509 −0.095 −0.373 0.177 −0.195 −3.407* −0.635
1.796 (−6.575, 0.468) 1.492 (−5.834, 0.017) 0.426 (−0.831, 0.842) 1.225 (−4.218, 0.586) 0.204 (−0.440, 0.359) 0.155 (−0.263, 0.343) 0.560 (−1.607, 0.589) 0.144 (−0.377, 0.188) 0.515 (−1.383, 0.638) 0.183 (−0.182, 0.536) 0.265 (−0.714, 0.324) 2.046 (−7.420, 0.606) 1.187 (−2.962, 1.692)
Low Draw previous period −1.221 −1.227 0.060 −0.832 −0.043 0.112 0.143 0.015 −0.270 0.201 −0.278 −1.970 −0.865
1.831 (−4.810, 2.369) 1.516 (−4.199, 1.745) 0.452 (−0.827, 0.947) 1.255 (−3.293, 1.628) 0.203 (−0.440, 0.354) 0.156 (−0.195, 0.418) 0.575 (−0.984, 1.271) 0.143 (−0.266, 0.295) 0.527 (−1.303, 0.763) 0.176 (−0.144, 0.547) 0.263 (−0.795, 0.238) 2.105 (−6.098, 2.157) 1.223 (−3.262, 1.533)
Observations 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593
Note

Only treated participants that completed pickup are included in the regressions below.

Code
```{r}
#| tbl-cap: ""

makeTable(collect_models(c(9, 10)))
```
 food_consump_item_99_pc  food_consump_item_phone_99_pc  food_consumption_item_bl_99_pc  food_consumption_grains_99_pc  food_consumption_veges_99_pc  food_consumption_bevs_99_pc  food_consumption_pulses_99_pc  food_consumption_dairy_99_pc  food_consumption_meat_99_pc  food_consumption_fruits_99_pc  food_consumption_spices_99_pc  food_consump_total_phone_99_pc  food_consump_total_bl_99_pc  food_consump_item_99_pc  food_consump_item_phone_99_pc  food_consumption_item_bl_99_pc  food_consumption_grains_99_pc  food_consumption_veges_99_pc  food_consumption_bevs_99_pc  food_consumption_pulses_99_pc  food_consumption_dairy_99_pc  food_consumption_meat_99_pc  food_consumption_fruits_99_pc  food_consumption_spices_99_pc  food_consump_total_phone_99_pc  food_consump_total_bl_99_pc
High Draw 8.163*** 6.014*** 1.319*** 3.937*** 0.478** 0.330** 1.966*** 0.298** 0.348 0.172 0.620*** 7.108*** 2.987*** 6.077 5.045 1.432 2.839 0.395 0.670 1.627 −0.044 1.170 −0.104 −0.022 6.109 2.883
1.893 (4.450, 11.875) 1.644 (2.790, 9.239) 0.449 (0.439, 2.199) 1.208 (1.568, 6.307) 0.191 (0.104, 0.852) 0.157 (0.021, 0.638) 0.466 (1.053, 2.880) 0.127 (0.048, 0.548) 0.400 (−0.437, 1.133) 0.106 (−0.035, 0.380) 0.222 (0.186, 1.055) 2.181 (2.831, 11.385) 0.995 (1.036, 4.938) 816683.375 (−1601557.224, 1601569.377) 629857.476 (−1235181.869, 1235191.959) 271291.621 (−532017.116, 532019.981) 463394.490 (−908740.539, 908746.216) 85149.738 (−166983.162, 166983.952) 60786.985 (−119206.122, 119207.462) 193600.704 (−379660.544, 379663.797) 48945.317 (−95984.640, 95984.551) 143482.091 (−281375.503, 281377.842) 42635.502 (−83610.788, 83610.580) 116896.014 (−229239.862, 229239.817) 847837.760 (−1662652.741, 1662664.959) 433252.236 (−849629.792, 849635.557)
Low Draw 8.269*** 6.315*** 1.201*** 4.228*** 0.394** 0.360** 1.744*** 0.245** 0.636 0.183* 0.577*** 7.435*** 2.990*** 6.293 5.468 1.354 3.382 0.350 0.722 1.548 −0.080 1.548 −0.065 0.122 7.185 3.644
1.966 (4.414, 12.123) 1.698 (2.986, 9.644) 0.445 (0.328, 2.074) 1.246 (1.785, 6.671) 0.184 (0.033, 0.756) 0.157 (0.051, 0.669) 0.479 (0.806, 2.682) 0.125 (0.001, 0.489) 0.416 (−0.179, 1.451) 0.104 (−0.021, 0.386) 0.211 (0.164, 0.990) 2.264 (2.996, 11.875) 1.056 (0.919, 5.060) 816683.450 (−1601557.154, 1601569.739) 629857.526 (−1235181.544, 1235192.479) 271291.612 (−532017.177, 532019.884) 463394.539 (−908740.091, 908746.855) 85149.741 (−166983.213, 166983.914) 60786.986 (−119206.072, 119207.515) 193600.707 (−379660.628, 379663.724) 48945.317 (−95984.676, 95984.516) 143482.093 (−281375.130, 281378.226) 42635.507 (−83610.758, 83610.628) 116896.004 (−229239.697, 229239.941) 847837.877 (−1662651.894, 1662666.264) 433252.283 (−849629.124, 849636.412)
Medium Draw 5.188*** 3.976** 1.019*** 3.335*** 0.204 0.290** 0.860** −0.034 0.016 0.031 0.406** 5.025** 1.733* 4.758** 3.363** 1.137** 2.817** 0.103 0.164 0.716* −0.031 0.174 0.015 0.325 4.145** 1.589*
1.815 (1.628, 8.748) 1.569 (0.900, 7.052) 0.391 (0.253, 1.785) 1.167 (1.045, 5.624) 0.184 (−0.156, 0.565) 0.132 (0.032, 0.548) 0.419 (0.039, 1.682) 0.112 (−0.253, 0.186) 0.368 (−0.706, 0.738) 0.108 (−0.181, 0.242) 0.194 (0.026, 0.786) 2.041 (1.023, 9.026) 0.886 (−0.005, 3.471) 1.901 (1.030, 8.487) 1.602 (0.221, 6.505) 0.455 (0.244, 2.030) 1.192 (0.479, 5.155) 0.186 (−0.262, 0.467) 0.130 (−0.092, 0.419) 0.432 (−0.131, 1.562) 0.106 (−0.239, 0.176) 0.350 (−0.513, 0.861) 0.106 (−0.193, 0.222) 0.207 (−0.081, 0.730) 2.003 (0.216, 8.074) 0.858 (−0.092, 3.271)
unpredictable −2.932* −1.897 −0.807** −0.779 −0.152 −0.122 −0.773* −0.152 −0.759** −0.229** −0.208 −2.296 −1.935** −3.448** −2.136 −0.964** −0.929 −0.197 −0.121 −0.634 −0.156 −1.055*** −0.069 −0.209 −2.693 −2.086**
1.682 (−6.230, 0.366) 1.456 (−4.753, 0.959) 0.356 (−1.506, −0.109) 1.071 (−2.880, 1.321) 0.153 (−0.452, 0.148) 0.148 (−0.411, 0.168) 0.411 (−1.578, 0.033) 0.108 (−0.364, 0.060) 0.341 (−1.428, −0.090) 0.090 (−0.406, −0.051) 0.175 (−0.551, 0.135) 1.977 (−6.173, 1.582) 0.935 (−3.768, −0.102) 1.649 (−6.681, −0.214) 1.392 (−4.865, 0.593) 0.421 (−1.789, −0.138) 1.020 (−2.929, 1.072) 0.156 (−0.502, 0.108) 0.153 (−0.420, 0.179) 0.393 (−1.405, 0.136) 0.107 (−0.366, 0.055) 0.323 (−1.688, −0.422) 0.089 (−0.243, 0.106) 0.183 (−0.568, 0.150) 1.842 (−6.305, 0.919) 0.896 (−3.843, −0.330)
High Draw previous period 0.592 −0.642 0.009 −0.062 0.043 −0.432 −0.312 0.295 −0.767 0.169 0.489 −0.907 −0.306
816683.413 (−1601562.783, 1601563.967) 629857.457 (−1235187.520, 1235186.236) 271291.597 (−532018.493, 532018.511) 463394.471 (−908743.402, 908743.278) 85149.735 (−166983.509, 166983.595) 60786.994 (−119207.240, 119206.377) 193600.700 (−379662.474, 379661.850) 48945.321 (−95984.309, 95984.899) 143482.087 (−281377.433, 281375.898) 42635.503 (−83610.518, 83610.855) 116895.985 (−229239.294, 229240.272) 847837.764 (−1662659.765, 1662657.950) 433252.245 (−849633.000, 849632.387)
Low Draw previous period 2.423 1.034 0.112 0.890 0.017 −0.354 0.406 0.401 −0.669 0.224 0.400 0.630 −0.420
816683.326 (−1601560.781, 1601565.627) 629857.429 (−1235185.788, 1235187.856) 271291.596 (−532018.389, 532018.612) 463394.492 (−908742.492, 908744.272) 85149.738 (−166983.541, 166983.575) 60786.990 (−119207.155, 119206.446) 193600.698 (−379661.752, 379662.565) 48945.318 (−95984.196, 95984.999) 143482.076 (−281377.313, 281375.975) 42635.500 (−83610.456, 83610.905) 116895.995 (−229239.402, 229240.202) 847837.753 (−1662658.207, 1662659.466) 433252.261 (−849633.144, 849632.304)
Observations 11968 11968 11968 11968 11968 11968 11968 11968 11968 11968 11968 11968 11968 10385 10385 10385 10385 10385 10385 10385 10385 10385 10385 10385 10385 10385
Note

Only participants who completed all surveys are included in the regressions below.

Code
```{r}
#| tbl-cap: ""

makeTable(collect_models(11))
```
 food_consump_item_99_pc  food_consump_item_phone_99_pc  food_consumption_item_bl_99_pc  food_consumption_grains_99_pc  food_consumption_veges_99_pc  food_consumption_bevs_99_pc  food_consumption_pulses_99_pc  food_consumption_dairy_99_pc  food_consumption_meat_99_pc  food_consumption_fruits_99_pc  food_consumption_spices_99_pc  food_consump_total_phone_99_pc  food_consump_total_bl_99_pc
Stable 5.790*** 4.895*** 0.811** 3.693*** 0.353* 0.331** 0.790* 0.086 0.224 0.055 0.573*** 6.169*** 1.804*
2.050 (1.768, 9.812) 1.800 (1.364, 8.426) 0.412 (0.003, 1.619) 1.336 (1.072, 6.314) 0.200 (−0.039, 0.745) 0.154 (0.029, 0.633) 0.475 (−0.140, 1.721) 0.136 (−0.182, 0.353) 0.435 (−0.629, 1.077) 0.124 (−0.188, 0.299) 0.214 (0.154, 0.992) 2.358 (1.545, 10.794) 1.036 (−0.228, 3.836)
Predictable 9.129*** 7.385*** 1.212*** 4.757*** 0.574*** 0.408** 1.910*** 0.311** 0.615 0.118 0.693*** 8.750*** 3.118***
2.172 (4.868, 13.390) 1.944 (3.572, 11.199) 0.445 (0.339, 2.085) 1.432 (1.949, 7.565) 0.205 (0.173, 0.976) 0.184 (0.048, 0.768) 0.529 (0.872, 2.949) 0.144 (0.028, 0.595) 0.461 (−0.289, 1.519) 0.115 (−0.107, 0.343) 0.219 (0.263, 1.123) 2.600 (3.651, 13.850) 1.180 (0.803, 5.433)
Risky 6.656*** 5.573*** 0.420 3.831*** 0.461*** 0.299** 1.308*** 0.190 0.102 −0.010 0.502*** 6.680*** 1.427
1.801 (3.123, 10.188) 1.561 (2.510, 8.636) 0.364 (−0.294, 1.134) 1.164 (1.548, 6.113) 0.172 (0.123, 0.799) 0.135 (0.034, 0.564) 0.430 (0.464, 2.152) 0.118 (−0.043, 0.422) 0.380 (−0.643, 0.847) 0.103 (−0.211, 0.191) 0.185 (0.140, 0.864) 2.068 (2.624, 10.736) 0.960 (−0.456, 3.310)
Observations 9384 9384 9384 9384 9384 9384 9384 9384 9384 9384 9384 9384 9384
Note

The regressions below include baseline (period 0) data.

Code
```{r}
#| tbl-cap: ""

makeTable(collect_models(15))
```
 food_consump_item_99_pc  food_consump_item_phone_99_pc  food_consumption_item_bl_99_pc  food_consumption_grains_99_pc  food_consumption_veges_99_pc  food_consumption_bevs_99_pc  food_consumption_pulses_99_pc  food_consumption_dairy_99_pc  food_consumption_meat_99_pc  food_consumption_fruits_99_pc  food_consumption_spices_99_pc  food_consump_total_phone_99_pc  food_consump_total_bl_99_pc
Stable 4.280*** 3.370** 0.794* 2.824*** 0.178 0.255** 0.753** −0.004 −0.025 0.008 0.421** 4.314** 1.476*
1.628 (1.087, 7.473) 1.329 (0.763, 5.977) 0.411 (−0.011, 1.599) 0.982 (0.899, 4.749) 0.157 (−0.131, 0.486) 0.112 (0.035, 0.475) 0.361 (0.045, 1.462) 0.096 (−0.193, 0.185) 0.312 (−0.636, 0.586) 0.093 (−0.174, 0.191) 0.186 (0.057, 0.784) 1.723 (0.935, 7.692) 0.808 (−0.108, 3.060)
Predictable 7.644*** 5.392*** 1.394*** 3.556*** 0.332** 0.306** 1.615*** 0.246** 0.380 0.117 0.604*** 6.145*** 2.667***
1.625 (4.458, 10.831) 1.372 (2.701, 8.083) 0.407 (0.596, 2.193) 0.997 (1.601, 5.511) 0.154 (0.031, 0.633) 0.129 (0.053, 0.559) 0.391 (0.849, 2.381) 0.102 (0.046, 0.447) 0.331 (−0.269, 1.029) 0.086 (−0.051, 0.285) 0.184 (0.243, 0.966) 1.810 (2.596, 9.694) 0.859 (0.982, 4.351)
Risky 4.849*** 3.929*** 0.274 2.982*** 0.258* 0.180* 0.919*** 0.126 −0.133 −0.035 0.337** 4.740*** 1.011
1.363 (2.176, 7.523) 1.113 (1.747, 6.111) 0.348 (−0.409, 0.958) 0.818 (1.378, 4.587) 0.132 (−0.001, 0.517) 0.095 (−0.006, 0.367) 0.318 (0.295, 1.542) 0.082 (−0.035, 0.287) 0.263 (−0.648, 0.383) 0.072 (−0.176, 0.106) 0.156 (0.030, 0.643) 1.445 (1.905, 7.574) 0.690 (−0.343, 2.365)
Observations 14865 14865 14865 14865 14865 14865 14865 14865 14865 14865 14865 14865 14865
Note

The regressions below exclude endline (period 6) data.

Code
```{r}
#| tbl-cap: ""

makeTable(collect_models(16))
```
 food_consump_item_99_pc  food_consump_item_phone_99_pc  food_consumption_item_bl_99_pc  food_consumption_grains_99_pc  food_consumption_veges_99_pc  food_consumption_bevs_99_pc  food_consumption_pulses_99_pc  food_consumption_dairy_99_pc  food_consumption_meat_99_pc  food_consumption_fruits_99_pc  food_consumption_spices_99_pc  food_consump_total_phone_99_pc  food_consump_total_bl_99_pc
Stable 4.488*** 4.210** 0.247*** 3.245*** 0.116 0.283** 0.819* 0.006 0.038 −0.012 0.217 5.354** 1.041
1.736 (1.083, 7.892) 1.647 (0.979, 7.440) 0.088 (0.074, 0.421) 1.215 (0.862, 5.628) 0.197 (−0.269, 0.502) 0.135 (0.019, 0.548) 0.437 (−0.037, 1.675) 0.125 (−0.239, 0.251) 0.399 (−0.744, 0.820) 0.115 (−0.238, 0.214) 0.142 (−0.061, 0.495) 2.222 (0.996, 9.712) 0.849 (−0.624, 2.706)
Predictable 7.438*** 6.663*** 0.207** 4.375*** 0.393** 0.351** 1.642*** 0.336** 0.452 0.144 0.318** 7.899*** 2.059**
1.769 (3.968, 10.908) 1.708 (3.314, 10.012) 0.084 (0.042, 0.371) 1.239 (1.946, 6.804) 0.192 (0.016, 0.770) 0.157 (0.043, 0.659) 0.466 (0.728, 2.556) 0.133 (0.074, 0.598) 0.421 (−0.374, 1.277) 0.107 (−0.065, 0.354) 0.144 (0.035, 0.601) 2.353 (3.285, 12.512) 0.955 (0.186, 3.931)
Risky 5.650*** 4.632*** 0.213*** 3.528*** 0.258 0.191* 0.856** 0.175* −0.020 −0.062 0.304** 5.626*** 1.095
1.440 (2.827, 8.474) 1.374 (1.938, 7.326) 0.071 (0.073, 0.353) 1.014 (1.540, 5.516) 0.168 (−0.072, 0.587) 0.115 (−0.035, 0.416) 0.379 (0.113, 1.599) 0.106 (−0.033, 0.382) 0.339 (−0.686, 0.645) 0.092 (−0.242, 0.118) 0.124 (0.060, 0.547) 1.872 (1.955, 9.298) 0.745 (−0.365, 2.556)
Observations 10345 10345 10345 10345 10345 10345 10345 10345 10345 10345 10345 10345 10345
Code
```{r}
data_set_index <- 5
chosen <- file_dfs[[data_set_index]]
full_list <- get_varying_vars(chosen, c("hh_id", "period"))
```

5 Regressions for Food_Wins_consump_AEM.dta

Code
```{r}
#| tbl-cap: ""

makeTable(collect_models(c(1, 2)))
```
 food_consump_item_99_AEM  food_consump_item_phone_99_AEM  food_consumption_item_bl_99_AEM  food_consumption_grains_99_AEM  food_consumption_veges_99_AEM  food_consumption_bevs_99_AEM  food_consumption_pulses_99_AEM  food_consumption_dairy_99_AEM  food_consumption_meat_99_AEM  food_consumption_fruits_99_AEM  food_consumption_spices_99_AEM  food_consumption_total_99_AEM  food_consump_total_phone_99_AEM  food_consump_total_bl_99_AEM  focons_tot_99_NoMed_AEM  focons_tot_bl_99_NoMed_AEM  focons_tot_99_NoGrain_AEM  focons_tot_phone_99_NoGrain_AEM  focons_tot_bl_99_NoGrain_AEM  focons_tot_99_NoGr_NoMed_AEM  focons_tot_bl_99_NoGr_NoMed_AEM  food_consump_item_99_AEM  food_consump_item_phone_99_AEM  food_consumption_item_bl_99_AEM  food_consumption_grains_99_AEM  food_consumption_veges_99_AEM  food_consumption_bevs_99_AEM  food_consumption_pulses_99_AEM  food_consumption_dairy_99_AEM  food_consumption_meat_99_AEM  food_consumption_fruits_99_AEM  food_consumption_spices_99_AEM  food_consumption_total_99_AEM  food_consump_total_phone_99_AEM  food_consump_total_bl_99_AEM  focons_tot_99_NoMed_AEM  focons_tot_bl_99_NoMed_AEM  focons_tot_99_NoGrain_AEM  focons_tot_phone_99_NoGrain_AEM  focons_tot_bl_99_NoGrain_AEM  focons_tot_99_NoGr_NoMed_AEM  focons_tot_bl_99_NoGr_NoMed_AEM
Stable 5.979*** 4.732*** 1.059** 3.862*** 0.272 0.361** 1.049** 0.004 0.033 0.030 0.461** 6.933*** 5.968*** 1.948* 6.905*** 6.905*** 3.477** 3.477** 3.477** 3.442** 3.442** 6.226*** 4.906*** 1.132** 4.023*** 0.295 0.361** 1.093** 0.021 0.085 0.038 0.510** 7.422*** 6.338*** 2.226** 7.378*** 7.378*** 3.752** 3.752** 3.752** 3.700** 3.700**
2.050 (1.958, 9.999) 1.772 (1.258, 8.206) 0.440 (0.195, 1.923) 1.308 (1.297, 6.427) 0.209 (−0.138, 0.681) 0.148 (0.070, 0.651) 0.483 (0.103, 1.996) 0.129 (−0.249, 0.256) 0.417 (−0.785, 0.850) 0.123 (−0.210, 0.271) 0.221 (0.028, 0.894) 2.566 (1.901, 11.966) 2.314 (1.430, 10.507) 1.006 (−0.024, 3.921) 2.559 (1.886, 11.925) 2.559 (1.886, 11.925) 1.517 (0.501, 6.452) 1.517 (0.501, 6.452) 1.517 (0.501, 6.452) 1.510 (0.480, 6.404) 1.510 (0.480, 6.404) 2.032 (2.241, 10.211) 1.762 (1.449, 8.363) 0.442 (0.264, 1.999) 1.305 (1.463, 6.583) 0.208 (−0.114, 0.703) 0.147 (0.073, 0.648) 0.478 (0.156, 2.031) 0.127 (−0.229, 0.270) 0.415 (−0.729, 0.898) 0.122 (−0.202, 0.277) 0.218 (0.082, 0.938) 2.531 (2.457, 12.387) 2.293 (1.840, 10.835) 0.996 (0.273, 4.179) 2.524 (2.427, 12.330) 2.524 (2.427, 12.330) 1.495 (0.819, 6.686) 1.495 (0.819, 6.686) 1.495 (0.819, 6.686) 1.488 (0.782, 6.619) 1.488 (0.782, 6.619)
Predictable 9.682*** 7.361*** 1.476*** 4.920*** 0.516** 0.441*** 2.167*** 0.332** 0.555 0.180 0.674*** 11.446*** 8.509*** 3.312*** 11.414*** 11.414*** 6.679*** 6.679*** 6.679*** 6.635*** 6.635*** 9.681*** 7.565*** 1.429*** 5.045*** 0.523** 0.450*** 2.199*** 0.354*** 0.569 0.183 0.669*** 11.688*** 9.017*** 3.466*** 11.640*** 11.640*** 6.773*** 6.773*** 6.773*** 6.714*** 6.714***
2.110 (5.544, 13.820) 1.841 (3.750, 10.971) 0.472 (0.551, 2.401) 1.354 (2.264, 7.576) 0.206 (0.112, 0.920) 0.171 (0.107, 0.776) 0.518 (1.151, 3.182) 0.136 (0.067, 0.598) 0.440 (−0.308, 1.419) 0.112 (−0.040, 0.400) 0.231 (0.221, 1.126) 2.725 (6.103, 16.789) 2.448 (3.708, 13.310) 1.122 (1.111, 5.513) 2.719 (6.082, 16.745) 2.719 (6.082, 16.745) 1.655 (3.433, 9.925) 1.655 (3.433, 9.925) 1.655 (3.433, 9.925) 1.648 (3.402, 9.867) 1.648 (3.402, 9.867) 2.103 (5.555, 13.806) 1.837 (3.961, 11.168) 0.467 (0.513, 2.345) 1.352 (2.392, 7.698) 0.206 (0.120, 0.927) 0.171 (0.116, 0.785) 0.516 (1.187, 3.212) 0.135 (0.089, 0.619) 0.439 (−0.292, 1.431) 0.112 (−0.037, 0.402) 0.231 (0.216, 1.122) 2.710 (6.371, 17.004) 2.435 (4.241, 13.793) 1.110 (1.288, 5.645) 2.705 (6.334, 16.946) 2.705 (6.334, 16.946) 1.644 (3.549, 9.998) 1.644 (3.549, 9.998) 1.644 (3.549, 9.998) 1.637 (3.502, 9.925) 1.637 (3.502, 9.925)
Risky 6.638*** 5.375*** 0.458 4.044*** 0.365** 0.267** 1.262*** 0.185* −0.152 −0.041 0.416** 7.524*** 6.371*** 1.364 7.523*** 7.523*** 3.766*** 3.766*** 3.766*** 3.760*** 3.760***
1.722 (3.260, 10.015) 1.486 (2.461, 8.290) 0.379 (−0.284, 1.201) 1.099 (1.888, 6.200) 0.176 (0.019, 0.711) 0.126 (0.020, 0.513) 0.422 (0.434, 2.091) 0.110 (−0.030, 0.400) 0.350 (−0.837, 0.534) 0.094 (−0.226, 0.144) 0.191 (0.041, 0.790) 2.175 (3.259, 11.788) 1.949 (2.548, 10.194) 0.872 (−0.346, 3.075) 2.168 (3.271, 11.776) 2.168 (3.271, 11.776) 1.282 (1.253, 6.280) 1.282 (1.253, 6.280) 1.282 (1.253, 6.280) 1.277 (1.257, 6.264) 1.277 (1.257, 6.264)
Risky (Balanced) 5.380** 4.870** −0.032 3.604** 0.267 0.202 1.039* −0.057 −0.235 −0.072 0.214 5.494* 5.002* 0.072 5.483* 5.483* 2.400 2.400 2.400 2.372 2.372
2.364 (0.743, 10.016) 2.131 (0.689, 9.051) 0.490 (−0.993, 0.930) 1.578 (0.509, 6.699) 0.229 (−0.183, 0.716) 0.172 (−0.135, 0.539) 0.580 (−0.098, 2.177) 0.134 (−0.321, 0.206) 0.476 (−1.169, 0.699) 0.128 (−0.324, 0.180) 0.245 (−0.266, 0.694) 2.897 (−0.188, 11.176) 2.692 (−0.279, 10.284) 1.064 (−2.014, 2.159) 2.886 (−0.178, 11.145) 2.886 (−0.178, 11.145) 1.700 (−0.934, 5.734) 1.700 (−0.934, 5.734) 1.700 (−0.934, 5.734) 1.692 (−0.947, 5.690) 1.692 (−0.947, 5.690)
Observations 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 8065 8065 8065 8065 8065 8065 8065 8065 8065 8065 8065 8065 8065 8065 8065 8065 8065 8065 8065 8065 8065
Code
```{r}
#| tbl-cap: ""

makeTable(collect_models(3))
```
 food_consump_item_99_AEM  food_consump_item_phone_99_AEM  food_consumption_item_bl_99_AEM  food_consumption_grains_99_AEM  food_consumption_veges_99_AEM  food_consumption_bevs_99_AEM  food_consumption_pulses_99_AEM  food_consumption_dairy_99_AEM  food_consumption_meat_99_AEM  food_consumption_fruits_99_AEM  food_consumption_spices_99_AEM  food_consumption_total_99_AEM  food_consump_total_phone_99_AEM  food_consump_total_bl_99_AEM  focons_tot_99_NoMed_AEM  focons_tot_bl_99_NoMed_AEM  focons_tot_99_NoGrain_AEM  focons_tot_phone_99_NoGrain_AEM  focons_tot_bl_99_NoGrain_AEM  focons_tot_99_NoGr_NoMed_AEM  focons_tot_bl_99_NoGr_NoMed_AEM
Stable 5.943*** 4.740*** 1.093** 3.876*** 0.277 0.353** 1.064** 0.003 0.057 0.028 0.473** 6.956*** 6.033*** 2.001** 6.918*** 6.918*** 3.483** 3.483** 3.483** 3.437** 3.437**
2.052 (1.919, 9.967) 1.771 (1.267, 8.214) 0.442 (0.227, 1.959) 1.307 (1.313, 6.438) 0.209 (−0.132, 0.687) 0.148 (0.064, 0.643) 0.482 (0.118, 2.010) 0.128 (−0.249, 0.255) 0.417 (−0.760, 0.874) 0.122 (−0.212, 0.268) 0.220 (0.041, 0.905) 2.561 (1.934, 11.978) 2.306 (1.510, 10.555) 1.004 (0.033, 3.970) 2.554 (1.909, 11.926) 2.554 (1.909, 11.926) 1.515 (0.512, 6.454) 1.515 (0.512, 6.454) 1.515 (0.512, 6.454) 1.507 (0.480, 6.393) 1.507 (0.480, 6.393)
Predictable 9.492*** 7.376*** 1.437*** 4.879*** 0.524** 0.435** 2.140*** 0.337** 0.566 0.183 0.659*** 11.339*** 8.656*** 3.321*** 11.301*** 11.301*** 6.602*** 6.602*** 6.602*** 6.552*** 6.552***
2.115 (5.344, 13.641) 1.845 (3.758, 10.994) 0.470 (0.515, 2.359) 1.360 (2.211, 7.547) 0.206 (0.120, 0.928) 0.170 (0.101, 0.770) 0.517 (1.127, 3.154) 0.136 (0.071, 0.602) 0.440 (−0.297, 1.429) 0.112 (−0.037, 0.403) 0.231 (0.205, 1.112) 2.726 (5.993, 16.684) 2.445 (3.861, 13.451) 1.116 (1.133, 5.509) 2.720 (5.966, 16.635) 2.720 (5.966, 16.635) 1.652 (3.363, 9.841) 1.652 (3.363, 9.841) 1.652 (3.363, 9.841) 1.645 (3.326, 9.778) 1.645 (3.326, 9.778)
Risky Medium 5.221** 4.784** −0.066 3.574** 0.260 0.195 1.005* −0.058 −0.251 −0.081 0.190 5.264* 4.869* −0.039 5.261* 5.261* 2.253 2.253 2.253 2.232 2.232
2.370 (0.572, 9.870) 2.134 (0.598, 8.971) 0.489 (−1.025, 0.894) 1.582 (0.472, 6.676) 0.229 (−0.189, 0.710) 0.172 (−0.143, 0.533) 0.582 (−0.136, 2.147) 0.135 (−0.323, 0.207) 0.477 (−1.187, 0.686) 0.127 (−0.330, 0.169) 0.245 (−0.290, 0.670) 2.906 (−0.436, 10.964) 2.696 (−0.418, 10.156) 1.066 (−2.130, 2.053) 2.896 (−0.419, 10.940) 2.896 (−0.419, 10.940) 1.710 (−1.101, 5.607) 1.710 (−1.101, 5.607) 1.710 (−1.101, 5.607) 1.702 (−1.107, 5.571) 1.702 (−1.107, 5.571)
Risky High 7.199** 5.507** 0.173 4.588** 0.432 0.049 1.015 0.406* 0.328 0.030 0.101 8.954** 7.111** 1.927 9.001** 9.001** 4.504* 4.504* 4.504* 4.546* 4.546*
3.144 (1.032, 13.367) 2.617 (0.374, 10.640) 0.562 (−0.929, 1.274) 1.888 (0.885, 8.290) 0.289 (−0.135, 0.999) 0.173 (−0.289, 0.388) 0.747 (−0.449, 2.480) 0.208 (−0.003, 0.815) 0.574 (−0.798, 1.453) 0.182 (−0.328, 0.387) 0.261 (−0.412, 0.613) 4.017 (1.075, 16.832) 3.424 (0.396, 13.826) 1.539 (−1.091, 4.945) 3.997 (1.161, 16.842) 3.997 (1.161, 16.842) 2.433 (−0.267, 9.276) 2.433 (−0.267, 9.276) 2.433 (−0.267, 9.276) 2.413 (−0.187, 9.279) 2.413 (−0.187, 9.279)
Risky Low 9.155*** 7.040*** 1.313* 4.745*** 0.337 0.400* 1.638** 0.115 0.298 −0.171 1.003** 10.269*** 8.316*** 2.549* 10.280*** 10.280*** 5.927** 5.927** 5.927** 5.934** 5.934**
2.935 (3.398, 14.911) 2.384 (2.364, 11.716) 0.729 (−0.117, 2.742) 1.709 (1.393, 8.096) 0.273 (−0.199, 0.873) 0.215 (−0.022, 0.821) 0.706 (0.253, 3.023) 0.177 (−0.233, 0.462) 0.587 (−0.852, 1.449) 0.154 (−0.472, 0.131) 0.415 (0.189, 1.817) 3.625 (3.159, 17.379) 3.127 (2.183, 14.450) 1.491 (−0.376, 5.474) 3.619 (3.181, 17.379) 3.619 (3.181, 17.379) 2.372 (1.276, 10.579) 2.372 (1.276, 10.579) 2.372 (1.276, 10.579) 2.371 (1.284, 10.584) 2.371 (1.284, 10.584)
Observations 9830 9830 9830 9830 9830 9830 9830 9830 9830 9830 9830 9830 9830 9830 9830 9830 9830 9830 9830 9830 9830
Code
```{r}
#| tbl-cap: ""

makeTable(collect_models(c(4, 5, 6)))
```
 food_consump_item_99_AEM  food_consump_item_phone_99_AEM  food_consumption_item_bl_99_AEM  food_consumption_grains_99_AEM  food_consumption_veges_99_AEM  food_consumption_bevs_99_AEM  food_consumption_pulses_99_AEM  food_consumption_dairy_99_AEM  food_consumption_meat_99_AEM  food_consumption_fruits_99_AEM  food_consumption_spices_99_AEM  food_consumption_total_99_AEM  food_consump_total_phone_99_AEM  food_consump_total_bl_99_AEM  focons_tot_99_NoMed_AEM  focons_tot_bl_99_NoMed_AEM  focons_tot_99_NoGrain_AEM  focons_tot_phone_99_NoGrain_AEM  focons_tot_bl_99_NoGrain_AEM  focons_tot_99_NoGr_NoMed_AEM  focons_tot_bl_99_NoGr_NoMed_AEM  food_consump_item_99_AEM  food_consump_item_phone_99_AEM  food_consumption_item_bl_99_AEM  food_consumption_grains_99_AEM  food_consumption_veges_99_AEM  food_consumption_bevs_99_AEM  food_consumption_pulses_99_AEM  food_consumption_dairy_99_AEM  food_consumption_meat_99_AEM  food_consumption_fruits_99_AEM  food_consumption_spices_99_AEM  food_consumption_total_99_AEM  food_consump_total_phone_99_AEM  food_consump_total_bl_99_AEM  focons_tot_99_NoMed_AEM  focons_tot_bl_99_NoMed_AEM  focons_tot_99_NoGrain_AEM  focons_tot_phone_99_NoGrain_AEM  focons_tot_bl_99_NoGrain_AEM  focons_tot_99_NoGr_NoMed_AEM  focons_tot_bl_99_NoGr_NoMed_AEM  food_consump_item_99_AEM  food_consump_item_phone_99_AEM  food_consumption_item_bl_99_AEM  food_consumption_grains_99_AEM  food_consumption_veges_99_AEM  food_consumption_bevs_99_AEM  food_consumption_pulses_99_AEM  food_consumption_dairy_99_AEM  food_consumption_meat_99_AEM  food_consumption_fruits_99_AEM  food_consumption_spices_99_AEM  food_consumption_total_99_AEM  food_consump_total_phone_99_AEM  food_consump_total_bl_99_AEM  focons_tot_99_NoMed_AEM  focons_tot_bl_99_NoMed_AEM  focons_tot_99_NoGrain_AEM  focons_tot_phone_99_NoGrain_AEM  focons_tot_bl_99_NoGrain_AEM  focons_tot_99_NoGr_NoMed_AEM  focons_tot_bl_99_NoGr_NoMed_AEM
Study Income 0.014* 0.009 0.005** 0.008* 0.001 0.001 0.005** −0.000 −0.003* 0.000 0.002** 0.014 0.009 0.005 0.014 0.014 0.007 0.007 0.007 0.007 0.007 −0.008 −0.010 0.003 −0.006 −0.000 −0.001 0.001 −0.001 −0.004** −0.000 0.001 −0.013 −0.014 −0.001 −0.013 −0.013 −0.007 −0.007 −0.007 −0.007 −0.007 −0.012 −0.013 0.003 −0.007 −0.001 −0.000 0.001 −0.001 −0.005** −0.000 −0.000 −0.018 −0.018 −0.003 −0.019 −0.019 −0.011 −0.011 −0.011 −0.012 −0.012
0.008 (−0.001, 0.030) 0.006 (−0.004, 0.021) 0.002 (0.000, 0.009) 0.005 (−0.001, 0.017) 0.001 (−0.001, 0.002) 0.001 (−0.000, 0.002) 0.002 (0.001, 0.008) 0.001 (−0.001, 0.001) 0.002 (−0.006, 0.000) 0.000 (−0.001, 0.001) 0.001 (0.000, 0.004) 0.010 (−0.005, 0.033) 0.008 (−0.007, 0.026) 0.004 (−0.003, 0.013) 0.010 (−0.005, 0.033) 0.010 (−0.005, 0.033) 0.006 (−0.005, 0.020) 0.006 (−0.005, 0.020) 0.006 (−0.005, 0.020) 0.006 (−0.005, 0.019) 0.006 (−0.005, 0.019) 0.009 (−0.026, 0.009) 0.007 (−0.024, 0.003) 0.003 (−0.002, 0.008) 0.005 (−0.016, 0.005) 0.001 (−0.002, 0.002) 0.001 (−0.002, 0.001) 0.002 (−0.004, 0.005) 0.001 (−0.002, 0.000) 0.002 (−0.007, −0.001) 0.001 (−0.001, 0.001) 0.001 (−0.001, 0.003) 0.011 (−0.034, 0.009) 0.009 (−0.032, 0.004) 0.005 (−0.010, 0.008) 0.011 (−0.035, 0.008) 0.011 (−0.035, 0.008) 0.007 (−0.021, 0.008) 0.007 (−0.021, 0.008) 0.007 (−0.021, 0.008) 0.007 (−0.022, 0.007) 0.007 (−0.022, 0.007) 0.011 (−0.034, 0.011) 0.009 (−0.031, 0.004) 0.003 (−0.003, 0.009) 0.006 (−0.020, 0.006) 0.001 (−0.003, 0.001) 0.001 (−0.002, 0.001) 0.003 (−0.004, 0.006) 0.001 (−0.002, 0.001) 0.002 (−0.009, −0.001) 0.001 (−0.002, 0.001) 0.001 (−0.003, 0.002) 0.014 (−0.045, 0.010) 0.012 (−0.042, 0.005) 0.006 (−0.014, 0.008) 0.014 (−0.046, 0.009) 0.014 (−0.046, 0.009) 0.009 (−0.029, 0.007) 0.009 (−0.029, 0.007) 0.009 (−0.029, 0.007) 0.009 (−0.030, 0.007) 0.009 (−0.030, 0.007)
Stable 6.804*** 5.766*** 0.728 4.411*** 0.288 0.410** 0.980* 0.073 0.424 0.038 0.393 8.179*** 7.328*** 2.029* 8.228*** 8.228*** 4.137** 4.137** 4.137** 4.177** 4.177** 5.668 5.971 −1.143 2.074 1.072 0.831* 1.636 0.676 −0.973 −0.076 0.235 6.333 6.234 −0.215 6.217 6.217 3.558 3.558 3.558 3.499 3.499
2.230 (2.432, 11.177) 1.897 (2.046, 9.487) 0.502 (−0.257, 1.713) 1.399 (1.668, 7.154) 0.227 (−0.157, 0.732) 0.159 (0.098, 0.723) 0.530 (−0.060, 2.019) 0.144 (−0.209, 0.355) 0.450 (−0.459, 1.307) 0.136 (−0.229, 0.306) 0.244 (−0.086, 0.871) 2.791 (2.705, 13.653) 2.485 (2.456, 12.200) 1.102 (−0.133, 4.191) 2.784 (2.768, 13.688) 2.784 (2.768, 13.688) 1.679 (0.844, 7.431) 1.679 (0.844, 7.431) 1.679 (0.844, 7.431) 1.672 (0.899, 7.455) 1.672 (0.899, 7.455) 5.666 (−5.442, 16.778) 4.974 (−3.783, 15.725) 0.909 (−2.925, 0.638) 3.128 (−4.061, 8.209) 0.692 (−0.285, 2.429) 0.466 (−0.083, 1.744) 1.722 (−1.742, 5.013) 0.600 (−0.499, 1.852) 1.172 (−3.271, 1.325) 0.313 (−0.690, 0.537) 0.550 (−0.843, 1.313) 6.970 (−7.336, 20.002) 6.607 (−6.724, 19.191) 2.396 (−4.914, 4.484) 6.990 (−7.490, 19.925) 6.990 (−7.490, 19.925) 4.314 (−4.901, 12.017) 4.314 (−4.901, 12.017) 4.314 (−4.901, 12.017) 4.316 (−4.965, 11.964) 4.316 (−4.965, 11.964)
Predictable 10.495*** 8.380*** 1.150** 5.461*** 0.532** 0.490*** 2.098*** 0.400*** 0.940* 0.188 0.606** 12.673*** 9.848*** 3.391*** 12.716*** 12.716*** 7.330*** 7.330*** 7.330*** 7.359*** 7.359*** 9.746*** 7.567*** 1.218* 5.331*** 0.263 0.476** 2.065*** 0.305** 0.743 0.114 0.321 11.459*** 8.685*** 2.959** 11.523*** 11.523*** 6.275*** 6.275*** 6.275*** 6.328*** 6.328***
2.310 (5.966, 15.025) 1.991 (4.475, 12.285) 0.523 (0.124, 2.176) 1.463 (2.592, 8.329) 0.219 (0.103, 0.961) 0.180 (0.137, 0.843) 0.563 (0.993, 3.203) 0.146 (0.114, 0.686) 0.480 (−0.001, 1.882) 0.127 (−0.062, 0.438) 0.244 (0.128, 1.084) 2.992 (6.805, 18.541) 2.657 (4.638, 15.058) 1.235 (0.970, 5.813) 2.986 (6.861, 18.571) 2.986 (6.861, 18.571) 1.842 (3.717, 10.942) 1.842 (3.717, 10.942) 1.842 (3.717, 10.942) 1.835 (3.761, 10.957) 1.835 (3.761, 10.957) 2.553 (4.740, 14.753) 2.190 (3.272, 11.862) 0.671 (−0.097, 2.533) 1.629 (2.136, 8.525) 0.237 (−0.202, 0.728) 0.198 (0.087, 0.865) 0.661 (0.768, 3.361) 0.155 (0.001, 0.608) 0.559 (−0.354, 1.840) 0.146 (−0.172, 0.401) 0.277 (−0.223, 0.865) 3.353 (4.884, 18.034) 2.936 (2.927, 14.442) 1.470 (0.076, 5.842) 3.347 (4.959, 18.087) 3.347 (4.959, 18.087) 2.135 (2.089, 10.462) 2.135 (2.089, 10.462) 2.135 (2.089, 10.462) 2.127 (2.158, 10.498) 2.127 (2.158, 10.498)
Risky 7.449*** 6.392*** 0.133 4.583*** 0.381* 0.315** 1.194** 0.253** 0.232 −0.033 0.349 8.748*** 7.707*** 1.443 8.823*** 8.823*** 4.416*** 4.416*** 4.416*** 4.483*** 4.483*** 7.761*** 6.678*** 0.178 4.715*** 0.449** 0.305** 1.182** 0.265** 0.355 −0.002 0.457** 9.253*** 8.167*** 1.681 9.327*** 9.327*** 4.817*** 4.817*** 4.817*** 4.879*** 4.879***
1.924 (3.677, 11.222) 1.639 (3.177, 9.607) 0.443 (−0.736, 1.003) 1.207 (2.216, 6.951) 0.197 (−0.005, 0.767) 0.141 (0.038, 0.593) 0.476 (0.261, 2.128) 0.122 (0.013, 0.493) 0.404 (−0.560, 1.025) 0.122 (−0.272, 0.205) 0.221 (−0.084, 0.782) 2.449 (3.944, 13.551) 2.176 (3.441, 11.974) 1.001 (−0.519, 3.406) 2.444 (4.030, 13.617) 2.444 (4.030, 13.617) 1.484 (1.505, 7.327) 1.484 (1.505, 7.327) 1.484 (1.505, 7.327) 1.480 (1.579, 7.386) 1.480 (1.579, 7.386) 2.041 (3.760, 11.763) 1.723 (3.298, 10.058) 0.464 (−0.733, 1.088) 1.268 (2.229, 7.202) 0.206 (0.045, 0.853) 0.148 (0.016, 0.595) 0.499 (0.204, 2.160) 0.129 (0.012, 0.518) 0.427 (−0.483, 1.192) 0.133 (−0.263, 0.258) 0.231 (0.005, 0.910) 2.603 (4.148, 14.358) 2.298 (3.661, 12.674) 1.059 (−0.396, 3.759) 2.598 (4.232, 14.422) 2.598 (4.232, 14.422) 1.590 (1.699, 7.936) 1.590 (1.699, 7.936) 1.590 (1.699, 7.936) 1.586 (1.768, 7.990) 1.586 (1.768, 7.990)
Stable × Study Income 0.015 0.001 0.019** 0.025 −0.007 −0.004 −0.007 −0.006 0.015 0.001 0.003 0.024 0.016 0.025 0.025 0.025 0.010 0.010 0.010 0.011 0.011
0.056 (−0.095, 0.124) 0.048 (−0.094, 0.096) 0.010 (0.000, 0.038) 0.030 (−0.034, 0.084) 0.007 (−0.020, 0.006) 0.005 (−0.013, 0.004) 0.017 (−0.039, 0.026) 0.006 (−0.017, 0.005) 0.011 (−0.007, 0.038) 0.003 (−0.004, 0.007) 0.005 (−0.008, 0.013) 0.068 (−0.110, 0.157) 0.064 (−0.109, 0.141) 0.023 (−0.021, 0.071) 0.068 (−0.108, 0.159) 0.068 (−0.108, 0.159) 0.043 (−0.074, 0.094) 0.043 (−0.074, 0.094) 0.043 (−0.074, 0.094) 0.043 (−0.073, 0.095) 0.043 (−0.073, 0.095)
Predictable × Study Income 0.011 0.011 −0.000 0.003 0.003** 0.000 0.000 0.001 0.003 0.001 0.004* 0.018 0.017 0.007 0.018 0.018 0.015 0.015 0.015 0.015 0.015
0.018 (−0.024, 0.046) 0.014 (−0.016, 0.039) 0.006 (−0.012, 0.012) 0.011 (−0.018, 0.024) 0.002 (0.000, 0.007) 0.001 (−0.002, 0.003) 0.005 (−0.009, 0.010) 0.001 (−0.001, 0.003) 0.004 (−0.004, 0.011) 0.001 (−0.001, 0.004) 0.002 (−0.001, 0.009) 0.022 (−0.026, 0.061) 0.019 (−0.020, 0.053) 0.010 (−0.013, 0.027) 0.022 (−0.026, 0.061) 0.022 (−0.026, 0.061) 0.015 (−0.015, 0.045) 0.015 (−0.015, 0.045) 0.015 (−0.015, 0.045) 0.015 (−0.015, 0.044) 0.015 (−0.015, 0.044)
Observations 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593
Note

For risky arms that did not complete dropoff, we impute a medium draw for the regressions below

Code
```{r}
#| tbl-cap: ""

makeTable(collect_models(c(7, 8)))
```
 food_consump_item_99_AEM  food_consump_item_phone_99_AEM  food_consumption_item_bl_99_AEM  food_consumption_grains_99_AEM  food_consumption_veges_99_AEM  food_consumption_bevs_99_AEM  food_consumption_pulses_99_AEM  food_consumption_dairy_99_AEM  food_consumption_meat_99_AEM  food_consumption_fruits_99_AEM  food_consumption_spices_99_AEM  food_consumption_total_99_AEM  food_consump_total_phone_99_AEM  food_consump_total_bl_99_AEM  focons_tot_99_NoMed_AEM  focons_tot_bl_99_NoMed_AEM  focons_tot_99_NoGrain_AEM  focons_tot_phone_99_NoGrain_AEM  focons_tot_bl_99_NoGrain_AEM  focons_tot_99_NoGr_NoMed_AEM  focons_tot_bl_99_NoGr_NoMed_AEM  food_consump_item_99_AEM  food_consump_item_phone_99_AEM  food_consumption_item_bl_99_AEM  food_consumption_grains_99_AEM  food_consumption_veges_99_AEM  food_consumption_bevs_99_AEM  food_consumption_pulses_99_AEM  food_consumption_dairy_99_AEM  food_consumption_meat_99_AEM  food_consumption_fruits_99_AEM  food_consumption_spices_99_AEM  food_consumption_total_99_AEM  food_consump_total_phone_99_AEM  food_consump_total_bl_99_AEM  focons_tot_99_NoMed_AEM  focons_tot_bl_99_NoMed_AEM  focons_tot_99_NoGrain_AEM  focons_tot_phone_99_NoGrain_AEM  focons_tot_bl_99_NoGrain_AEM  focons_tot_99_NoGr_NoMed_AEM  focons_tot_bl_99_NoGr_NoMed_AEM
High Draw 7.692*** 5.640*** 1.550*** 3.887*** 0.429** 0.378** 1.978*** 0.227 0.026 0.107 0.707*** 8.754*** 6.324*** 2.654** 8.643*** 8.643*** 5.066*** 5.066*** 5.066*** 4.947*** 4.947*** 10.169*** 7.725*** 1.631*** 5.142*** 0.458 0.225 2.037*** 0.255 0.596 −0.191 0.897*** 11.891*** 8.830*** 3.265** 11.787*** 11.787*** 7.029*** 7.029*** 7.029*** 6.915*** 6.915***
2.116 (3.542, 11.842) 1.821 (2.068, 9.211) 0.496 (0.576, 2.523) 1.335 (1.269, 6.505) 0.214 (0.009, 0.849) 0.166 (0.052, 0.704) 0.525 (0.949, 3.007) 0.138 (−0.044, 0.497) 0.440 (−0.837, 0.889) 0.123 (−0.135, 0.349) 0.239 (0.238, 1.176) 2.695 (3.469, 14.039) 2.413 (1.593, 11.055) 1.104 (0.489, 4.820) 2.690 (3.368, 13.918) 2.690 (3.368, 13.918) 1.642 (1.846, 8.286) 1.642 (1.846, 8.286) 1.642 (1.846, 8.286) 1.635 (1.740, 8.154) 1.635 (1.740, 8.154) 2.688 (4.898, 15.440) 2.312 (3.192, 12.258) 0.511 (0.630, 2.632) 1.779 (1.653, 8.630) 0.283 (−0.098, 1.013) 0.219 (−0.203, 0.654) 0.752 (0.563, 3.512) 0.194 (−0.125, 0.634) 0.695 (−0.768, 1.959) 0.221 (−0.625, 0.243) 0.341 (0.229, 1.565) 3.513 (5.003, 18.779) 3.158 (2.638, 15.023) 1.616 (0.096, 6.435) 3.509 (4.905, 18.669) 3.509 (4.905, 18.669) 2.163 (2.788, 11.271) 2.163 (2.788, 11.271) 2.163 (2.788, 11.271) 2.159 (2.681, 11.150) 2.159 (2.681, 11.150)
Low Draw 8.085*** 6.167*** 1.408*** 4.329*** 0.363* 0.408** 1.745*** 0.173 0.382 0.116 0.670*** 9.403*** 6.965*** 2.715** 9.377*** 9.377*** 5.320*** 5.320*** 5.320*** 5.284*** 5.284*** 10.663*** 8.347*** 1.492*** 5.639*** 0.391 0.261 1.846** 0.208 0.955 −0.179 0.855*** 12.618*** 9.548*** 3.310** 12.607*** 12.607*** 7.316*** 7.316*** 7.316*** 7.292*** 7.292***
2.186 (3.798, 12.373) 1.875 (2.490, 9.845) 0.490 (0.446, 2.370) 1.377 (1.628, 7.030) 0.209 (−0.047, 0.773) 0.166 (0.083, 0.733) 0.539 (0.689, 2.802) 0.135 (−0.092, 0.438) 0.455 (−0.510, 1.274) 0.121 (−0.121, 0.353) 0.229 (0.220, 1.120) 2.821 (3.871, 14.934) 2.493 (2.076, 11.854) 1.165 (0.430, 5.000) 2.815 (3.857, 14.897) 2.815 (3.857, 14.897) 1.731 (1.925, 8.715) 1.731 (1.925, 8.715) 1.731 (1.925, 8.715) 1.725 (1.901, 8.667) 1.725 (1.901, 8.667) 2.716 (5.336, 15.990) 2.331 (3.777, 12.917) 0.506 (0.500, 2.485) 1.817 (2.075, 9.203) 0.279 (−0.155, 0.938) 0.213 (−0.156, 0.678) 0.763 (0.350, 3.343) 0.184 (−0.154, 0.569) 0.701 (−0.420, 2.330) 0.218 (−0.606, 0.248) 0.319 (0.229, 1.481) 3.551 (5.655, 19.580) 3.197 (3.278, 15.818) 1.644 (0.086, 6.535) 3.549 (5.646, 19.567) 3.549 (5.646, 19.567) 2.201 (2.999, 11.632) 2.201 (2.999, 11.632) 2.201 (2.999, 11.632) 2.200 (2.978, 11.606) 2.200 (2.978, 11.606)
Medium Draw 7.738*** 6.159*** 1.056** 4.658*** 0.390* 0.408*** 1.349*** 0.134 0.377 0.098 0.446** 9.256*** 7.796*** 2.564** 9.263*** 9.263*** 4.936*** 4.936*** 4.936*** 4.934*** 4.934*** 8.223*** 6.324*** 1.164** 4.692*** 0.388* 0.333** 1.245** 0.130 0.676 −0.025 0.424* 9.644*** 7.904*** 2.573** 9.645*** 9.645*** 5.305*** 5.305*** 5.305*** 5.297*** 5.297***
2.022 (3.773, 11.703) 1.734 (2.758, 9.560) 0.433 (0.206, 1.906) 1.270 (2.168, 7.148) 0.205 (−0.012, 0.792) 0.142 (0.130, 0.687) 0.481 (0.406, 2.291) 0.126 (−0.113, 0.381) 0.416 (−0.438, 1.192) 0.123 (−0.143, 0.339) 0.214 (0.026, 0.865) 2.542 (4.272, 14.240) 2.270 (3.344, 12.247) 1.006 (0.592, 4.537) 2.535 (4.292, 14.235) 2.535 (4.292, 14.235) 1.521 (1.953, 7.918) 1.521 (1.953, 7.918) 1.521 (1.953, 7.918) 1.514 (1.964, 7.903) 1.514 (1.964, 7.903) 2.083 (4.138, 12.308) 1.766 (2.862, 9.787) 0.463 (0.256, 2.072) 1.292 (2.158, 7.226) 0.206 (−0.016, 0.792) 0.142 (0.054, 0.611) 0.496 (0.273, 2.217) 0.125 (−0.114, 0.374) 0.411 (−0.131, 1.483) 0.122 (−0.264, 0.214) 0.221 (−0.008, 0.857) 2.565 (4.613, 14.674) 2.273 (3.447, 12.361) 0.998 (0.616, 4.531) 2.559 (4.627, 14.663) 2.559 (4.627, 14.663) 1.534 (2.297, 8.312) 1.534 (2.297, 8.312) 1.534 (2.297, 8.312) 1.527 (2.302, 8.292) 1.527 (2.302, 8.292)
unpredictable −1.236 −0.541 −0.993*** −0.098 −0.032 −0.127 −0.567 −0.011 −0.362 −0.151 −0.256 −1.560 −0.349 −1.311 −1.495 −1.495 −1.405 −1.405 −1.405 −1.338 −1.338 −1.521 −0.508 −1.104*** −0.006 −0.028 −0.055 −0.432 −0.002 −0.643* −0.039 −0.217 −1.686 −0.223 −1.273 −1.613 −1.613 −1.631 −1.631 −1.631 −1.555 −1.555
1.825 (−4.814, 2.343) 1.551 (−3.582, 2.500) 0.365 (−1.708, −0.277) 1.121 (−2.295, 2.100) 0.167 (−0.359, 0.294) 0.146 (−0.414, 0.160) 0.449 (−1.448, 0.313) 0.115 (−0.237, 0.214) 0.371 (−1.089, 0.365) 0.110 (−0.367, 0.064) 0.173 (−0.595, 0.083) 2.390 (−6.246, 3.126) 2.094 (−4.455, 3.756) 0.987 (−3.248, 0.625) 2.385 (−6.172, 3.181) 2.385 (−6.172, 3.181) 1.512 (−4.371, 1.560) 1.512 (−4.371, 1.560) 1.512 (−4.371, 1.560) 1.506 (−4.292, 1.616) 1.506 (−4.292, 1.616) 1.782 (−5.015, 1.974) 1.494 (−3.438, 2.423) 0.414 (−1.915, −0.293) 1.079 (−2.121, 2.110) 0.168 (−0.358, 0.302) 0.150 (−0.349, 0.239) 0.429 (−1.273, 0.408) 0.117 (−0.231, 0.226) 0.361 (−1.351, 0.064) 0.111 (−0.256, 0.178) 0.178 (−0.567, 0.133) 2.324 (−6.243, 2.871) 2.014 (−4.172, 3.726) 0.978 (−3.191, 0.645) 2.318 (−6.158, 2.933) 2.318 (−6.158, 2.933) 1.500 (−4.573, 1.311) 1.500 (−4.573, 1.311) 1.500 (−4.573, 1.311) 1.494 (−4.484, 1.374) 1.494 (−4.484, 1.374)
draw_imputed_lag1:: −2.666 −0.498 −0.752* 0.169 0.022 0.491** 0.757 0.036 −1.961*** 0.787*** 0.222 −1.732 0.057 0.147 −1.692 −1.692 −1.991 −1.991 −1.991 −1.954 −1.954
2.637 (−7.837, 2.505) 2.316 (−5.039, 4.044) 0.399 (−1.534, 0.031) 1.840 (−3.439, 3.778) 0.276 (−0.520, 0.564) 0.242 (0.016, 0.966) 0.833 (−0.878, 2.391) 0.205 (−0.366, 0.438) 0.746 (−3.424, −0.498) 0.251 (0.295, 1.279) 0.376 (−0.515, 0.958) 3.426 (−8.451, 4.987) 3.122 (−6.066, 6.180) 1.684 (−3.156, 3.450) 3.431 (−8.421, 5.037) 3.431 (−8.421, 5.037) 2.168 (−6.243, 2.260) 2.168 (−6.243, 2.260) 2.168 (−6.243, 2.260) 2.172 (−6.213, 2.305) 2.172 (−6.213, 2.305)
High Draw previous period −3.584* −3.409** −0.004 −2.123 −0.036 0.055 −0.600 −0.105 −0.405 0.207 −0.222 −4.351* −3.865* −0.635 −4.432* −4.432* −2.409 −2.409 −2.409 −2.487 −2.487
2.045 (−7.593, 0.426) 1.704 (−6.751, −0.068) 0.486 (−0.957, 0.949) 1.402 (−4.873, 0.628) 0.233 (−0.492, 0.420) 0.177 (−0.293, 0.402) 0.640 (−1.854, 0.654) 0.163 (−0.425, 0.215) 0.587 (−1.555, 0.746) 0.213 (−0.211, 0.625) 0.301 (−0.813, 0.369) 2.626 (−9.500, 0.799) 2.336 (−8.447, 0.717) 1.354 (−3.290, 2.021) 2.625 (−9.578, 0.715) 2.625 (−9.578, 0.715) 1.699 (−5.742, 0.924) 1.699 (−5.742, 0.924) 1.699 (−5.742, 0.924) 1.698 (−5.816, 0.842) 1.698 (−5.816, 0.842)
Low Draw previous period −1.561 −1.545 0.068 −1.022 −0.040 0.136 0.151 0.019 −0.287 0.234 −0.310 −2.695 −2.284 −0.878 −2.653 −2.653 −1.667 −1.667 −1.667 −1.621 −1.621
2.101 (−5.681, 2.559) 1.745 (−4.967, 1.877) 0.516 (−0.943, 1.079) 1.443 (−3.851, 1.808) 0.232 (−0.495, 0.415) 0.178 (−0.214, 0.486) 0.657 (−1.137, 1.439) 0.163 (−0.301, 0.339) 0.600 (−1.463, 0.890) 0.204 (−0.167, 0.634) 0.299 (−0.896, 0.276) 2.719 (−8.028, 2.638) 2.422 (−7.032, 2.465) 1.399 (−3.622, 1.866) 2.716 (−7.979, 2.673) 2.716 (−7.979, 2.673) 1.755 (−5.108, 1.775) 1.755 (−5.108, 1.775) 1.755 (−5.108, 1.775) 1.751 (−5.056, 1.813) 1.751 (−5.056, 1.813)
Observations 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593
Note

Only treated participants that completed pickup are included in the regressions below.

Code
```{r}
#| tbl-cap: ""

makeTable(collect_models(c(9, 10)))
```
 food_consump_item_99_AEM  food_consump_item_phone_99_AEM  food_consumption_item_bl_99_AEM  food_consumption_grains_99_AEM  food_consumption_veges_99_AEM  food_consumption_bevs_99_AEM  food_consumption_pulses_99_AEM  food_consumption_dairy_99_AEM  food_consumption_meat_99_AEM  food_consumption_fruits_99_AEM  food_consumption_spices_99_AEM  food_consumption_total_99_AEM  food_consump_total_phone_99_AEM  food_consump_total_bl_99_AEM  focons_tot_99_NoMed_AEM  focons_tot_bl_99_NoMed_AEM  focons_tot_99_NoGrain_AEM  focons_tot_phone_99_NoGrain_AEM  focons_tot_bl_99_NoGrain_AEM  focons_tot_99_NoGr_NoMed_AEM  focons_tot_bl_99_NoGr_NoMed_AEM  food_consump_item_99_AEM  food_consump_item_phone_99_AEM  food_consumption_item_bl_99_AEM  food_consumption_grains_99_AEM  food_consumption_veges_99_AEM  food_consumption_bevs_99_AEM  food_consumption_pulses_99_AEM  food_consumption_dairy_99_AEM  food_consumption_meat_99_AEM  food_consumption_fruits_99_AEM  food_consumption_spices_99_AEM  food_consumption_total_99_AEM  food_consump_total_phone_99_AEM  food_consump_total_bl_99_AEM  focons_tot_99_NoMed_AEM  focons_tot_bl_99_NoMed_AEM  focons_tot_99_NoGrain_AEM  focons_tot_phone_99_NoGrain_AEM  focons_tot_bl_99_NoGrain_AEM  focons_tot_99_NoGr_NoMed_AEM  focons_tot_bl_99_NoGr_NoMed_AEM
High Draw 9.549*** 7.042*** 1.537*** 4.673*** 0.561** 0.389** 2.266*** 0.336** 0.432 0.198 0.718*** 11.379*** 8.306*** 3.488*** 11.294*** 11.294*** 6.829*** 6.829*** 6.829*** 6.734*** 6.734*** 6.977 5.743 1.718 3.095 0.449 0.602 1.740 −0.050 1.340 −0.110 −0.053 8.220 6.864 2.724 8.108 8.108 5.417 5.417 5.417 4.691 4.691
2.172 (5.289, 13.809) 1.885 (3.345, 10.738) 0.516 (0.525, 2.549) 1.394 (1.938, 7.407) 0.219 (0.131, 0.990) 0.179 (0.038, 0.739) 0.538 (1.211, 3.320) 0.143 (0.056, 0.617) 0.453 (−0.456, 1.319) 0.120 (−0.039, 0.434) 0.256 (0.217, 1.219) 2.782 (5.924, 16.833) 2.506 (3.392, 13.219) 1.149 (1.235, 5.742) 2.776 (5.850, 16.738) 2.776 (5.850, 16.738) 1.693 (3.508, 10.150) 1.693 (3.508, 10.150) 1.693 (3.508, 10.150) 1.686 (3.427, 10.041) 1.686 (3.427, 10.041) 948740.552 (−1860528.080, 1860542.034) 733388.562 (−1438211.613, 1438223.100) 316710.079 (−621085.053, 621088.488) 533592.921 (−1046403.462, 1046409.652) 98659.585 (−193476.699, 193477.598) 70281.182 (−137824.858, 137826.063) 228737.514 (−448565.745, 448569.224) 56209.834 (−110230.783, 110230.682) 164300.957 (−322202.334, 322205.013) 49119.119 (−96325.541, 96325.320) 136211.400 (−267118.480, 267118.375) 1141231.153 (−2238012.031, 2238028.471) 981763.958 (−1925289.000, 1925302.728) 500625.585 (−981752.983, 981758.431) 1140757.643 (−2237083.561, 2237099.778) 1140757.643 (−2237083.561, 2237099.778) 786453.677 (−1542275.699, 1542286.533) 786453.677 (−1542275.699, 1542286.533) 786453.677 (−1542275.699, 1542286.533) 785641.076 (−1540682.867, 1540692.248) 785641.076 (−1540682.867, 1540692.248)
Low Draw 9.499*** 7.264*** 1.359*** 4.954*** 0.449** 0.418** 1.964*** 0.272* 0.736 0.209* 0.660*** 11.508*** 8.549*** 3.430*** 11.512*** 11.512*** 6.733*** 6.733*** 6.733*** 6.725*** 6.725*** 7.139 6.183 1.581 3.712 0.388 0.659 1.632 −0.094 1.761 −0.063 0.100 9.433 8.070 3.562 9.441 9.441 6.076 6.076 6.076 5.463 5.463
2.270 (5.048, 13.950) 1.960 (3.420, 11.108) 0.509 (0.360, 2.358) 1.449 (2.112, 7.797) 0.211 (0.034, 0.863) 0.179 (0.067, 0.768) 0.551 (0.883, 3.045) 0.140 (−0.004, 0.547) 0.471 (−0.188, 1.659) 0.118 (−0.023, 0.441) 0.243 (0.184, 1.136) 2.951 (5.720, 17.295) 2.619 (3.412, 13.685) 1.221 (1.035, 5.825) 2.944 (5.739, 17.285) 2.944 (5.739, 17.285) 1.812 (3.180, 10.287) 1.812 (3.180, 10.287) 1.812 (3.180, 10.287) 1.804 (3.187, 10.263) 1.804 (3.187, 10.263) 948740.632 (−1860528.075, 1860542.353) 733388.617 (−1438211.283, 1438223.649) 316710.059 (−621085.149, 621088.311) 533592.976 (−1046402.955, 1046410.378) 98659.589 (−193476.767, 193477.544) 70281.183 (−137824.802, 137826.120) 228737.516 (−448565.857, 448569.120) 56209.833 (−110230.826, 110230.638) 164300.960 (−322201.918, 322205.440) 49119.123 (−96325.503, 96325.377) 136211.384 (−267118.297, 267118.497) 1141231.302 (−2238011.110, 2238029.976) 981764.086 (−1925288.045, 1925304.185) 500625.626 (−981752.225, 981759.349) 1140757.797 (−2237082.531, 2237101.413) 1140757.797 (−2237082.531, 2237101.413) 786453.773 (−1542275.228, 1542287.380) 786453.773 (−1542275.228, 1542287.380) 786453.773 (−1542275.228, 1542287.380) 785641.178 (−1540682.294, 1540693.220) 785641.178 (−1540682.294, 1540693.220)
Medium Draw 5.970*** 4.656*** 1.156*** 3.875*** 0.250 0.345** 1.008** −0.030 0.049 0.044 0.459** 6.929*** 5.948** 2.047** 6.893*** 6.893*** 3.476** 3.476** 3.476** 3.430** 3.430** 5.450** 3.929** 1.290** 3.263** 0.130 0.200 0.826* −0.028 0.242 0.028 0.360 6.072** 4.902** 1.875* 6.018** 6.018** 3.248** 3.248** 3.248** 3.184** 3.184**
2.064 (1.922, 10.017) 1.783 (1.161, 8.152) 0.446 (0.282, 2.030) 1.322 (1.282, 6.468) 0.210 (−0.161, 0.662) 0.150 (0.051, 0.638) 0.481 (0.064, 1.952) 0.127 (−0.280, 0.220) 0.420 (−0.775, 0.872) 0.125 (−0.201, 0.288) 0.223 (0.023, 0.895) 2.583 (1.863, 11.995) 2.327 (1.385, 10.511) 1.018 (0.051, 4.043) 2.576 (1.840, 11.945) 2.576 (1.840, 11.945) 1.528 (0.480, 6.471) 1.528 (0.480, 6.471) 1.528 (0.480, 6.471) 1.520 (0.449, 6.412) 1.520 (0.449, 6.412) 2.161 (1.212, 9.688) 1.822 (0.357, 7.501) 0.520 (0.270, 2.309) 1.350 (0.615, 5.911) 0.212 (−0.285, 0.546) 0.148 (−0.089, 0.490) 0.496 (−0.146, 1.798) 0.120 (−0.263, 0.207) 0.401 (−0.545, 1.030) 0.123 (−0.214, 0.269) 0.237 (−0.104, 0.825) 2.587 (1.000, 11.145) 2.287 (0.416, 9.387) 0.988 (−0.063, 3.814) 2.579 (0.962, 11.075) 2.579 (0.962, 11.075) 1.537 (0.233, 6.262) 1.537 (0.233, 6.262) 1.537 (0.233, 6.262) 1.528 (0.186, 6.181) 1.528 (0.186, 6.181)
unpredictable −3.602* −2.357 −0.946** −1.091 −0.188 −0.146 −0.917* −0.165 −0.908** −0.265** −0.252 −4.890* −2.875 −2.321** −4.870* −4.870* −3.650** −3.650** −3.650** −3.623** −3.623** −4.113** −2.548 −1.131** −1.200 −0.234 −0.143 −0.736 −0.167 −1.230*** −0.077 −0.245 −5.450** −3.191 −2.444** −5.430** −5.430** −4.126*** −4.126*** −4.126*** −4.097*** −4.097***
1.941 (−7.409, 0.204) 1.678 (−5.648, 0.934) 0.409 (−1.748, −0.145) 1.245 (−3.533, 1.351) 0.176 (−0.533, 0.157) 0.168 (−0.475, 0.182) 0.470 (−1.840, 0.005) 0.122 (−0.405, 0.074) 0.388 (−1.668, −0.148) 0.103 (−0.467, −0.063) 0.202 (−0.648, 0.144) 2.565 (−9.921, 0.140) 2.281 (−7.348, 1.597) 1.079 (−4.436, −0.205) 2.558 (−9.886, 0.147) 2.558 (−9.886, 0.147) 1.609 (−6.804, −0.495) 1.609 (−6.804, −0.495) 1.609 (−6.804, −0.495) 1.601 (−6.762, −0.484) 1.601 (−6.762, −0.484) 1.891 (−7.821, −0.405) 1.590 (−5.666, 0.569) 0.484 (−2.079, −0.183) 1.172 (−3.498, 1.098) 0.179 (−0.585, 0.117) 0.173 (−0.483, 0.196) 0.450 (−1.619, 0.146) 0.120 (−0.402, 0.069) 0.369 (−1.953, −0.507) 0.101 (−0.275, 0.120) 0.212 (−0.661, 0.170) 2.440 (−10.234, −0.665) 2.113 (−7.335, 0.952) 1.033 (−4.470, −0.417) 2.432 (−10.200, −0.660) 2.432 (−10.200, −0.660) 1.570 (−7.204, −1.047) 1.570 (−7.204, −1.047) 1.570 (−7.204, −1.047) 1.561 (−7.159, −1.035) 1.561 (−7.159, −1.035)
High Draw previous period 0.771 −0.641 −0.043 0.182 0.060 −0.321 −0.256 0.332 −0.858 0.181 0.590 0.825 −0.864 0.259 0.764 0.764 0.423 0.423 0.423 0.966 0.966
948740.592 (−1860534.364, 1860535.906) 733388.536 (−1438217.947, 1438216.665) 316710.052 (−621086.759, 621086.673) 533592.895 (−1046406.324, 1046406.689) 98659.584 (−193477.086, 193477.206) 70281.193 (−137825.802, 137825.160) 228737.511 (−448567.735, 448567.223) 56209.838 (−110230.410, 110231.073) 164300.952 (−322204.521, 322202.805) 49119.122 (−96325.255, 96325.617) 136211.369 (−267117.777, 267118.956) 1141231.194 (−2238019.507, 2238021.156) 981763.961 (−1925296.735, 1925295.008) 500625.600 (−981755.477, 981755.994) 1140757.689 (−2237090.996, 2237092.524) 1140757.689 (−2237090.996, 2237092.524) 786453.731 (−1542280.798, 1542281.645) 786453.731 (−1542280.798, 1542281.645) 786453.731 (−1542280.798, 1542281.645) 785641.136 (−1540686.709, 1540688.642) 785641.136 (−1540686.709, 1540688.642)
Low Draw previous period 2.818 1.244 0.090 1.260 0.030 −0.231 0.578 0.453 −0.741 0.245 0.497 2.611 0.863 0.155 2.675 2.675 1.296 1.296 1.296 1.962 1.962
948740.496 (−1860532.130, 1860537.765) 733388.507 (−1438216.005, 1438218.493) 316710.055 (−621086.633, 621086.813) 533592.920 (−1046405.297, 1046407.817) 98659.587 (−193477.123, 193477.183) 70281.187 (−137825.701, 137825.239) 228737.509 (−448566.897, 448568.053) 56209.836 (−110230.284, 110231.189) 164300.940 (−322204.381, 322202.898) 49119.118 (−96325.184, 96325.675) 136211.381 (−267117.894, 267118.888) 1141231.129 (−2238017.592, 2238022.815) 981763.955 (−1925294.995, 1925296.721) 500625.622 (−981755.625, 981755.936) 1140757.617 (−2237088.945, 2237094.294) 1140757.617 (−2237088.945, 2237094.294) 786453.630 (−1542279.727, 1542282.320) 786453.630 (−1542279.727, 1542282.320) 786453.630 (−1542279.727, 1542282.320) 785641.031 (−1540685.507, 1540689.431) 785641.031 (−1540685.507, 1540689.431)
Observations 11968 11968 11968 11968 11968 11968 11968 11968 11968 11968 11968 11968 11968 11968 11968 11968 11968 11968 11968 11968 11968 10385 10385 10385 10385 10385 10385 10385 10385 10385 10385 10385 10385 10385 10385 10385 10385 10385 10385 10385 10385 10385
Note

Only participants who completed all surveys are included in the regressions below.

Code
```{r}
#| tbl-cap: ""

makeTable(collect_models(11))
```
 food_consump_item_99_AEM  food_consump_item_phone_99_AEM  food_consumption_item_bl_99_AEM  food_consumption_grains_99_AEM  food_consumption_veges_99_AEM  food_consumption_bevs_99_AEM  food_consumption_pulses_99_AEM  food_consumption_dairy_99_AEM  food_consumption_meat_99_AEM  food_consumption_fruits_99_AEM  food_consumption_spices_99_AEM  food_consumption_total_99_AEM  food_consump_total_phone_99_AEM  food_consump_total_bl_99_AEM  focons_tot_99_NoMed_AEM  focons_tot_bl_99_NoMed_AEM  focons_tot_99_NoGrain_AEM  focons_tot_phone_99_NoGrain_AEM  focons_tot_bl_99_NoGrain_AEM  focons_tot_99_NoGr_NoMed_AEM  focons_tot_bl_99_NoGr_NoMed_AEM
Stable 7.040*** 5.987*** 0.984** 4.489*** 0.448* 0.403** 0.987* 0.115 0.339 0.074 0.694*** 8.373*** 7.614*** 2.281* 8.275*** 8.275*** 4.502*** 4.502*** 4.502*** 4.402*** 4.402***
2.336 (2.457, 11.622) 2.053 (1.959, 10.015) 0.473 (0.055, 1.912) 1.522 (1.503, 7.475) 0.229 (−0.002, 0.898) 0.176 (0.058, 0.747) 0.548 (−0.088, 2.063) 0.155 (−0.190, 0.420) 0.495 (−0.633, 1.310) 0.142 (−0.204, 0.352) 0.246 (0.212, 1.176) 2.950 (2.586, 14.159) 2.697 (2.323, 12.904) 1.187 (−0.047, 4.610) 2.942 (2.504, 14.047) 2.942 (2.504, 14.047) 1.708 (1.152, 7.852) 1.708 (1.152, 7.852) 1.708 (1.152, 7.852) 1.699 (1.070, 7.734) 1.699 (1.070, 7.734)
Predictable 10.711*** 8.698*** 1.407*** 5.688*** 0.682*** 0.474** 2.196*** 0.347** 0.740 0.145 0.813*** 13.045*** 10.321*** 3.652*** 12.941*** 12.941*** 7.679*** 7.679*** 7.679*** 7.575*** 7.575***
2.487 (5.834, 15.589) 2.228 (4.328, 13.069) 0.511 (0.405, 2.408) 1.655 (2.442, 8.934) 0.235 (0.220, 1.144) 0.208 (0.065, 0.882) 0.610 (1.000, 3.392) 0.162 (0.029, 0.664) 0.521 (−0.282, 1.763) 0.131 (−0.112, 0.402) 0.251 (0.321, 1.306) 3.283 (6.606, 19.484) 2.988 (4.461, 16.181) 1.361 (0.982, 6.322) 3.276 (6.516, 19.366) 3.276 (6.516, 19.366) 1.974 (3.806, 11.551) 1.974 (3.806, 11.551) 1.974 (3.806, 11.551) 1.965 (3.720, 11.430) 1.965 (3.720, 11.430)
Risky 7.568*** 6.348*** 0.480 4.366*** 0.527*** 0.343** 1.458*** 0.216 0.117 −0.012 0.573*** 8.606*** 7.574*** 1.594 8.541*** 8.541*** 4.751*** 4.751*** 4.751*** 4.687*** 4.687***
2.052 (3.542, 11.593) 1.785 (2.847, 9.849) 0.415 (−0.335, 1.294) 1.331 (1.754, 6.977) 0.197 (0.140, 0.914) 0.153 (0.043, 0.643) 0.498 (0.482, 2.435) 0.134 (−0.047, 0.479) 0.428 (−0.722, 0.956) 0.116 (−0.240, 0.217) 0.210 (0.160, 0.986) 2.625 (3.457, 13.756) 2.369 (2.928, 12.220) 1.095 (−0.555, 3.742) 2.615 (3.412, 13.671) 2.615 (3.412, 13.671) 1.519 (1.770, 7.731) 1.519 (1.770, 7.731) 1.519 (1.770, 7.731) 1.510 (1.725, 7.650) 1.510 (1.725, 7.650)
Observations 9384 9384 9384 9384 9384 9384 9384 9384 9384 9384 9384 9384 9384 9384 9384 9384 9384 9384 9384 9384 9384
Note

The regressions below include baseline (period 0) data.

Code
```{r}
#| tbl-cap: ""

makeTable(collect_models(15))
```
 food_consump_item_99_AEM  food_consump_item_phone_99_AEM  food_consumption_item_bl_99_AEM  food_consumption_grains_99_AEM  food_consumption_veges_99_AEM  food_consumption_bevs_99_AEM  food_consumption_pulses_99_AEM  food_consumption_dairy_99_AEM  food_consumption_meat_99_AEM  food_consumption_fruits_99_AEM  food_consumption_spices_99_AEM  food_consumption_total_99_AEM  food_consump_total_phone_99_AEM  food_consump_total_bl_99_AEM  focons_tot_99_NoMed_AEM  focons_tot_bl_99_NoMed_AEM  focons_tot_99_NoGrain_AEM  focons_tot_phone_99_NoGrain_AEM  focons_tot_bl_99_NoGrain_AEM  focons_tot_99_NoGr_NoMed_AEM  focons_tot_bl_99_NoGr_NoMed_AEM
Stable 4.982*** 3.988*** 0.906* 3.314*** 0.221 0.304** 0.896** 0.004 0.003 0.017 0.476** 5.898*** 5.154*** 1.763* 5.863** 5.863** 2.977** 2.977** 2.977** 2.936** 2.936**
1.851 (1.353, 8.611) 1.514 (1.019, 6.956) 0.467 (−0.009, 1.821) 1.113 (1.131, 5.497) 0.180 (−0.132, 0.573) 0.128 (0.054, 0.554) 0.416 (0.080, 1.712) 0.110 (−0.212, 0.219) 0.356 (−0.694, 0.700) 0.107 (−0.194, 0.227) 0.212 (0.060, 0.892) 2.286 (1.415, 10.380) 1.967 (1.296, 9.012) 0.924 (−0.049, 3.575) 2.280 (1.392, 10.335) 2.280 (1.392, 10.335) 1.411 (0.210, 5.743) 1.411 (0.210, 5.743) 1.411 (0.210, 5.743) 1.406 (0.180, 5.692) 1.406 (0.180, 5.692)
Predictable 8.853*** 6.275*** 1.593*** 4.205*** 0.386** 0.355** 1.848*** 0.276** 0.451 0.135 0.694*** 10.280*** 7.148*** 3.076*** 10.252*** 10.252*** 6.218*** 6.218*** 6.218*** 6.177*** 6.177***
1.866 (5.194, 12.513) 1.578 (3.182, 9.369) 0.465 (0.682, 2.505) 1.155 (1.940, 6.470) 0.176 (0.040, 0.732) 0.146 (0.068, 0.642) 0.451 (0.963, 2.732) 0.115 (0.051, 0.502) 0.375 (−0.284, 1.185) 0.098 (−0.057, 0.326) 0.212 (0.278, 1.110) 2.378 (5.617, 14.944) 2.086 (3.059, 11.238) 0.991 (1.132, 5.020) 2.374 (5.598, 14.907) 2.374 (5.598, 14.907) 1.485 (3.305, 9.130) 1.485 (3.305, 9.130) 1.485 (3.305, 9.130) 1.481 (3.274, 9.081) 1.481 (3.274, 9.081)
Risky 5.477*** 4.457*** 0.307 3.391*** 0.291* 0.208* 1.023*** 0.145 −0.158 −0.042 0.376** 6.270*** 5.345*** 1.112 6.262*** 6.262*** 3.119*** 3.119*** 3.119*** 3.105*** 3.105***
1.556 (2.425, 8.529) 1.274 (1.959, 6.955) 0.397 (−0.472, 1.085) 0.937 (1.553, 5.228) 0.152 (−0.006, 0.589) 0.108 (−0.004, 0.420) 0.368 (0.301, 1.744) 0.093 (−0.038, 0.328) 0.297 (−0.741, 0.424) 0.082 (−0.203, 0.119) 0.180 (0.023, 0.730) 1.931 (2.483, 10.057) 1.658 (2.093, 8.596) 0.789 (−0.436, 2.660) 1.927 (2.483, 10.040) 1.927 (2.483, 10.040) 1.186 (0.794, 5.445) 1.186 (0.794, 5.445) 1.186 (0.794, 5.445) 1.183 (0.785, 5.425) 1.183 (0.785, 5.425)
Observations 14865 14865 14865 14865 14865 14865 14865 14865 14865 14865 14865 14865 14865 14865 14865 14865 14865 14865 14865 14865 14865
Note

The regressions below exclude endline (period 6) data.

Code
```{r}
#| tbl-cap: ""

makeTable(collect_models(16))
```
 food_consump_item_99_AEM  food_consump_item_phone_99_AEM  food_consumption_item_bl_99_AEM  food_consumption_grains_99_AEM  food_consumption_veges_99_AEM  food_consumption_bevs_99_AEM  food_consumption_pulses_99_AEM  food_consumption_dairy_99_AEM  food_consumption_meat_99_AEM  food_consumption_fruits_99_AEM  food_consumption_spices_99_AEM  food_consumption_total_99_AEM  food_consump_total_phone_99_AEM  food_consump_total_bl_99_AEM  focons_tot_99_NoMed_AEM  focons_tot_bl_99_NoMed_AEM  focons_tot_99_NoGrain_AEM  focons_tot_phone_99_NoGrain_AEM  focons_tot_bl_99_NoGrain_AEM  focons_tot_99_NoGr_NoMed_AEM  focons_tot_bl_99_NoGr_NoMed_AEM
Stable 5.289*** 5.002*** 0.286*** 3.830*** 0.153 0.338** 0.982* 0.018 0.082 0.001 0.262 6.383** 6.441** 1.308 6.396** 6.396** 2.949* 2.949* 2.949* 2.957* 2.957*
1.984 (1.399, 9.178) 1.878 (1.319, 8.685) 0.100 (0.090, 0.483) 1.378 (1.128, 6.533) 0.226 (−0.289, 0.596) 0.154 (0.036, 0.639) 0.505 (−0.008, 1.972) 0.142 (−0.261, 0.298) 0.456 (−0.812, 0.975) 0.133 (−0.260, 0.262) 0.164 (−0.059, 0.583) 2.624 (1.237, 11.528) 2.540 (1.461, 11.421) 0.977 (−0.608, 3.223) 2.627 (1.244, 11.547) 2.627 (1.244, 11.547) 1.533 (−0.056, 5.954) 1.533 (−0.056, 5.954) 1.533 (−0.056, 5.954) 1.533 (−0.050, 5.964) 1.533 (−0.050, 5.964)
Predictable 8.681*** 7.785*** 0.238** 5.188*** 0.453** 0.412** 1.879*** 0.380** 0.529 0.172 0.375** 10.709*** 9.218*** 2.396** 10.725*** 10.725*** 5.674*** 5.674*** 5.674*** 5.683*** 5.683***
2.033 (4.694, 12.667) 1.960 (3.940, 11.629) 0.095 (0.052, 0.423) 1.435 (2.374, 8.002) 0.221 (0.019, 0.887) 0.178 (0.063, 0.762) 0.539 (0.822, 2.935) 0.150 (0.086, 0.673) 0.476 (−0.405, 1.463) 0.122 (−0.067, 0.410) 0.166 (0.050, 0.700) 2.813 (5.192, 16.226) 2.706 (3.910, 14.525) 1.105 (0.230, 4.563) 2.816 (5.204, 16.246) 2.816 (5.204, 16.246) 1.698 (2.344, 9.005) 1.698 (2.344, 9.005) 1.698 (2.344, 9.005) 1.699 (2.351, 9.015) 1.699 (2.351, 9.015)
Risky 6.393*** 5.248*** 0.246*** 3.999*** 0.287 0.224* 0.943** 0.200* −0.038 −0.071 0.352** 7.319*** 6.331*** 1.208 7.327*** 7.327*** 3.605*** 3.605*** 3.605*** 3.611*** 3.611***
1.643 (3.170, 9.615) 1.568 (2.173, 8.323) 0.081 (0.087, 0.405) 1.157 (1.729, 6.268) 0.193 (−0.091, 0.665) 0.131 (−0.033, 0.481) 0.440 (0.081, 1.806) 0.120 (−0.036, 0.436) 0.383 (−0.789, 0.714) 0.105 (−0.276, 0.134) 0.143 (0.071, 0.633) 2.214 (2.976, 11.661) 2.142 (2.130, 10.533) 0.853 (−0.465, 2.880) 2.215 (2.983, 11.670) 2.215 (2.983, 11.670) 1.280 (1.096, 6.115) 1.280 (1.096, 6.115) 1.280 (1.096, 6.115) 1.280 (1.101, 6.121) 1.280 (1.101, 6.121)
Observations 10345 10345 10345 10345 10345 10345 10345 10345 10345 10345 10345 10345 10345 10345 10345 10345 10345 10345 10345 10345 10345
Code
```{r}
data_set_index <- 6
chosen <- file_dfs[[data_set_index]]
full_list <- get_varying_vars(chosen, c("hh_id", "period"))
```

6 Regressions for Food_Wins_consump_tot.dta

Code
```{r}
#| tbl-cap: ""

makeTable(collect_models(c(1, 2)))
```
 food_consumption_item_99  food_consumption_item_phone_99  food_consumption_item_bl_99  food_consumption_total_bl_99  focons_tot_99_NoMed  focons_tot_bl_99_NoMed  focons_tot_99_NoGrain  focons_tot_phone_99_NoGrain  focons_tot_bl_99_NoGrain  focons_tot_99_NoGr_NoMed  focons_tot_bl_99_NoGr_NoMed  food_cons_99_ShGr  food_cons_99_ShGr_NoMed  food_cons_bl_99_ShGr  food_cons_bl_99_ShGr_NoMed  food_cons_ph_99_ShGr  food_consumption_item_99  food_consumption_item_phone_99  food_consumption_item_bl_99  food_consumption_total_bl_99  focons_tot_99_NoMed  focons_tot_bl_99_NoMed  focons_tot_99_NoGrain  focons_tot_phone_99_NoGrain  focons_tot_bl_99_NoGrain  focons_tot_99_NoGr_NoMed  focons_tot_bl_99_NoGr_NoMed  food_cons_99_ShGr  food_cons_99_ShGr_NoMed  food_cons_bl_99_ShGr  food_cons_bl_99_ShGr_NoMed  food_cons_ph_99_ShGr
Stable 34.086*** 25.973*** 5.994** 11.329* 39.857*** 39.857*** 21.662** 21.662** 21.662** 21.474** 21.474** 0.003 0.004 0.040 0.004 0.009* 34.849*** 26.223*** 6.601** 12.530** 41.158*** 41.158*** 22.588*** 22.588*** 22.588*** 22.291*** 22.291*** 0.003 0.003 0.028 0.003 0.009
11.739 (11.065, 57.107) 9.994 (6.375, 45.571) 2.650 (0.798, 11.190) 5.779 (−0.005, 22.662) 14.528 (11.367, 68.347) 14.528 (11.367, 68.347) 8.669 (4.663, 38.662) 8.669 (4.663, 38.662) 8.669 (4.663, 38.662) 8.624 (4.562, 38.386) 8.624 (4.562, 38.386) 0.005 (−0.006, 0.012) 0.005 (−0.005, 0.013) 0.239 (−0.428, 0.508) 0.005 (−0.005, 0.013) 0.006 (−0.002, 0.020) 11.719 (11.860, 57.838) 9.982 (6.642, 45.804) 2.674 (1.356, 11.847) 5.785 (1.183, 23.878) 14.480 (12.755, 69.561) 14.480 (12.755, 69.561) 8.639 (5.643, 39.534) 8.639 (5.643, 39.534) 8.639 (5.643, 39.534) 8.591 (5.439, 39.143) 8.591 (5.439, 39.143) 0.005 (−0.006, 0.012) 0.005 (−0.006, 0.012) 0.240 (−0.442, 0.499) 0.005 (−0.006, 0.012) 0.005 (−0.002, 0.020)
Predictable 54.541*** 40.827*** 9.076*** 20.900*** 66.311*** 66.311*** 40.573*** 40.573*** 40.573*** 40.518*** 40.518*** 0.002 0.002 0.233 0.002 0.007 53.658*** 40.642*** 8.937*** 21.318*** 66.005*** 66.005*** 40.321*** 40.321*** 40.321*** 40.181*** 40.181*** 0.002 0.002 0.225 0.002 0.007
12.144 (30.726, 78.356) 10.222 (20.781, 60.873) 2.860 (3.467, 14.685) 6.198 (8.745, 33.055) 15.204 (36.495, 96.127) 15.204 (36.495, 96.127) 9.266 (22.402, 58.745) 9.266 (22.402, 58.745) 9.266 (22.402, 58.745) 9.252 (22.374, 58.662) 9.252 (22.374, 58.662) 0.005 (−0.007, 0.011) 0.005 (−0.007, 0.011) 0.232 (−0.222, 0.689) 0.005 (−0.007, 0.011) 0.006 (−0.004, 0.018) 12.148 (29.828, 77.488) 10.237 (20.561, 60.724) 2.843 (3.360, 14.514) 6.175 (9.206, 33.430) 15.197 (36.195, 95.815) 15.197 (36.195, 95.815) 9.244 (22.189, 58.453) 9.244 (22.189, 58.453) 9.244 (22.189, 58.453) 9.230 (22.075, 58.287) 9.230 (22.075, 58.287) 0.005 (−0.007, 0.011) 0.005 (−0.007, 0.011) 0.231 (−0.229, 0.679) 0.005 (−0.007, 0.011) 0.006 (−0.005, 0.018)
Risky 41.157*** 33.454*** 2.797 8.532* 47.288*** 47.288*** 23.285*** 23.285*** 23.285*** 23.461*** 23.461*** 0.005 0.005 0.091 0.005 0.006
9.855 (21.831, 60.482) 8.329 (17.120, 49.787) 2.171 (−1.460, 7.054) 4.750 (−0.784, 17.847) 12.125 (23.511, 71.065) 12.125 (23.511, 71.065) 7.123 (9.317, 37.254) 7.123 (9.317, 37.254) 7.123 (9.317, 37.254) 7.100 (9.537, 37.384) 7.100 (9.537, 37.384) 0.004 (−0.003, 0.012) 0.004 (−0.002, 0.012) 0.198 (−0.298, 0.479) 0.004 (−0.002, 0.012) 0.004 (−0.002, 0.015)
Risky (Balanced) 38.894*** 32.332*** 0.288 4.445 43.514** 43.514** 21.030** 21.030** 21.030** 21.287** 21.287** 0.006 0.006 0.176 0.006 0.004
14.224 (10.992, 66.796) 11.925 (8.940, 55.725) 2.781 (−5.166, 5.743) 6.286 (−7.886, 16.776) 17.321 (9.538, 77.491) 17.321 (9.538, 77.491) 10.144 (1.131, 40.928) 10.144 (1.131, 40.928) 10.144 (1.131, 40.928) 10.114 (1.448, 41.126) 10.114 (1.448, 41.126) 0.005 (−0.005, 0.016) 0.005 (−0.004, 0.016) 0.286 (−0.385, 0.738) 0.005 (−0.004, 0.016) 0.006 (−0.007, 0.015)
Observations 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12361 12593 12593 8065 8065 8065 8065 8065 8065 8065 8065 8065 8065 8065 8065 8065 7918 8065 8065
Code
```{r}
#| tbl-cap: ""

makeTable(collect_models(3))
```
 food_consumption_item_99  food_consumption_item_phone_99  food_consumption_item_bl_99  food_consumption_total_bl_99  focons_tot_99_NoMed  focons_tot_bl_99_NoMed  focons_tot_99_NoGrain  focons_tot_phone_99_NoGrain  focons_tot_bl_99_NoGrain  focons_tot_99_NoGr_NoMed  focons_tot_bl_99_NoGr_NoMed  food_cons_99_ShGr  food_cons_99_ShGr_NoMed  food_cons_bl_99_ShGr  food_cons_bl_99_ShGr_NoMed  food_cons_ph_99_ShGr
Stable 33.954*** 25.678** 6.280** 11.721** 39.808*** 39.808*** 21.682** 21.682** 21.682** 21.425** 21.425** 0.003 0.004 0.033 0.004 0.009*
11.727 (10.953, 56.954) 9.990 (6.084, 45.272) 2.658 (1.066, 11.493) 5.785 (0.375, 23.068) 14.501 (11.367, 68.249) 14.501 (11.367, 68.249) 8.654 (4.710, 38.655) 8.654 (4.710, 38.655) 8.654 (4.710, 38.655) 8.606 (4.547, 38.304) 8.606 (4.547, 38.304) 0.005 (−0.006, 0.012) 0.005 (−0.005, 0.013) 0.239 (−0.436, 0.501) 0.005 (−0.005, 0.013) 0.005 (−0.002, 0.020)
Predictable 53.452*** 40.320*** 9.015*** 20.848*** 65.306*** 65.306*** 39.885*** 39.885*** 39.885*** 39.777*** 39.777*** 0.002 0.002 0.228 0.002 0.007
12.157 (29.609, 77.296) 10.227 (20.262, 60.378) 2.857 (3.412, 14.618) 6.193 (8.701, 32.995) 15.212 (35.471, 95.141) 15.212 (35.471, 95.141) 9.268 (21.706, 58.063) 9.268 (21.706, 58.063) 9.268 (21.706, 58.063) 9.254 (21.626, 57.928) 9.254 (21.626, 57.928) 0.005 (−0.007, 0.011) 0.005 (−0.007, 0.011) 0.232 (−0.227, 0.683) 0.005 (−0.007, 0.011) 0.006 (−0.004, 0.018)
Risky Medium 38.042*** 31.720*** −0.020 3.714 42.349** 42.349** 20.311** 20.311** 20.311** 20.592** 20.592** 0.006 0.006 0.181 0.006 0.005
14.238 (10.117, 65.966) 11.942 (8.298, 55.141) 2.772 (−5.456, 5.417) 6.268 (−8.580, 16.008) 17.328 (8.363, 76.334) 17.328 (8.363, 76.334) 10.133 (0.438, 40.185) 10.133 (0.438, 40.185) 10.133 (0.438, 40.185) 10.103 (0.777, 40.407) 10.103 (0.777, 40.407) 0.005 (−0.004, 0.016) 0.005 (−0.004, 0.016) 0.285 (−0.378, 0.739) 0.005 (−0.004, 0.016) 0.006 (−0.007, 0.016)
Risky High 27.408* 23.108* −0.572 5.507 34.785* 34.785* 15.301 15.301 15.301 15.871 15.871 0.006 0.006 0.268 0.006 0.005
15.011 (−2.033, 56.850) 12.355 (−1.123, 47.339) 3.176 (−6.801, 5.656) 7.646 (−9.489, 20.502) 18.616 (−1.727, 71.296) 18.616 (−1.727, 71.296) 11.331 (−6.921, 37.524) 11.331 (−6.921, 37.524) 11.331 (−6.921, 37.524) 11.286 (−6.265, 38.007) 11.286 (−6.265, 38.007) 0.006 (−0.006, 0.017) 0.006 (−0.006, 0.017) 0.358 (−0.435, 0.971) 0.006 (−0.006, 0.017) 0.006 (−0.007, 0.018)
Risky Low 53.769*** 43.752*** 6.442* 12.296 59.178*** 59.178*** 30.664** 30.664** 30.664** 30.794*** 30.794*** 0.004 0.004 −0.182 0.004 0.006
15.307 (23.748, 83.791) 12.507 (19.222, 68.282) 3.703 (−0.820, 13.704) 8.036 (−3.464, 28.057) 18.878 (22.152, 96.204) 18.878 (22.152, 96.204) 11.929 (7.267, 54.061) 11.929 (7.267, 54.061) 11.929 (7.267, 54.061) 11.891 (7.472, 54.116) 11.891 (7.472, 54.116) 0.007 (−0.009, 0.017) 0.007 (−0.009, 0.017) 0.291 (−0.752, 0.388) 0.007 (−0.009, 0.017) 0.008 (−0.010, 0.021)
Observations 9830 9830 9830 9830 9830 9830 9830 9830 9830 9830 9830 9830 9830 9653 9830 9830
Code
```{r}
#| tbl-cap: ""

makeTable(collect_models(c(4, 5, 6)))
```
 food_consumption_item_99  food_consumption_item_phone_99  food_consumption_item_bl_99  food_consumption_total_bl_99  focons_tot_99_NoMed  focons_tot_bl_99_NoMed  focons_tot_99_NoGrain  focons_tot_phone_99_NoGrain  focons_tot_bl_99_NoGrain  focons_tot_99_NoGr_NoMed  focons_tot_bl_99_NoGr_NoMed  food_cons_99_ShGr  food_cons_99_ShGr_NoMed  food_cons_bl_99_ShGr  food_cons_bl_99_ShGr_NoMed  food_cons_ph_99_ShGr  food_consumption_item_99  food_consumption_item_phone_99  food_consumption_item_bl_99  food_consumption_total_bl_99  focons_tot_99_NoMed  focons_tot_bl_99_NoMed  focons_tot_99_NoGrain  focons_tot_phone_99_NoGrain  focons_tot_bl_99_NoGrain  focons_tot_99_NoGr_NoMed  focons_tot_bl_99_NoGr_NoMed  food_cons_99_ShGr  food_cons_99_ShGr_NoMed  food_cons_bl_99_ShGr  food_cons_bl_99_ShGr_NoMed  food_cons_ph_99_ShGr  food_consumption_item_99  food_consumption_item_phone_99  food_consumption_item_bl_99  food_consumption_total_bl_99  focons_tot_99_NoMed  focons_tot_bl_99_NoMed  focons_tot_99_NoGrain  focons_tot_phone_99_NoGrain  focons_tot_bl_99_NoGrain  focons_tot_99_NoGr_NoMed  focons_tot_bl_99_NoGr_NoMed  food_cons_99_ShGr  food_cons_99_ShGr_NoMed  food_cons_bl_99_ShGr  food_cons_bl_99_ShGr_NoMed  food_cons_ph_99_ShGr
Study Income 0.099** 0.074** 0.016 0.031 0.111** 0.111** 0.056* 0.056* 0.056* 0.055* 0.055* 0.000 0.000 −0.000 0.000 0.000 −0.029 −0.029 0.003 −0.004 −0.041 −0.041 −0.027 −0.027 −0.027 −0.029 −0.029 0.000 0.000 −0.001 0.000 0.000 −0.066 −0.073* 0.005 −0.021 −0.099 −0.099 −0.058 −0.058 −0.058 −0.061 −0.061 0.000 0.000 −0.000 0.000 0.000
0.042 (0.016, 0.182) 0.034 (0.007, 0.140) 0.012 (−0.007, 0.039) 0.021 (−0.011, 0.073) 0.051 (0.011, 0.212) 0.051 (0.011, 0.212) 0.033 (−0.007, 0.120) 0.033 (−0.007, 0.120) 0.033 (−0.007, 0.120) 0.032 (−0.009, 0.118) 0.032 (−0.009, 0.118) 0.000 (−0.000, 0.000) 0.000 (−0.000, 0.000) 0.001 (−0.002, 0.002) 0.000 (−0.000, 0.000) 0.000 (−0.000, 0.000) 0.045 (−0.118, 0.059) 0.035 (−0.097, 0.039) 0.014 (−0.025, 0.030) 0.024 (−0.051, 0.043) 0.054 (−0.147, 0.065) 0.054 (−0.147, 0.065) 0.037 (−0.098, 0.045) 0.037 (−0.098, 0.045) 0.037 (−0.098, 0.045) 0.036 (−0.101, 0.042) 0.036 (−0.101, 0.042) 0.000 (−0.000, 0.000) 0.000 (−0.000, 0.000) 0.001 (−0.003, 0.001) 0.000 (−0.000, 0.000) 0.000 (−0.000, 0.000) 0.055 (−0.174, 0.041) 0.042 (−0.154, 0.009) 0.016 (−0.025, 0.036) 0.028 (−0.076, 0.033) 0.065 (−0.227, 0.029) 0.065 (−0.227, 0.029) 0.043 (−0.143, 0.027) 0.043 (−0.143, 0.027) 0.043 (−0.143, 0.027) 0.043 (−0.146, 0.024) 0.043 (−0.146, 0.024) 0.000 (−0.000, 0.000) 0.000 (−0.000, 0.000) 0.001 (−0.003, 0.003) 0.000 (−0.000, 0.000) 0.000 (−0.000, 0.000)
Stable 36.989*** 28.825*** 5.743* 11.716* 43.950*** 43.950*** 24.296*** 24.296*** 24.296*** 24.362*** 24.362*** 0.002 0.003 0.122 0.003 0.009 18.607 18.668 −2.938 −4.462 15.270 15.270 15.866 15.866 15.866 15.928 15.928 −0.022 −0.021 −1.325*** −0.021 −0.030*
12.456 (12.562, 61.415) 10.488 (8.258, 49.393) 2.963 (−0.066, 11.553) 6.197 (−0.435, 23.868) 15.375 (13.800, 74.099) 15.375 (13.800, 74.099) 9.353 (5.955, 42.638) 9.353 (5.955, 42.638) 9.353 (5.955, 42.638) 9.311 (6.103, 42.622) 9.311 (6.103, 42.622) 0.005 (−0.007, 0.012) 0.005 (−0.007, 0.012) 0.265 (−0.397, 0.641) 0.005 (−0.007, 0.012) 0.006 (−0.003, 0.021) 30.999 (−42.183, 79.397) 28.434 (−37.092, 74.429) 5.381 (−13.490, 7.614) 12.958 (−29.872, 20.948) 38.580 (−60.385, 90.926) 38.580 (−60.385, 90.926) 25.613 (−34.361, 66.094) 25.613 (−34.361, 66.094) 25.613 (−34.361, 66.094) 25.647 (−34.365, 66.222) 25.647 (−34.365, 66.222) 0.014 (−0.049, 0.005) 0.014 (−0.049, 0.006) 0.352 (−2.016, −0.633) 0.014 (−0.049, 0.006) 0.017 (−0.063, 0.004)
Predictable 57.399*** 43.637*** 8.829*** 21.282*** 70.342*** 70.342*** 43.167*** 43.167*** 43.167*** 43.362*** 43.362*** 0.001 0.001 0.315 0.001 0.006 49.299*** 32.802*** 10.486** 18.308** 57.732*** 57.732*** 35.481*** 35.481*** 35.481*** 35.724*** 35.724*** 0.007 0.007 0.640* 0.007 0.015*
12.957 (31.991, 82.808) 10.726 (22.602, 64.671) 3.204 (2.547, 15.112) 6.703 (8.138, 34.426) 16.179 (38.614, 102.069) 16.179 (38.614, 102.069) 10.003 (23.551, 62.783) 10.003 (23.551, 62.783) 10.003 (23.551, 62.783) 9.986 (23.779, 62.946) 9.986 (23.779, 62.946) 0.005 (−0.009, 0.011) 0.005 (−0.009, 0.011) 0.272 (−0.219, 0.848) 0.005 (−0.009, 0.011) 0.007 (−0.007, 0.019) 14.685 (20.502, 78.096) 11.733 (9.794, 55.811) 4.321 (2.012, 18.959) 8.091 (2.441, 34.175) 18.301 (21.843, 93.620) 18.301 (21.843, 93.620) 11.810 (12.321, 58.641) 11.810 (12.321, 58.641) 11.810 (12.321, 58.641) 11.763 (12.657, 58.791) 11.763 (12.657, 58.791) 0.006 (−0.005, 0.018) 0.006 (−0.005, 0.018) 0.332 (−0.011, 1.291) 0.006 (−0.005, 0.018) 0.009 (−0.002, 0.032)
Risky 44.009*** 36.257*** 2.551 8.913* 51.310*** 51.310*** 25.874*** 25.874*** 25.874*** 26.299*** 26.299*** 0.004 0.004 0.172 0.004 0.006 47.605*** 40.537*** 2.272 10.578* 56.910*** 56.910*** 28.954*** 28.954*** 28.954*** 29.362*** 29.362*** 0.003 0.003 0.109 0.003 0.004
10.660 (23.106, 64.913) 8.905 (18.795, 53.719) 2.533 (−2.417, 7.519) 5.287 (−1.454, 19.280) 13.109 (25.604, 77.017) 13.109 (25.604, 77.017) 7.947 (10.289, 41.459) 7.947 (10.289, 41.459) 7.947 (10.289, 41.459) 7.924 (10.760, 41.839) 7.924 (10.760, 41.839) 0.004 (−0.004, 0.012) 0.004 (−0.004, 0.012) 0.240 (−0.300, 0.643) 0.004 (−0.004, 0.012) 0.005 (−0.004, 0.016) 11.047 (25.942, 69.268) 9.160 (22.575, 58.499) 2.624 (−2.873, 7.417) 5.482 (−0.172, 21.328) 13.557 (30.325, 83.495) 13.557 (30.325, 83.495) 8.272 (12.734, 45.175) 8.272 (12.734, 45.175) 8.272 (12.734, 45.175) 8.251 (13.182, 45.543) 8.251 (13.182, 45.543) 0.004 (−0.006, 0.011) 0.004 (−0.006, 0.011) 0.261 (−0.403, 0.620) 0.004 (−0.006, 0.011) 0.005 (−0.006, 0.015)
Stable × Study Income 0.223 0.147 0.085 0.180 0.347 0.347 0.117 0.117 0.117 0.117 0.117 0.000* 0.000* 0.014*** 0.000* 0.000**
0.307 (−0.379, 0.824) 0.278 (−0.398, 0.691) 0.057 (−0.027, 0.197) 0.129 (−0.072, 0.433) 0.378 (−0.395, 1.089) 0.378 (−0.395, 1.089) 0.252 (−0.378, 0.612) 0.252 (−0.378, 0.612) 0.252 (−0.378, 0.612) 0.252 (−0.378, 0.612) 0.252 (−0.378, 0.612) 0.000 (−0.000, 0.001) 0.000 (−0.000, 0.000) 0.004 (0.006, 0.022) 0.000 (−0.000, 0.000) 0.000 (0.000, 0.001)
Predictable × Study Income 0.121 0.156** −0.020 0.048 0.188 0.188 0.111 0.111 0.111 0.110 0.110 −0.000 −0.000 −0.004* −0.000 −0.000*
0.098 (−0.071, 0.312) 0.074 (0.011, 0.301) 0.035 (−0.089, 0.049) 0.056 (−0.062, 0.157) 0.118 (−0.044, 0.420) 0.118 (−0.044, 0.420) 0.083 (−0.052, 0.275) 0.083 (−0.052, 0.275) 0.083 (−0.052, 0.275) 0.083 (−0.052, 0.273) 0.083 (−0.052, 0.273) 0.000 (−0.000, 0.000) 0.000 (−0.000, 0.000) 0.002 (−0.009, 0.001) 0.000 (−0.000, 0.000) 0.000 (−0.000, 0.000)
Observations 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12361 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12361 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12361 12593 12593
Note

For risky arms that did not complete dropoff, we impute a medium draw for the regressions below

Code
```{r}
#| tbl-cap: ""

makeTable(collect_models(c(7, 8)))
```
 food_consumption_item_99  food_consumption_item_phone_99  food_consumption_item_bl_99  food_consumption_total_bl_99  focons_tot_99_NoMed  focons_tot_bl_99_NoMed  focons_tot_99_NoGrain  focons_tot_phone_99_NoGrain  focons_tot_bl_99_NoGrain  focons_tot_99_NoGr_NoMed  focons_tot_bl_99_NoGr_NoMed  food_cons_99_ShGr  food_cons_99_ShGr_NoMed  food_cons_bl_99_ShGr  food_cons_bl_99_ShGr_NoMed  food_cons_ph_99_ShGr  food_consumption_item_99  food_consumption_item_phone_99  food_consumption_item_bl_99  food_consumption_total_bl_99  focons_tot_99_NoMed  focons_tot_bl_99_NoMed  focons_tot_99_NoGrain  focons_tot_phone_99_NoGrain  focons_tot_bl_99_NoGrain  focons_tot_99_NoGr_NoMed  focons_tot_bl_99_NoGr_NoMed  food_cons_99_ShGr  food_cons_99_ShGr_NoMed  food_cons_bl_99_ShGr  food_cons_bl_99_ShGr_NoMed  food_cons_ph_99_ShGr
High Draw 46.047*** 34.082*** 8.528*** 17.134*** 54.120*** 54.120*** 32.784*** 32.784*** 32.784*** 32.440*** 32.440*** 0.003 0.003 0.117 0.003 0.007 53.734*** 40.438*** 8.672*** 20.420** 65.599*** 65.599*** 41.810*** 41.810*** 41.810*** 41.484*** 41.484*** 0.003 0.003 1.309 0.003 0.007
11.953 (22.607, 69.487) 10.085 (14.305, 53.860) 2.844 (2.951, 14.104) 6.067 (5.236, 29.032) 14.887 (24.927, 83.313) 14.887 (24.927, 83.313) 9.097 (14.944, 50.624) 9.097 (14.944, 50.624) 9.097 (14.944, 50.624) 9.078 (14.638, 50.242) 9.078 (14.638, 50.242) 0.005 (−0.006, 0.012) 0.005 (−0.006, 0.012) 0.236 (−0.346, 0.579) 0.005 (−0.006, 0.012) 0.006 (−0.004, 0.018) 14.563 (25.176, 82.291) 12.465 (15.994, 64.883) 2.974 (2.840, 14.504) 9.004 (2.764, 38.077) 19.105 (28.133, 103.064) 19.105 (28.133, 103.064) 12.028 (18.223, 65.398) 12.028 (18.223, 65.398) 12.028 (18.223, 65.398) 12.014 (17.924, 65.044) 12.014 (17.924, 65.044) 0.006 (−0.009, 0.015) 0.006 (−0.010, 0.015) 195640.046 (−383650.968, 383653.586) 0.006 (−0.010, 0.015) 0.007 (−0.007, 0.020)
Low Draw 50.617*** 36.330*** 10.169*** 19.172*** 59.892*** 59.892*** 36.496*** 36.496*** 36.496*** 36.437*** 36.437*** 0.003 0.003 0.315 0.003 0.010 58.977*** 43.217*** 10.403*** 22.401** 71.924*** 71.924*** 45.778*** 45.778*** 45.778*** 45.763*** 45.763*** 0.003 0.003 1.499 0.003 0.010
12.205 (26.683, 74.551) 10.084 (16.555, 56.105) 2.989 (4.308, 16.030) 6.298 (6.821, 31.523) 15.205 (30.075, 89.709) 15.205 (30.075, 89.709) 9.351 (18.159, 54.834) 9.351 (18.159, 54.834) 9.351 (18.159, 54.834) 9.336 (18.130, 54.744) 9.336 (18.130, 54.744) 0.005 (−0.006, 0.012) 0.005 (−0.006, 0.012) 0.256 (−0.188, 0.818) 0.005 (−0.006, 0.012) 0.006 (−0.002, 0.022) 14.962 (29.637, 88.317) 12.518 (18.669, 67.766) 3.053 (4.415, 16.391) 9.104 (4.547, 40.255) 19.390 (33.901, 109.947) 19.390 (33.901, 109.947) 12.298 (21.661, 69.894) 12.298 (21.661, 69.894) 12.298 (21.661, 69.894) 12.296 (21.651, 69.875) 12.296 (21.651, 69.875) 0.006 (−0.009, 0.015) 0.006 (−0.010, 0.015) 195640.068 (−383650.820, 383653.819) 0.006 (−0.010, 0.015) 0.007 (−0.004, 0.024)
Medium Draw 40.147*** 31.473*** 5.713** 14.011** 48.953*** 48.953*** 27.462*** 27.462*** 27.462*** 27.417*** 27.417*** 0.002 0.003 0.056 0.003 0.008 42.107*** 31.596*** 6.632** 13.468** 49.390*** 49.390*** 28.543*** 28.543*** 28.543*** 28.434*** 28.434*** 0.002 0.002 1.021 0.002 0.008
11.336 (17.918, 62.377) 9.621 (12.606, 50.340) 2.550 (0.713, 10.713) 5.607 (3.014, 25.007) 14.033 (21.434, 76.472) 14.033 (21.434, 76.472) 8.407 (10.976, 43.949) 8.407 (10.976, 43.949) 8.407 (10.976, 43.949) 8.367 (11.009, 43.825) 8.367 (11.009, 43.825) 0.004 (−0.006, 0.011) 0.004 (−0.006, 0.011) 0.237 (−0.409, 0.521) 0.004 (−0.006, 0.011) 0.005 (−0.002, 0.018) 11.641 (19.279, 64.934) 9.738 (12.499, 50.692) 2.742 (1.255, 12.008) 5.610 (2.466, 24.470) 14.160 (21.623, 77.157) 14.160 (21.623, 77.157) 8.512 (11.851, 45.236) 8.512 (11.851, 45.236) 8.512 (11.851, 45.236) 8.469 (11.826, 45.042) 8.469 (11.826, 45.042) 0.005 (−0.007, 0.011) 0.005 (−0.007, 0.011) 195640.031 (−383651.225, 383653.267) 0.005 (−0.007, 0.011) 0.006 (−0.003, 0.019)
unpredictable −6.511 −1.453 −6.258*** −9.289* −9.046 −9.046 −10.776 −10.776 −10.776 −10.405 −10.405 0.002 0.002 −0.110 0.002 −0.002 −7.774 −0.847 −7.234*** −8.418* −8.329 −8.329 −11.093 −11.093 −11.093 −10.640 −10.640 0.002 0.002 −0.149 0.002 −0.002
9.689 (−25.510, 12.489) 8.007 (−17.156, 14.249) 2.145 (−10.464, −2.052) 4.870 (−18.838, 0.261) 12.112 (−32.798, 14.706) 12.112 (−32.798, 14.706) 7.583 (−25.647, 4.095) 7.583 (−25.647, 4.095) 7.583 (−25.647, 4.095) 7.569 (−25.248, 4.438) 7.569 (−25.248, 4.438) 0.004 (−0.005, 0.009) 0.004 (−0.005, 0.009) 0.201 (−0.505, 0.284) 0.004 (−0.005, 0.009) 0.005 (−0.011, 0.007) 9.781 (−26.954, 11.406) 7.954 (−16.445, 14.750) 2.435 (−12.008, −2.459) 4.851 (−17.932, 1.096) 12.033 (−31.927, 15.268) 12.033 (−31.927, 15.268) 7.641 (−26.077, 3.891) 7.641 (−26.077, 3.891) 7.641 (−26.077, 3.891) 7.622 (−25.587, 4.307) 7.622 (−25.587, 4.307) 0.004 (−0.005, 0.010) 0.004 (−0.005, 0.010) 0.216 (−0.573, 0.275) 0.004 (−0.005, 0.010) 0.005 (−0.012, 0.008)
draw_imputed_lag1:: −11.642 1.147 −6.588*** 5.042 0.641 0.641 −4.757 −4.757 −4.757 −4.296 −4.296 0.004 0.003 −1.206 0.003 −0.002
14.074 (−39.241, 15.958) 12.123 (−22.627, 24.920) 2.253 (−11.005, −2.171) 10.028 (−14.623, 24.707) 19.049 (−36.715, 37.997) 19.049 (−36.715, 37.997) 12.932 (−30.118, 20.604) 12.932 (−30.118, 20.604) 12.932 (−30.118, 20.604) 12.932 (−29.657, 21.064) 12.932 (−29.657, 21.064) 0.007 (−0.009, 0.017) 0.007 (−0.009, 0.016) 195640.034 (−383653.460, 383651.047) 0.007 (−0.009, 0.016) 0.007 (−0.016, 0.012)
High Draw previous period −14.003 −13.171 0.086 −4.388 −19.661 −19.661 −12.834 −12.834 −12.834 −13.200 −13.200 0.000 0.001 −1.134 0.001 −0.001
11.474 (−36.503, 8.498) 9.361 (−31.529, 5.187) 2.908 (−5.616, 5.789) 7.655 (−19.401, 10.624) 14.621 (−48.333, 9.011) 14.621 (−48.333, 9.011) 9.857 (−32.163, 6.495) 9.857 (−32.163, 6.495) 9.857 (−32.163, 6.495) 9.844 (−32.505, 6.105) 9.844 (−32.505, 6.105) 0.005 (−0.011, 0.011) 0.005 (−0.010, 0.012) 195640.038 (−383653.394, 383651.127) 0.005 (−0.010, 0.012) 0.006 (−0.013, 0.011)
Low Draw previous period −1.130 −3.098 1.790 −5.266 −8.829 −8.829 −7.555 −7.555 −7.555 −7.420 −7.420 −0.001 −0.001 −1.257 −0.001 0.002
11.630 (−23.936, 21.675) 9.524 (−21.775, 15.578) 2.964 (−4.023, 7.603) 7.730 (−20.425, 9.893) 14.940 (−38.126, 20.467) 14.940 (−38.126, 20.467) 10.001 (−27.166, 12.057) 10.001 (−27.166, 12.057) 10.001 (−27.166, 12.057) 9.990 (−27.011, 12.172) 9.990 (−27.011, 12.172) 0.006 (−0.012, 0.010) 0.006 (−0.012, 0.010) 195640.088 (−383653.615, 383651.102) 0.006 (−0.012, 0.010) 0.007 (−0.012, 0.015)
Medium Draw previous period −0.910
195640.038 (−383653.171, 383651.350)
Observations 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12361 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12593 12361 12593 12593
Note

Only treated participants that completed pickup are included in the regressions below.

Code
```{r}
#| tbl-cap: ""

makeTable(collect_models(c(9, 10)))
```
 food_consumption_item_99  food_consumption_item_phone_99  food_consumption_item_bl_99  food_consumption_total_bl_99  focons_tot_99_NoMed  focons_tot_bl_99_NoMed  focons_tot_99_NoGrain  focons_tot_phone_99_NoGrain  focons_tot_bl_99_NoGrain  focons_tot_99_NoGr_NoMed  focons_tot_bl_99_NoGr_NoMed  food_cons_99_ShGr  food_cons_99_ShGr_NoMed  food_cons_bl_99_ShGr  food_cons_bl_99_ShGr_NoMed  food_cons_ph_99_ShGr  food_consumption_item_99  food_consumption_item_phone_99  food_consumption_item_bl_99  food_consumption_total_bl_99  focons_tot_99_NoMed  focons_tot_bl_99_NoMed  focons_tot_99_NoGrain  focons_tot_phone_99_NoGrain  focons_tot_bl_99_NoGrain  focons_tot_99_NoGr_NoMed  focons_tot_bl_99_NoGr_NoMed  food_cons_99_ShGr  food_cons_99_ShGr_NoMed  food_cons_bl_99_ShGr  food_cons_bl_99_ShGr_NoMed  food_cons_ph_99_ShGr
High Draw 52.823*** 39.786*** 8.097*** 20.970*** 65.105*** 65.105*** 40.272*** 40.272*** 40.272*** 40.037*** 40.037*** 0.001 0.002 0.131 0.002 0.005 13.454 11.138 3.198 6.042 15.960 15.960 14.615 14.615 14.615 14.306 14.306 0.057 0.094 −0.201 0.094 0.246
12.560 (28.193, 77.453) 10.590 (19.019, 60.553) 3.018 (2.180, 14.015) 6.401 (8.418, 33.522) 15.688 (34.340, 95.870) 15.688 (34.340, 95.870) 9.622 (21.402, 59.142) 9.622 (21.402, 59.142) 9.622 (21.402, 59.142) 9.609 (21.192, 58.881) 9.609 (21.192, 58.881) 0.005 (−0.008, 0.011) 0.005 (−0.008, 0.011) 0.241 (−0.342, 0.603) 0.005 (−0.008, 0.011) 0.006 (−0.006, 0.017) 5197007.090 (−10191617.820, 10191644.727) 3924952.360 (−7697047.289, 7697069.564) 1788061.586 (−3506488.916, 3506495.312) 2617791.332 (−5133634.059, 5133646.144) 6079350.843 (−11921942.409, 11921974.329) 6079350.843 (−11921942.409, 11921974.329) 4055770.818 (−7953586.369, 7953615.599) 4055770.818 (−7953586.369, 7953615.599) 4055770.818 (−7953586.369, 7953615.599) 4051300.928 (−7944820.965, 7944849.578) 4051300.928 (−7944820.965, 7944849.578) 2049.033 (−4018.214, 4018.329) 2063.827 (−4047.190, 4047.378) 161567.532 (−316843.468, 316843.067) 2063.827 (−4047.190, 4047.378) 2531.644 (−4964.455, 4964.947)
Low Draw 56.299*** 41.363*** 9.679*** 22.742*** 69.643*** 69.643*** 43.088*** 43.088*** 43.088*** 43.155*** 43.155*** 0.002 0.002 0.329 0.002 0.008 16.195 12.508 4.977 10.930 22.730 22.730 18.828 18.828 18.828 18.993 18.993 0.056 0.093 −0.001 0.093 0.249
12.887 (31.027, 81.571) 10.645 (20.488, 62.239) 3.157 (3.487, 15.870) 6.673 (9.656, 35.828) 16.124 (38.024, 101.263) 16.124 (38.024, 101.263) 9.936 (23.604, 62.572) 9.936 (23.604, 62.572) 9.936 (23.604, 62.572) 9.925 (23.692, 62.618) 9.925 (23.692, 62.618) 0.005 (−0.008, 0.011) 0.005 (−0.008, 0.012) 0.264 (−0.188, 0.846) 0.005 (−0.008, 0.012) 0.007 (−0.004, 0.021) 5197007.535 (−10191615.952, 10191648.342) 3924952.485 (−7697046.165, 7697071.180) 1788061.822 (−3506487.600, 3506497.555) 2617791.577 (−5133629.653, 5133651.513) 6079351.378 (−11921936.688, 11921982.148) 6079351.378 (−11921936.688, 11921982.148) 4055771.137 (−7953582.782, 7953620.438) 4055771.137 (−7953582.782, 7953620.438) 4055771.137 (−7953582.782, 7953620.438) 4051301.254 (−7944816.917, 7944854.904) 4051301.254 (−7944816.917, 7944854.904) 2049.033 (−4018.215, 4018.327) 2063.827 (−4047.191, 4047.376) 161567.560 (−316843.325, 316843.323) 2063.827 (−4047.191, 4047.376) 2531.645 (−4964.453, 4964.950)
Medium Draw 34.523*** 26.000*** 6.411** 11.735** 40.253*** 40.253*** 21.764** 21.764** 21.764** 21.508** 21.508** 0.005 0.005 0.083 0.005 0.011* 30.457** 21.129** 7.152** 10.482* 33.838** 33.838** 19.387** 19.387** 19.387** 19.034** 19.034** 0.003 0.003 0.095 0.003 0.010*
11.849 (11.286, 57.760) 10.062 (6.268, 45.733) 2.695 (1.126, 11.697) 5.862 (0.239, 23.231) 14.659 (11.506, 68.999) 14.659 (11.506, 68.999) 8.748 (4.610, 38.919) 8.748 (4.610, 38.919) 8.748 (4.610, 38.919) 8.701 (4.445, 38.571) 8.701 (4.445, 38.571) 0.005 (−0.005, 0.014) 0.005 (−0.004, 0.014) 0.243 (−0.395, 0.560) 0.005 (−0.004, 0.014) 0.006 (−0.000, 0.022) 12.416 (6.109, 54.804) 10.254 (1.020, 41.237) 3.154 (0.967, 13.336) 5.791 (−0.874, 21.838) 14.761 (4.890, 62.785) 14.761 (4.890, 62.785) 8.856 (2.019, 36.755) 8.856 (2.019, 36.755) 8.856 (2.019, 36.755) 8.800 (1.776, 36.291) 8.800 (1.776, 36.291) 0.005 (−0.007, 0.012) 0.005 (−0.007, 0.013) 0.268 (−0.430, 0.619) 0.005 (−0.007, 0.013) 0.006 (−0.002, 0.022)
unpredictable −15.101 −8.951 −5.597** −14.081** −23.137* −23.137* −20.361** −20.361** −20.361** −20.175** −20.175** 0.004 0.004 −0.127 0.004 0.000 −18.506* −10.189 −6.820** −14.187*** −25.866* −25.866* −22.410*** −22.410*** −22.410*** −22.195** −22.195** 0.003 0.003 −0.222 0.003 −0.000
10.905 (−36.487, 6.284) 9.007 (−26.615, 8.712) 2.509 (−10.516, −0.677) 5.525 (−24.916, −3.245) 13.688 (−49.980, 3.707) 13.688 (−49.980, 3.707) 8.554 (−37.136, −3.587) 8.554 (−37.136, −3.587) 8.554 (−37.136, −3.587) 8.546 (−36.934, −3.415) 8.546 (−36.934, −3.415) 0.004 (−0.004, 0.012) 0.004 (−0.004, 0.012) 0.215 (−0.548, 0.295) 0.004 (−0.004, 0.012) 0.005 (−0.010, 0.011) 11.175 (−40.421, 3.409) 8.980 (−27.799, 7.420) 2.965 (−12.635, −1.004) 5.446 (−24.867, −3.507) 13.609 (−52.553, 0.821) 13.609 (−52.553, 0.821) 8.658 (−39.389, −5.431) 8.658 (−39.389, −5.431) 8.658 (−39.389, −5.431) 8.645 (−39.149, −5.241) 8.645 (−39.149, −5.241) 0.004 (−0.005, 0.011) 0.004 (−0.005, 0.012) 0.233 (−0.678, 0.235) 0.004 (−0.005, 0.012) 0.006 (−0.012, 0.011)
High Draw previous period 29.986 18.843 5.208 12.070 36.601 36.601 19.807 19.807 19.807 19.522 19.522 −0.055 −0.091 0.406 −0.091 −0.242
5197006.972 (−10191601.057, 10191661.029) 3924952.582 (−7697040.020, 7697077.706) 1788061.144 (−3506486.039, 3506496.456) 2617790.880 (−5133627.146, 5133651.285) 6079350.563 (−11921921.221, 11921994.422) 6079350.563 (−11921921.221, 11921994.422) 4055770.051 (−7953579.673, 7953619.288) 4055770.051 (−7953579.673, 7953619.288) 4055770.051 (−7953579.673, 7953619.288) 4051300.173 (−7944814.269, 7944853.313) 4051300.173 (−7944814.269, 7944853.313) 2049.032 (−4018.326, 4018.216) 2063.827 (−4047.375, 4047.192) 161567.561 (−316842.919, 316843.731) 2063.827 (−4047.375, 4047.192) 2531.644 (−4964.942, 4964.458)
Low Draw previous period 43.456 29.427 7.161 11.977 48.639 48.639 26.235 26.235 26.235 26.412 26.412 −0.057 −0.094 0.255 −0.094 −0.240
5197006.905 (−10191587.455, 10191674.368) 3924952.459 (−7697029.193, 7697088.048) 1788061.342 (−3506484.475, 3506498.797) 2617791.090 (−5133627.651, 5133651.606) 6079350.559 (−11921909.173, 11922006.451) 6079350.559 (−11921909.173, 11922006.451) 4055770.178 (−7953573.494, 7953625.963) 4055770.178 (−7953573.494, 7953625.963) 4055770.178 (−7953573.494, 7953625.963) 4051300.283 (−7944807.594, 7944860.418) 4051300.283 (−7944807.594, 7944860.418) 2049.033 (−4018.328, 4018.214) 2063.827 (−4047.377, 4047.190) 161567.598 (−316843.141, 316843.652) 2063.827 (−4047.377, 4047.190) 2531.644 (−4964.939, 4964.460)
Observations 11968 11968 11968 11968 11968 11968 11968 11968 11968 11968 11968 11968 11968 11744 11968 11968 10385 10385 10385 10385 10385 10385 10385 10385 10385 10385 10385 10385 10385 10188 10385 10385
Note

Only participants who completed all surveys are included in the regressions below.

Code
```{r}
#| tbl-cap: ""

makeTable(collect_models(11))
```
 food_consumption_item_99  food_consumption_item_phone_99  food_consumption_item_bl_99  food_consumption_total_bl_99  focons_tot_99_NoMed  focons_tot_bl_99_NoMed  focons_tot_99_NoGrain  focons_tot_phone_99_NoGrain  focons_tot_bl_99_NoGrain  focons_tot_99_NoGr_NoMed  focons_tot_bl_99_NoGr_NoMed  food_cons_99_ShGr  food_cons_99_ShGr_NoMed  food_cons_bl_99_ShGr  food_cons_bl_99_ShGr_NoMed  food_cons_ph_99_ShGr
Stable 33.035** 28.915** 3.101 9.320 39.595** 39.595** 21.428** 21.428** 21.428** 21.083** 21.083** 0.004 0.004 −0.118 0.004 0.009
13.878 (5.814, 60.256) 12.048 (5.284, 52.546) 2.960 (−2.705, 8.906) 6.905 (−4.224, 22.863) 17.301 (5.659, 73.531) 17.301 (5.659, 73.531) 9.888 (2.033, 40.824) 9.888 (2.033, 40.824) 9.888 (2.033, 40.824) 9.833 (1.796, 40.370) 9.833 (1.796, 40.370) 0.005 (−0.007, 0.014) 0.005 (−0.006, 0.015) 0.301 (−0.708, 0.473) 0.005 (−0.006, 0.015) 0.006 (−0.004, 0.021)
Predictable 47.876*** 37.634*** 5.871* 17.629** 60.479*** 60.479*** 38.583*** 38.583*** 38.583*** 38.605*** 38.605*** 0.001 0.001 0.081 0.001 0.003
14.651 (19.138, 76.614) 12.583 (12.953, 62.315) 3.273 (−0.549, 12.291) 7.483 (2.951, 32.306) 18.587 (24.021, 96.936) 18.587 (24.021, 96.936) 11.109 (16.792, 60.374) 11.109 (16.792, 60.374) 11.109 (16.792, 60.374) 11.099 (16.834, 60.375) 11.099 (16.834, 60.375) 0.005 (−0.010, 0.012) 0.005 (−0.009, 0.012) 0.293 (−0.494, 0.657) 0.005 (−0.009, 0.012) 0.006 (−0.009, 0.014)
Risky 40.735*** 34.641*** 0.581 6.610 47.031*** 47.031*** 25.408*** 25.408*** 25.408*** 25.491*** 25.491*** 0.003 0.004 −0.148 0.004 0.003
12.160 (16.883, 64.586) 10.333 (14.373, 54.909) 2.557 (−4.435, 5.597) 5.924 (−5.009, 18.228) 15.061 (17.489, 76.572) 15.061 (17.489, 76.572) 8.590 (8.559, 42.258) 8.590 (8.559, 42.258) 8.590 (8.559, 42.258) 8.558 (8.704, 42.278) 8.558 (8.704, 42.278) 0.004 (−0.005, 0.012) 0.004 (−0.005, 0.012) 0.255 (−0.647, 0.352) 0.004 (−0.005, 0.012) 0.005 (−0.007, 0.012)
Observations 9384 9384 9384 9384 9384 9384 9384 9384 9384 9384 9384 9384 9384 9217 9384 9384
Note

The regressions below include baseline (period 0) data.

Code
```{r}
#| tbl-cap: ""

makeTable(collect_models(15))
```
 food_consumption_item_99  food_consumption_item_phone_99  food_consumption_item_bl_99  food_consumption_total_bl_99  focons_tot_99_NoMed  focons_tot_bl_99_NoMed  focons_tot_99_NoGrain  focons_tot_phone_99_NoGrain  focons_tot_bl_99_NoGrain  focons_tot_99_NoGr_NoMed  focons_tot_bl_99_NoGr_NoMed  food_cons_99_ShGr  food_cons_99_ShGr_NoMed  food_cons_bl_99_ShGr  food_cons_bl_99_ShGr_NoMed  food_cons_ph_99_ShGr
Stable 27.710*** 21.677** 4.757* 10.015* 33.298*** 33.298*** 18.270** 18.270** 18.270** 18.076** 18.076** 0.003 0.003 0.008 0.003 0.008*
10.366 (7.383, 48.037) 8.473 (5.063, 38.292) 2.623 (−0.386, 9.900) 5.219 (−0.218, 20.249) 12.746 (8.303, 58.294) 12.746 (8.303, 58.294) 7.884 (2.809, 33.731) 7.884 (2.809, 33.731) 7.884 (2.809, 33.731) 7.851 (2.680, 33.471) 7.851 (2.680, 33.471) 0.004 (−0.005, 0.010) 0.004 (−0.005, 0.011) 0.202 (−0.389, 0.404) 0.004 (−0.005, 0.011) 0.005 (−0.001, 0.017)
Predictable 49.837*** 34.727*** 9.849*** 19.478*** 59.419*** 59.419*** 37.275*** 37.275*** 37.275*** 37.228*** 37.228*** 0.002 0.002 0.201 0.002 0.007
10.669 (28.915, 70.759) 8.727 (17.614, 51.840) 2.742 (4.471, 15.227) 5.490 (8.711, 30.244) 13.238 (33.459, 85.379) 13.238 (33.459, 85.379) 8.249 (21.100, 53.451) 8.249 (21.100, 53.451) 8.249 (21.100, 53.451) 8.243 (21.064, 53.392) 8.243 (21.064, 53.392) 0.004 (−0.006, 0.010) 0.004 (−0.006, 0.010) 0.198 (−0.186, 0.589) 0.004 (−0.006, 0.010) 0.005 (−0.002, 0.017)
Risky 33.776*** 27.735*** 1.842 6.951 39.178*** 39.178*** 19.313*** 19.313*** 19.313*** 19.395*** 19.395*** 0.004 0.004 0.058 0.004 0.006
8.781 (16.557, 50.995) 7.106 (13.799, 41.671) 2.184 (−2.441, 6.126) 4.294 (−1.469, 15.371) 10.698 (18.199, 60.158) 10.698 (18.199, 60.158) 6.487 (6.591, 32.035) 6.487 (6.591, 32.035) 6.487 (6.591, 32.035) 6.473 (6.702, 32.088) 6.473 (6.702, 32.088) 0.003 (−0.002, 0.010) 0.003 (−0.002, 0.011) 0.168 (−0.271, 0.387) 0.003 (−0.002, 0.011) 0.004 (−0.001, 0.013)
Observations 14865 14865 14865 14865 14865 14865 14865 14865 14865 14865 14865 14865 14865 14633 14865 14865
Note

The regressions below exclude endline (period 6) data.

Code
```{r}
#| tbl-cap: ""

makeTable(collect_models(16))
```
 food_consumption_item_99  food_consumption_item_phone_99  food_consumption_item_bl_99  food_consumption_total_bl_99  focons_tot_99_NoMed  focons_tot_bl_99_NoMed  focons_tot_99_NoGrain  focons_tot_phone_99_NoGrain  focons_tot_bl_99_NoGrain  focons_tot_99_NoGr_NoMed  focons_tot_bl_99_NoGr_NoMed  food_cons_99_ShGr  food_cons_99_ShGr_NoMed  food_cons_bl_99_ShGr  food_cons_bl_99_ShGr_NoMed  food_cons_ph_99_ShGr
Stable 30.410*** 27.526*** 1.647** 7.800 37.306** 37.306** 19.083** 19.083** 19.083** 19.092** 19.092** 0.005 0.005 0.050 0.005 0.005
11.050 (8.741, 52.079) 10.460 (7.013, 48.039) 0.643 (0.385, 2.909) 5.386 (−2.761, 18.362) 14.510 (8.851, 65.760) 14.510 (8.851, 65.760) 8.463 (2.486, 35.679) 8.463 (2.486, 35.679) 8.463 (2.486, 35.679) 8.468 (2.486, 35.697) 8.468 (2.486, 35.697) 0.005 (−0.005, 0.015) 0.005 (−0.005, 0.015) 0.289 (−0.517, 0.616) 0.005 (−0.005, 0.015) 0.005 (−0.005, 0.015)
Predictable 47.903*** 43.271*** 1.384** 15.077*** 61.265*** 61.265*** 34.144*** 34.144*** 34.144*** 34.165*** 34.165*** 0.004 0.004 0.293 0.004 0.006
11.352 (25.641, 70.165) 10.702 (22.285, 64.258) 0.622 (0.165, 2.603) 5.764 (3.773, 26.381) 15.199 (31.460, 91.070) 15.199 (31.460, 91.070) 9.080 (16.337, 51.951) 9.080 (16.337, 51.951) 9.080 (16.337, 51.951) 9.089 (16.341, 51.990) 9.089 (16.341, 51.990) 0.005 (−0.006, 0.014) 0.005 (−0.006, 0.014) 0.282 (−0.259, 0.846) 0.005 (−0.006, 0.014) 0.005 (−0.004, 0.016)
Risky 40.546*** 33.356*** 1.301*** 7.474* 46.940*** 46.940*** 23.674*** 23.674*** 23.674*** 23.702*** 23.702*** 0.005 0.005 0.097 0.005 0.006
9.424 (22.066, 59.026) 8.817 (16.066, 50.647) 0.489 (0.342, 2.259) 4.442 (−1.237, 16.184) 12.249 (22.921, 70.960) 12.249 (22.921, 70.960) 7.067 (9.816, 37.533) 7.067 (9.816, 37.533) 7.067 (9.816, 37.533) 7.070 (9.838, 37.566) 7.070 (9.838, 37.566) 0.004 (−0.004, 0.013) 0.004 (−0.004, 0.013) 0.241 (−0.376, 0.571) 0.004 (−0.004, 0.013) 0.004 (−0.002, 0.014)
Observations 10345 10345 10345 10345 10345 10345 10345 10345 10345 10345 10345 10345 10345 10113 10345 10345