Skip to content

Latest commit

 

History

History
42 lines (31 loc) · 1.15 KB

README.md

File metadata and controls

42 lines (31 loc) · 1.15 KB

My Life in Months

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.

Example Chart

MLIM

Easy Code Snippet

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);

Live Website

Try it out at https://discotraystudios.github.io/my-life-in-months/

Credits