Hi all,
I wanted to share this example that I just posted as a gist:
http://bl.ocks.org/kerryrodden/7090426
The idea is to use a sunburst to represent the relative frequencies of different sequences of events, such as how often users follow particular paths through a web site. I hope that people will be able to reuse it with their own data.
This was my first d3 project, originally written 2 years ago. (It took me a while to get around to getting approval to release it). I think it has some aspects of interest for people who are learning d3, e.g.
- transforming CSV data into hierarchical JSON
- filtering segments that would be too small to see
- highlighting all ancestors of a particular child node
- data join with a key function, and enter/update/exit (in the breadcrumb trail)
- polygons in SVG
I would appreciate any suggestions for improved code organization, or ways to use D3 better than I currently am.
thanks!
Kerry