JC | R Documentation |
A dataset from the U.S. Job Corps experimental study with information on the participation of disadvantaged youths in (academic and vocational) training in the first and second year after program assignment.
JC
A data frame with 9240 rows and 46 variables:
1=randomly assigned to Job Corps, 0=randomized out of Job Corps
1=female, 0=male
age in years at assignment
1=white, 0=non-white
1=black, 0=non-black
1=hispanic, 0=non-hispanic
years of education at assignment
1=education missing at assignment
1=has a GED degree at assignment
1=has a high school degree at assignment
1=English mother tongue
1=cohabiting or married at assignment
1=has at least one child, 0=no children at assignment
1=has ever worked at assignment, 0=has never worked at assignment
average weekly gross earnings at assignment
household size at assignment
1=household size missing
mother's years of education at assignment
1=mother's years of education missing
father's years of education at assignment
1=father's years of education missing
welfare receipt during childhood in categories from 1 to 4 (measured at assignment)
1=missing welfare receipt during childhood
general health at assignment from 1 (excellent) to 4 (poor)
1=missing health at assignment
extent of smoking at assignment in categories from 1 to 4
1=extent of smoking missing
extent of alcohol consumption at assignment in categories from 1 to 4
1=extent of alcohol consumption missing
1=has ever worked one year after assignment, 0=has never worked one year after assignment
weekly earnings in fourth quarter after assignment
1=missing weekly earnings in fourth quarter after assignment
proportion of weeks employed in first year after assignment
1=missing proportion of weeks employed in first year after assignment
general health 12 months after assignment from 1 (excellent) to 4 (poor)
1=missing general health 12 months after assignment
1=enrolled in education and/or vocational training in the first year after assignment, 0=no education or training in the first year after assignment
1=enrolled in education and/or vocational training in the second year after assignment, 0=no education or training in the second year after assignment
proportion of weeks employed in second year after assignment
proportion of weeks employed in third year after assignment
proportion of weeks employed in fourth year after assignment
weekly earnings in second year after assignment
weekly earnings in third year after assignment
weekly earnings in fourth year after assignment
general health 30 months after assignment from 1 (excellent) to 4 (poor)
general health 48 months after assignment from 1 (excellent) to 4 (poor)
Schochet, P. Z., Burghardt, J., Glazerman, S. (2001): "National Job Corps study: The impacts of Job Corps on participants' employment and related outcomes", Mathematica Policy Research, Washington, DC.
## Not run:
data(JC)
# Dynamic treatment effect evaluation of training in 1st and 2nd year
# define covariates at assignment (x0) and after one year (x1)
x0=JC[,2:29]; x1=JC[,30:36]
# define treatment (training) in first year (d1) and second year (d2)
d1=JC[,37]; d2=JC[,38]
# define outcome (weekly earnings in fourth year after assignment)
y2=JC[,44]
# assess dynamic treatment effects (training in 1st+2nd year vs. no training)
output=dyntreatDML(y2=y2, d1=d1, d2=d2, x0=x0, x1=x1)
cat("dynamic ATE: ",round(c(output$effect),3),", standard error: ",
round(c(output$se),3), ", p-value: ",round(c(output$pval),3))
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.