Skip to content

Instantly share code, notes, and snippets.

@mrybak
Last active October 29, 2015 10:30
Show Gist options
  • Save mrybak/1421761a26790eee9629 to your computer and use it in GitHub Desktop.
Save mrybak/1421761a26790eee9629 to your computer and use it in GitHub Desktop.
Reversed Sequences sunburst
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Sequences sunburst</title>
<script src="http://d3js.org/d3.v3.min.js"></script>
<link rel="stylesheet" type="text/css"
href="https://fonts.googleapis.com/css?family=Open+Sans:400,600">
<link rel="stylesheet" type="text/css" href="sequences.css"/>
</head>
<body>
<div id="main">
<div id="sequence"></div>
<div id="chart">
<div id="explanation" style="visibility: hidden;">
<span id="percentage"></span><br/>
of visits begin with this sequence of pages
</div>
</div>
</div>
<div id="sidebar">
<input type="checkbox" id="togglelegend"> Legend<br/>
<div id="legend" style="visibility: hidden;"></div>
</div>
<script type="text/javascript" src="sequences.js"></script>
<script type="text/javascript">
// Hack to make this example display correctly in an iframe on bl.ocks.org
d3.select(self.frameElement).style("height", "700px");
</script>
</body>
</html>
body {
font-family: 'Open Sans', sans-serif;
font-size: 12px;
font-weight: 400;
background-color: #fff;
width: 960px;
height: 700px;
margin-top: 10px;
}
#main {
float: left;
width: 750px;
}
#sidebar {
float: right;
width: 100px;
}
#sequence {
width: 600px;
height: 70px;
}
#legend {
padding: 10px 0 0 3px;
}
#sequence text, #legend text {
font-weight: 600;
fill: #fff;
}
#chart {
position: relative;
}
#chart path {
stroke: #fff;
}
#explanation {
position: absolute;
top: 260px;
left: 305px;
width: 140px;
text-align: center;
color: #666;
z-index: -1;
}
#percentage {
font-size: 2.5em;
}
// Dimensions of sunburst.
var width = 750;
var height = 600;
var radius = Math.min(width, height) / 2;
// Breadcrumb dimensions: width, height, spacing, width of tip/tail.
var b = {
w: 200, h: 30, s: 3, t: 10
};
/*
TOTALLY JUST A BL.OCKS CACHE TEST
*/
// Total size of all segments; we set this later, after loading the data.
var totalSize = 0;
var vis = d3.select("#chart").append("svg:svg")
.attr("width", width)
.attr("height", height)
.append("svg:g")
.attr("id", "container")
.attr("transform", "translate(" + width / 2 + "," + height / 2 + ")");
var partition = d3.layout.partition()
.size([2 * Math.PI, radius * radius])
.value(function(d) { return d.size; });
var arc = d3.svg.arc()
.startAngle(function(d) { return d.x; })
.endAngle(function(d) { return d.x + d.dx; })
.innerRadius(function(d) { return Math.sqrt(d.y); })
.outerRadius(function(d) { return Math.sqrt(d.y + d.dy); });
// Use d3.text and d3.csv.parseRows so that we do not need to have a header
// row, and can receive the csv as an array of arrays.
d3.text("visit-sequences.csv", function(text) {
var csv = d3.csv.parseRows(text);
var json = buildHierarchy(csv);
createVisualization(json);
});
// Main function to draw and set up the visualization, once we have the data.
function createVisualization(json) {
// Basic setup of page elements.
initializeBreadcrumbTrail();
// Bounding circle underneath the sunburst, to make it easier to detect
// when the mouse leaves the parent g.
vis.append("svg:circle")
.attr("r", radius)
.style("opacity", 0);
// For efficiency, filter nodes to keep only those large enough to see.
var nodes = partition.nodes(json)
.filter(function(d) {
return (d.dx > 0.005); // 0.005 radians = 0.29 degrees
});
var color = d3.scale.category10();
var path = vis.data([json]).selectAll("path")
.data(nodes)
.enter().append("svg:path")
.attr("display", function(d) { return d.depth ? null : "none"; })
.attr("d", arc)
.attr("fill-rule", "evenodd")
.attr("fill",function(d){return color(d.name);})
.style("opacity", 1)
.on("mouseover", mouseover);
// Add the mouseleave handler to the bounding circle.
d3.select("#container").on("mouseleave", mouseleave);
// Get total size of the tree = value of root node from partition.
totalSize = path.node().__data__.value;
};
// Fade all but the current sequence, and show it in the breadcrumb trail.
function mouseover(d) {
var percentage = (100 * d.value / totalSize).toPrecision(3);
var percentageString = percentage + "%";
if (percentage < 0.1) {
percentageString = "< 0.1%";
}
d3.select("#percentage")
.text(percentageString);
d3.select("#explanation")
.style("visibility", "");
var sequenceArray = getAncestors(d);
updateBreadcrumbs(sequenceArray, percentageString);
// Fade all the segments.
d3.selectAll("path")
.style("opacity", 0.3);
// Then highlight only those that are an ancestor of the current segment.
vis.selectAll("path")
.filter(function(node) {
return (sequenceArray.indexOf(node) >= 0);
})
.style("opacity", 1);
}
// Restore everything to full opacity when moving off the visualization.
function mouseleave(d) {
// Hide the breadcrumb trail
d3.select("#trail")
.style("visibility", "hidden");
// Deactivate all segments during transition.
d3.selectAll("path").on("mouseover", null);
// Transition each segment to full opacity and then reactivate it.
d3.selectAll("path")
.transition()
.duration(1000)
.style("opacity", 1)
.each("end", function() {
d3.select(this).on("mouseover", mouseover);
});
d3.select("#explanation")
.style("visibility", "hidden");
}
// Given a node in a partition layout, return an array of all of its ancestor
// nodes, highest first, but excluding the root.
function getAncestors(node) {
var path = [];
var current = node;
while (current.parent) {
path.unshift(current);
current = current.parent;
}
return path;
}
function initializeBreadcrumbTrail() {
// Add the svg area.
var trail = d3.select("#sequence").append("svg:svg")
.attr("width", width)
.attr("height", 50)
.attr("id", "trail");
// Add the label at the end, for the percentage.
trail.append("svg:text")
.attr("id", "endlabel")
.style("fill", "#000");
}
// Generate a string that describes the points of a breadcrumb polygon.
function breadcrumbPoints(d, i) {
var points = [];
points.push("0,0");
points.push(b.w + ",0");
points.push(b.w + b.t + "," + (b.h / 2));
points.push(b.w + "," + b.h);
points.push("0," + b.h);
if (i > 0) { // Leftmost breadcrumb; don't include 6th vertex.
points.push(b.t + "," + (b.h / 2));
}
return points.join(" ");
}
// Update the breadcrumb trail to show the current sequence and percentage.
function updateBreadcrumbs(nodeArray, percentageString) {
// Data join; key function combines name and depth (= position in sequence).
var g = d3.select("#trail")
.selectAll("g")
.data(nodeArray, function(d) { return d.name + d.depth; });
// Add breadcrumb and label for entering nodes.
var entering = g.enter().append("svg:g");
var color = d3.scale.category10()
entering.append("svg:polygon")
.attr("points", breadcrumbPoints)
.style("fill", function(d) { return color(d.name); });
entering.append("svg:text")
.attr("x", (b.w + b.t) / 2)
.attr("y", b.h / 2)
.attr("dy", "0.35em")
.attr("text-anchor", "middle")
.text(function(d) { return d.name; });
// Set position for entering and updating nodes.
g.attr("transform", function(d, i) {
return "translate(" + i * (b.w + b.s) + ", 0)";
});
// Remove exiting nodes.
g.exit().remove();
// Now move and update the percentage at the end.
d3.select("#trail").select("#endlabel")
.attr("x", (nodeArray.length + 0.5) * (b.w + b.s))
.attr("y", b.h / 2)
.attr("dy", "0.35em")
.attr("text-anchor", "middle")
.text(percentageString);
// Make the breadcrumb trail visible, if it's hidden.
d3.select("#trail")
.style("visibility", "");
}
// Take a 2-column CSV and transform it into a hierarchical structure suitable
// for a partition layout. The first column is a sequence of step names, from
// root to leaf, separated by hyphens. The second column is a count of how
// often that sequence occurred.
function buildHierarchy(csv) {
var root = {"name": "root", "children": []};
for (var i = 0; i < csv.length; i++) {
var sequence = csv[i][0];
var size = +csv[i][1];
if (isNaN(size)) { // e.g. if this is a header row
continue;
}
var parts = sequence.split(";").reverse();
var currentNode = root;
for (var j = 0; j < parts.length; j++) {
var children = currentNode["children"];
var nodeName = parts[j];
var childNode;
if (j + 1 < parts.length) {
// Not yet at the end of the sequence; move down the tree.
var foundChild = false;
for (var k = 0; k < children.length; k++) {
if (children[k]["name"] == nodeName) {
childNode = children[k];
foundChild = true;
break;
}
}
// If we don't already have a child node for this branch, create it.
if (!foundChild) {
childNode = {"name": nodeName, "children": []};
children.push(childNode);
}
currentNode = childNode;
} else {
// Reached the end of the sequence; create a leaf node.
childNode = {"name": nodeName, "size": size};
children.push(childNode);
}
}
}
return root;
};
CallsAppLaunched_NotRunning;UnhandledException;MobileGlobalNavigation_Windows;CallsAppLaunched_NotRunning;UnhandledException 84
PhoneNewCallStarted_Incoming;IncomingCallButtonPressed_AnswerButton;CallProgressButtonPressed_EndCallButton;PhoneCallEnded_Ended;CallsAppLaunched_NotRunning;MainPageCallHistoryItemFlyoutBlockToggled;UnhandledException 11
PhoneNewCallStarted_Incoming;IncomingCallButtonPressed_IgnoreButton;PhoneCallEnded_Ended;CallsAppLaunched_NotRunning;UnhandledException 15
UnhandledException 182
CallsAppLaunched_NotRunning;PromptBeforeCallDialButtonClicked;UnhandledException 31
MainPageCallHistoryItemClicked;UnhandledException 114
CallsAppLaunched_ClosedByUser;MainPageAppBarLaunchBlockedCallsAppButtonClicked;UnhandledException 14
CallsAppLaunched_ClosedByUser;MainPageCallHistoryItemFlyoutBlockToggled;UnhandledException 250
CallsAppLaunched_NotRunning;UnhandledException (2);CallsAppLaunched_NotRunning;UnhandledException;CallsAppLaunched_NotRunning;UnhandledException 18
CallsAppLaunched_ClosedByUser;CallsAppLaunched_Running;UnhandledException 10
CallsAppLaunched_NotRunning;UnhandledException;CallsAppLaunched_NotRunning;UnhandledException;CallsAppLaunched_NotRunning;UnhandledException;CallsAppLaunched_NotRunning;UnhandledException 273
CallsAppLaunched_NotRunning;MainPageCallHistoryItemClicked;PhoneNewCallStarted_Outgoing_CallsApp;UnhandledException 26
MainPageCallHistoryItemContactButtonClicked;UnhandledException 12
CallsAppLaunched_NotRunning;VisualVoicemailPanelLoaded;UnhandledException 15
CallsAppLaunched_NotRunning;UnhandledException;CallsAppLaunched_NotRunning;UnhandledException;MobileGlobalNavigation_Power (2);CallsAppLaunched_NotRunning;UnhandledException 17
MainPageAppBarLaunchBlockedCallsAppButtonClicked;UnhandledException 48
CallsAppLaunched_Suspended;PromptBeforeCallDialButtonClicked;UnhandledException 41
CallsAppLaunched_Running;CallsAppLaunched_NotRunning;UnhandledException 90
CallsAppLaunched_Terminated;UnhandledException 22
PhoneNewCallStarted_Incoming;PhoneCallEnded_Ended;CallsAppLaunched_NotRunning;UnhandledException 13
CallsAppLaunched_NotRunning;UnhandledException;CallsAppLaunched_NotRunning;UnhandledException 2815
CallsAppLaunched_NotRunning;UnhandledException 17596
CallsAppLaunched_NotRunning;CallsAppLaunched_Running;UnhandledException 179
CallsAppLaunched_NotRunning;UnhandledException;MobileGlobalNavigation_Power (2);CallsAppLaunched_NotRunning;UnhandledException 21
MainPageCallHistoryItemFlyoutBlockToggled;UnhandledException 133
CallsAppLaunched_NotRunning;UnhandledException;MobileGlobalNavigation_Back;CallsAppLaunched_NotRunning;UnhandledException 42
CallsAppLaunched_Suspended;UnhandledException 114
CallsAppLaunched_Terminated;MainPageCallHistoryItemFlyoutBlockToggled;UnhandledException 11
CallsAppLaunched_NotRunning;MainPageCallHistoryItemFlyoutBlockToggled;UnhandledException;CallsAppLaunched_NotRunning;MainPageCallHistoryItemFlyoutBlockToggled;UnhandledException 19
CallsAppLaunched_NotRunning;AppSuspending;UnhandledException 10
CallsAppLaunched_NotRunning;UnhandledException;MobileGlobalNavigation_Back (2);CallsAppLaunched_NotRunning;UnhandledException 12
CallsAppLaunched_NotRunning;UnhandledException;MobileGlobalNavigation_Power;CallsAppLaunched_NotRunning;UnhandledException 16
CallsAppLaunched_ClosedByUser;UnhandledException 102
CallsAppLaunched_Suspended;MainPageAppBarLaunchBlockedCallsAppButtonClicked;UnhandledException 22
CallsAppLaunched_NotRunning (2);UnhandledException 270
CallsAppLaunched_NotRunning;UnhandledException (2) 143
CallsAppLaunched_NotRunning;UnhandledException;CallsAppLaunched_NotRunning;UnhandledException;CallsAppLaunched_NotRunning;UnhandledException 811
CallsAppLaunched_Suspended;MainPageCallHistoryItemFlyoutBlockToggled;UnhandledException 186
CallsAppLaunched_NotRunning;UnhandledException (2);CallsAppLaunched_NotRunning;UnhandledException 46
CallsAppLaunched_NotRunning;MainPageAppBarLaunchBlockedCallsAppButtonClicked;UnhandledException 48
CallsAppLaunched_NotRunning (3);UnhandledException 209
PhoneNewCallStarted_Incoming;PhoneCallEnded_Ended;MobileGlobalNavigation_Power;CallsAppLaunched_NotRunning;UnhandledException 10
CallsAppLaunched_NotRunning;MainPageCallHistoryItemFlyoutBlockToggled;UnhandledException 708
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment