Inspired by Isabella Benabaye, Sharla Gelfand, and Tim Urban, My Life in Months is a d3 JavaScript implementation of a chart that can help you see the larger picture of your life. You can use it to map out where you've lived, your career path, or other meaningful life events.
var data = [
{"name": "Paris", "value": 57},
{"name": "Warren", "value": 48},
{"name": "Charleston", "value": 98},
{"name": "Conway", "value": 24}
]
var chart = myLifeInMonths();
d3.select("#container")
.datum(data)
.call(chart);
Try it out at https://discotraystudios.github.io/my-life-in-months/