Link Search Menu Expand Document

Experiment on Natality Dataset

In the linked Github file, we aim to examine the effect of “extreme smoking” of a mother during pregancy on her newborn’s birthweight. Overall, the results of the DAME-FLAME package lead us to believe that smoking during pregnancy causes significantly lower birthweight of infants. It also leads us to believe that there is little to no heterogeneity in conditional treatment effects of a mother’s smoking on birthweight. In other words, when we examine groupings of characteristics of mothers and infants (including race, gender of infant, etc), then we don’t see evidence that there exists some mothers and infants for whom the impact of maternal smoking on infant birthweight is different than the outcomes for other types of mothers and infants.

We use the 2010 US Natality dataset from the National Vital Statistics System of the National Center for Health Statistics (2010). The accompanying user guide to the dataset is also linked with that URL, labelled “documentation”.

Similar analysis is done in Wang, et al (2020). Notable differences between the two are that this experiment uses a smaller dataset and a slightly modified algorithm. This experiment aims to build upon the analysis on maternal smoking and infant birthweight shown in Kondracki (2020).

Four key takeaways from the experiment on github:

  1. A common question about the dame-flame package is the discrete observational data requirement. This experiment uses data that is discrete, such as day of week, and total birth order. It also uses data that is binned continuous data, such as father’s age, which has been binned into fixed width intervals of five year age groups (15-19 years, 20-24 years, etc.). Mother’s education is also binned into bins with the completion of a degree, not the number of days of school attended. Both of these variables are binned in a way that is commonly done within research using this dataset, or similar datasets.

  2. The covariate dropping order, shown above using the verbose=3 parameter, is something we use to interpret covariate importance. The FLAME algorithm learns the importance of each covariate on the outcome when choosing the best covariate to drop. Thus, the earlier dropped covariates can be considered less relevant to the outcome. In this case, FLAME would lead us to believe that some factors, such as mother’s education and the day of the week of the infant birth, are less predictive of an infant’s birth weight than other factors, such as the sex of the infant.

  3. The ATE is highly negative. This leads us to believe that maternal extreme smoking causes an infant’s birthweight to be lower than not smoking by several grams.

  4. Lastly, the plot as shown below, of CATE of matched groups against matched group size, leads us to believe there is little heterogeneity in the Conditional Average Treatment Effect (CATE) of maternal smoking on infant birth weight. Most extreme values are observed in small matched groups, for which CATE estimation is difficult. Put simply, we don’t see evidence that there exists some “types of” mothers and infants (classified by characteristics such as education and race) for whom the impact of maternal smoking on infant birthweight is different than the outcomes for other mothers and infants.

Graph

Download Example From GitHub