SPLUNK FOR GOOD

24 Million CDC US Birth Records and Splunk #vitalstatsviz

Births vs. Mothers Age

The CDC – like most government bodies the world over – are starting to make more, and more data publicly available to advance research.

In January the CDC posted a blog post (since deleted) challenging the public to work with their Vital Stats datasets, including both birth and mortality data.

Over the coming weeks I’m going to post some of my findings (and workings) from analysing these datasets alongside other sources including weather and employment, all in Splunk.

In an optimistic mood I started with birth data.

So where do I start?

With the boring stuff :) Just some context:

  • I used data sets from 2008 – 2013.
  • Most fields require lookups for an easily understandable output value (any field with a trailing underscore [_] in my searches references a lookup). You can get these using the Splunk app linked at the end of the post.
  • For these searches I also utilised Splunk’s summary indexing capability to save me having to re-run expensive searches over millions of records.

How many births were there each year?

A simple search to warm up.

| eval theYear = strftime(_time, "%Y")
| stats count AS totalBirths by theYear
| fieldformat totalBirths=tostring(totalBirths,"commas")
| fields totalBirths theYear
| addtotals fieldname totalBirths row=false col=true

Starting with a nice eval to pull out the year using strftime. I then counted births by year, and used fieldformat to make the resulting count easier to read by adding commas. As we counted births by year using the first stats, I also summed the totalBirths column using addtotals.

total-births-vs-year-splunk-sm

total-births-2-vs-year-splunk-sm

There were almost 25 million births between 2008 – 2013, with total births declining year-on-year. Births dropped by over 140,000 between 2008 – 2009!

What about the average age of mothers giving birth?

This is particularly poignant (and scary) to me. As a 26-year old with a mother asking when I’ll be settling down I need some data to argue my point that, “I’m not ready yet!”.

Lets use a search to display the average age of mothers for each calendar year.

| eval theYear = strftime(_time, "%Y")
| stats avg(MAGER_) AS aveMumAge BY theYear
| eval aveMumAge2dp=round(aveMumAge,0)
| fields theYear, aveMumAge2dp

Working this search through:  the stats function gives us the mean average for each year, and finally we use an eval to round the years to whole numbers.

ave-age-mother-vs-total-births-splunk-sm

How do births spread out between mothers age over the years?

Or, how long do I have left before I need to bear young?

| eval theYear = strftime(_time, "%Y")
| chart count by MAGER_, theYear

A simple chart command counting by the mothers age field against the calculated year field gives us the answer.

Births vs. Mothers Age
You can clearly see most births are to mothers between ages 18-34, which fits with what many doctors recommend.

Does mothers BMI impact newborns weight?

Some of my friends have started having kids. Until I looked at this dataset I had no idea what the “normal” weight of a newborn was. Anyone with me?

However, I was most interested in comparing birth weight to mothers weight after my mother declared upon hearing I was doing this research that she was “underweight when she fell pregnant” with me. Should I be worried? Search, please.

| eval DBWTkg=(DBWT/1000)
| chart avg(DBWTkg) BY BMI_R_
| sort -avg(DBWTkg)

I used the BMI_R_ field to chart infant weight against mothers BMI before pregnancy, as apposed to using the raw mothers weight field also found in the dataset. The reason for using BMI is that it is a more accurate indicator of healthy weight of mother – i.e taller mothers will be heavier, but not necessarily overweight.

infant-weight-vs-mothers-bmi-sm

The fatter the mother, the heavier the baby. Though as can clearly be seen, mothers who are underweight before pregnancy give birth to children almost 200 grams lighter than mothers of normal weight.

Does mothers BMI impact newborns mortality?

| eventstats count AS "totalCount" by BMI_R_
| search ILIVE=N | eventstats count AS "iliveCount" by BMI_R_
| eval percent=(iliveCount/totalCount)*100
| stats values(iliveCount), values(percent) by BMI_R_
| fields BMI_R_ values(iliveCount) values(percent)
| sort -values(percent)

To do this we need to baseline number of births against BMI to provide an accurate percentage risk of infant mortality. I use eventstats to do a total count, immediately followed by a search using the ILIVE=N field=value (N = infant dead at time of report). We then use an eval to work out percentage risk.

infant-mortality-vs-mothers-bmi-splunk-sm

Whereas we might infer underweight mothers to have the highest infant mortality from the result of the last search, it is in fact overweight mothers who suffer the highest infant mortality. An infant is over twice as likely to die during birth if a mother is classified as “Extremely Obese” compared to a mother of “Normal Weight”.

Does smoking impact newborns weight?

Thankfully my mother does not smoke. I’m not preaching here, I’ll let you draw your own conclusions.

| eval smoker=(CIG_1+CIG_2+CIG_3)*100-CIG_0
| eval smokerPregnancy=case(smoker=0, "Non-smoker", smoker>0 , "Smoker (Before and During Pregnancy)", smoker | eval DBWTkg=(DBWT/1000)
| chart avg(DBWTkg) BY smokerPregnancy
| sort -avg(DBWTkg)

I used two eval statements for this search. The first performs a calculation so I can determine wether someone smoked before and/or during pregnancy. The CIG_0 field reports the number of daily cigarettes smoked by the mother before pregnancy. The CIG_1-3 fields report the number of cigarettes smoke daily during the respective trimester by the mother. The resulting values is then used in the second eval to calculate at what stage a mother smoked, if at all.

smoker-stats-vs-infant-weight-splunk-sm

Perhaps as expected, mothers who smoke during pregnancy generally have smaller infants (average 100 grams lighter than non-smokers during pregnancy).

Does mothers BMI before pregnancy cause birth defects, specifically Downs Syndrome?

| RENAME UCA_DOWNS_ AS NORM_DOWNS CA_DOWN_ AS NORM_DOWNS
| eventstats count AS "totalCount" by BMI_R_
| search NORM_DOWNS=Yes
| eventstats count AS "downsCount" by BMI_R_
| eval percent=(downsCount/totalCount)*100
| stats values(downsCount), values(percent) by BMI_R_
| fields BMI_R_ values(percent)
| sort -values(percent)

The first function in this search is a rename. The CDC datasets report the same fields differently over different years. In the above search during the years search, both UCA_DOWNS and CA_DOWNS are referencing wether the infant has been diagnosed with Downs Syndrome. We normalise these fields into one (NORM_DOWNS) using the rename. The stats function is used to calculate the percentage risk of Downs Syndrome against mothers BMI before pregnancy.

infant-downs-vs-mothers-bmi-splunk-sm

It would appear that obesity has a close relationship to Downs Syndrome. With even mild obesity significantly increasing the risk to newborns.

Think you can do better?

Awesome. If you want to play with this data I have put my conf files into a Splunk App available on Github. All you need to do is load in the data. There are hundreds of fields to pivot on, I have only shown a handful above.

The version at the time of posting was used for this analysis. Please note, this app has not been fully tested yet (currently works for datasets up to 2001). I stress this is a very early version offered to those who want to help with its development. Hint, hint :)

In part 2 we’ll explore custom visualisations, and more advanced searches. Stay tuned.

----------------------------------------------------
Thanks!
David Greenwood

Splunk
Posted by

Splunk

TAGS
Show All Tags
Show Less Tags