1 Existing Stimulus as a Function of Income and Family Status

Taking advantage of snw_stimulus_checks_biden from the PrjOptiSNW Package, this function presents stimulus checks at different income levels for households with different children count and martial status. This is for the Biden Stimulus under the American Rescue Plan Act.

1.1 Biden Stimulus Checks for Unmarried Households

Check base amount per adult and per child for the first and second rounds.

Visualize stimulus check amounts.

bl_visualize = true;
bl_marital = 0;
for it_kids=0:1:4
    snw_stimulus_checks_biden(it_kids, bl_marital, bl_visualize);
end

1.2 Biden Stimulus Checks for Married Households

Visualize stimulus check amounts.

bl_marital = 1;
for it_kids=0:1:4
    snw_stimulus_checks_biden(it_kids, bl_marital, bl_visualize);
end