## File: LiveBirthData.py
## Description: Live births by method of delivery and age of mother, in California (2004)
## Source: California Department of Health Care Services http://www.dhs.ca.gov/


# MotherAge = ['< 15','15-19', '20-24','25-29', '30-34', '35-39', '40-44', '> 45']
MotherAge = [1, 2, 3, 4, 5, 6, 7, 8]
Total = [696, 49737, 124309, 141608, 134578, 74580,17926, 1201]
Cesarean = [114, 9669, 29434, 38930, 43681, 28732, 8145, 703]
RepeatCesarean = [0, 1297, 10389, 17128, 20017, 13635, 3640, 221]
Vaginal = [582, 40068, 94875, 102678, 90897, 45848, 9781, 498]
VBAC = [0, 50, 494, 1026, 1244, 806, 188, 9]
