Skip to content

Instantly share code, notes, and snippets.

@henryjameslau
Last active April 5, 2017 16:52
Show Gist options
  • Save henryjameslau/f4957bab9ecf8e89521efacff601e4b5 to your computer and use it in GitHub Desktop.
Save henryjameslau/f4957bab9ecf8e89521efacff601e4b5 to your computer and use it in GitHub Desktop.
2 dimension beeswarm plot for fuzzy roadmapping

###Roadmap Little project given to me by @clementgraphics to turn a roadmap she (painstakingly) made in illustrator to d3. The idea was based around a beeswarm chart where bubbles centred around one dimensional axis. In this visualisation time is the one dimension but projects are also split out into different categories and represent different products.

Inspired by no collision scatterplot graph, this filterable beeswarm chart, and this answer on StackOverflow about select elements of the same category.

<!DOCTYPE html>
<meta charset="utf-8">
<head>
<style>
body {
font: 12px sans-serif;
}
.axis path,
.axis line {
fill: none;
stroke: white;
shape-rendering: crispEdges;
}
.dot {
stroke: #000;
stroke-opacity: .7;
fill-opacity: .4;
}
div.tooltip {
position: absolute;
text-align: left;
font-family: sans-serif;
white-space: normal;
padding: 6px;
font-size: 12px;
background: #eee;
border: 1px solid gray;
border-radius: 3px;
pointer-events: none;
cursor: none;
}
</style>
</head>
<body>
<script src="http://d3js.org/d3.v3.min.js"></script>
<script>
// set the canvas
var margin = {top: 100, right: 300, bottom: 70, left: 200},
width = 960 - margin.left - margin.right,
height = 500 - margin.top - margin.bottom,
padding = 1, // separation between nodes
radius = 6; // radius of bubbles
//parse the date / time
var parseTime = d3.time.format("%d/%m/20%y").parse;
//format the time
var formatTime = d3.time.format("%d-%m-%Y");
//say that the x-axis is a time scale
var x = d3.time.scale()
.range([0, width]);
//say the y-axis is a categorical scale
var y = d3.scale.ordinal()
.rangePoints([0, height])
//Tooltip
var tt = d3.select("body").append("div")
.attr("class", "tooltip")
.style("opacity", 0);
// use a color scale designed for 10 different categories
var color = d3.scale.category10();
//tell d3 where the axes should go
var xAxis = d3.svg.axis()
.scale(x)
.orient("bottom");
var yAxis = d3.svg.axis()
.scale(y)
.orient("left");
//Tell d3 to start the canvas
var svg = d3.select("body").append("svg")
.attr("width", width + margin.left + margin.right)
.attr("height", height + margin.top + margin.bottom)
.append("g")
.attr("transform", "translate(" + margin.left + "," + margin.top + ")");
//read in the csv
d3.csv("roadmap.csv", function(error, data) {
var xVar = "StartDate",
yVar = "category";
//read the start dates
data.forEach(function(d) {
d[xVar] = parseTime(d.StartDate);
//d[yVar] = +d[yVar];
});
var force = d3.layout.force()
.nodes(data)
.size([width, height])
.on("tick", tick)
.charge(-8)
.gravity(0)
//.chargeDistance(20)
.start();
// set the axes, looking at the dates/categories, then making the scale fit the dates or the number of different categories
x.domain(d3.extent(data, function(d) { return d[xVar]; })).nice();
y.domain(data.map(function(d) { return d[yVar]; }));
// Set initial positions
data.forEach(function(d) {
d.x = x(d[xVar]);
d.y = y(d[yVar]);
d.color = color(d.Product); //use as many colours as there are different categories of Product
d.radius = radius;
});
//draw the x-axis
svg.append("g")
.attr("class", "x axis")
.attr("transform", "translate(0," + height*1.05 + ")")
.call(xAxis)
//draw the y axis
svg.append("g")
.attr("class", "y axis")
.attr("transform","translate(-100,10)")
.call(yAxis)
//draw the floating dots
var node = svg.selectAll(".dot")
.data(data)
.enter().append("circle")
.attr("class", "dot")
.attr("r", radius)
.attr("cx", function(d) { return x(d[xVar]); })
.attr("cy", function(d) { return y(d[yVar]); })
.style("fill", function(d) { return d.color; })
.call(force.drag); //make them draggable
//This is the tooltip and another function to make the dots of the same product go darker when you hover over them
d3.selectAll(".dot").on("mousemove", function(d) {
d3.selectAll(".dot").filter(function(dot){return (dot.Product == d.Product)}).transition().style("fill-opacity",1);
tt.html("Item: <strong>" + d.Item + "</strong><br>" + "Category: " + d.category +"<br>"+"Product: "+d.Product+"<br>"+"Start Date: "+formatTime(d.StartDate)+"<br>"+"ID: "+d.ExternalID)
.style('top', d3.event.pageY - 12 + 'px')
.style('left', d3.event.pageX + 25 + 'px')
.style("opacity", 0.9);
}).on("mouseout",function(d){tt.style("opacity",0);
d3.selectAll('.dot')
.filter(function(dot){return (dot.Product == d.Product)})
.transition()
.style("fill-opacity", 0.4);
});
//This is the legend
var legend = svg.selectAll(".legend")
.data(color.domain())
.enter().append("g")
.attr("class", "legend")
.attr("transform", function(d, i) { return "translate(300," + i * 20 + ")"; });
legend.append("rect")
.attr("x", width - 18)
.attr("width", 18)
.attr("height", 18)
.style("fill", color);
legend.append("text")
.attr("x", width - 24)
.attr("y", 9)
.attr("dy", ".35em")
.style("text-anchor", "end")
.text(function(d) { return d; });
//the force layout stuff
function tick(e) {
node.each(moveTowardDataPosition(e.alpha));
node.each(collide(e.alpha));
node.attr("cx", function(d) { return d.x; })
.attr("cy", function(d) { return d.y; });
}
function moveTowardDataPosition(alpha) {
return function(d) {
d.x += (x(d[xVar]) - d.x) * 0.1 * alpha;
d.y += (y(d[yVar]) - d.y) * 0.1 * alpha;
};
}
// Resolve collisions between nodes.
function collide(alpha) {
var quadtree = d3.geom.quadtree(data);
return function(d) {
var r = d.radius + radius + padding,
nx1 = d.x - r,
nx2 = d.x + r,
ny1 = d.y - r,
ny2 = d.y + r;
quadtree.visit(function(quad, x1, y1, x2, y2) {
if (quad.point && (quad.point !== d)) {
var x = d.x - quad.point.x,
y = d.y - quad.point.y,
l = Math.sqrt(x * x + y * y),
r = d.radius + quad.point.radius + (d.color !== quad.point.color) * padding;
if (l < r) {
l = (l - r) / l * alpha;
d.x -= x *= l;
d.y -= y *= l;
quad.point.x += x;
quad.point.y += y;
}
}
return x1 > nx2 || x2 < nx1 || y1 > ny2 || y2 < ny1;
});
};
}
});
</script>
ExternalID Item Description StartDate End Date category Product Phase
RM224 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/01/2018 31/03/2018 Capability Content
RM222 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/10/2017 31/12/2017 Capability Content
RM223 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/10/2017 31/12/2017 Capability Content
RM146 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/07/2017 30/09/2017 Capability User Research & Design
RM147 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/07/2017 30/09/2017 Capability User Research & Design
RM148 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/07/2017 30/09/2017 Capability User Research & Design
RM6 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/07/2017 30/09/2017 Capability Development
RM14 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/07/2017 30/09/2017 Capability User Research & Design
RM219 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/07/2017 30/09/2017 Capability Content
RM220 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/07/2017 30/09/2017 Capability Content
RM221 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/07/2017 30/09/2017 Capability Content
RM5 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/04/2017 30/06/2017 Capability Development
RM130 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/04/2017 30/06/2017 Capability Cross Team
RM120 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/04/2017 30/06/2017 Capability User Research & Design
RM121 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/04/2017 30/06/2017 Capability User Research & Design
RM122 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/04/2017 30/06/2017 Capability Content
RM131 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/04/2017 30/06/2017 Capability User Research & Design
RM150 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/04/2017 30/06/2017 Capability Content
RM124 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/04/2017 30/06/2017 Capability Content
RM125 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/04/2017 30/06/2017 Capability Content
RM95 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/04/2017 30/06/2017 Capability User Research & Design
RM96 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/04/2017 30/06/2017 Capability User Research & Design
RM149 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/04/2017 30/06/2017 Capability User Research & Design
RM98 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/04/2017 30/06/2017 Capability User Research & Design
RM56 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/04/2017 30/06/2017 Capability Data & Search
RM69 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/04/2017 30/06/2017 Capability Cross Team
RM8 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/04/2017 30/06/2017 Capability Development
RM209 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/04/2017 30/06/2017 Capability Content
RM210 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/04/2017 30/06/2017 Capability Content
RM211 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/04/2017 30/06/2017 Capability Content
RM212 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/04/2017 30/06/2017 Capability Content
RM213 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/04/2017 30/06/2017 Capability Content
RM214 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/04/2017 30/06/2017 Capability Content
RM216 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/04/2017 30/06/2017 Capability Content
RM217 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/04/2017 30/06/2017 Capability Content
RM218 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/04/2017 30/06/2017 Capability Content
RM123 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/04/2017 01/06/2017 Capability Cross Team
RM7 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/01/2017 31/03/2017 Capability Cross Team
RM99 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/01/2017 31/03/2017 Capability Cross Team
RM9 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/01/2017 31/03/2017 Capability User Research & Design
RM100 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/01/2017 31/03/2017 Capability User Research & Design
RM10 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/01/2017 31/03/2017 Capability Content
RM151 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/01/2017 31/03/2017 Capability Content
RM152 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/01/2017 31/03/2017 Capability User Research & Design
RM101 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/01/2017 31/03/2017 Capability User Research & Design
RM11 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/01/2017 31/03/2017 Capability User Research & Design
RM102 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/01/2017 31/03/2017 Capability User Research & Design
RM118 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/01/2017 31/03/2017 Capability User Research & Design
RM103 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/01/2017 31/03/2017 Capability Content
RM13 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/01/2017 31/03/2017 Capability Data & Search
RM105 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/01/2017 31/03/2017 Capability Cross Team
RM107 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/01/2017 31/03/2017 Capability Content
RM106 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/01/2017 31/03/2017 Capability Content
RM109 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/01/2017 31/03/2017 Capability Content
RM108 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/01/2017 31/03/2017 Capability Content
RM48 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/01/2017 31/03/2017 Capability Business Systems Development
RM104 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/01/2017 31/03/2017 Capability Development
RM51 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/01/2017 31/03/2017 Capability User Research & Design
RM97 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/01/2017 31/03/2017 Capability User Research & Design
RM90 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/01/2017 31/03/2017 Capability Cross Team
RM142 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/01/2017 31/03/2017 Capability Development
RM35 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/01/2017 31/03/2017 Capability Content
RM159 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/01/2017 31/03/2017 Capability Data & Search
RM179 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/01/2017 31/03/2017 Capability Development
RM198 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/01/2017 31/03/2017 Capability Content
RM204 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/01/2017 31/03/2017 Capability Content
RM205 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/01/2017 31/03/2017 Capability Content
RM206 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/01/2017 31/03/2017 Capability Content
RM207 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/01/2017 31/03/2017 Capability Content
RM208 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/01/2017 31/03/2017 Capability Content
RM129 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/12/2016 31/03/2017 Capability Development
RM143 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/12/2016 31/03/2017 Capability Development
RM153 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/11/2016 31/03/2017 Capability Cross Team
RM79 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/10/2016 31/03/2017 Capability Development
RM140 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/10/2016 31/03/2017 Capability Development
RM12 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/12/2016 28/02/2017 Capability Development
RM145 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/10/2016 28/02/2017 Capability Development
RM141 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/10/2016 31/01/2017 Capability Development
RM41 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/10/2016 31/12/2016 Capability Data & Search
RM42 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/10/2016 31/12/2016 Capability Data & Search
RM61 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/10/2016 31/12/2016 Capability Data & Search
RM162 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/10/2016 31/12/2016 Capability User Research & Design
RM1 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/10/2016 31/12/2016 Capability Development
RM3 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/10/2016 31/12/2016 Capability Development
RM17 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/10/2016 31/12/2016 Capability Content
RM29 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/10/2016 31/12/2016 Capability Content
RM39 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/10/2016 31/12/2016 Capability Business Systems Development
RM46 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/10/2016 31/12/2016 Capability Business Systems Development
RM62 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/10/2016 31/12/2016 Capability Data & Search
RM110 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/10/2016 31/12/2016 Capability Data & Search
RM160 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/10/2016 31/12/2016 Capability User Research & Design
RM161 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/10/2016 31/12/2016 Capability User Research & Design
RM163 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/10/2016 31/12/2016 Capability Content
RM164 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/10/2016 31/12/2016 Capability Content
RM165 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/10/2016 31/12/2016 Capability User Research & Design
RM185 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/10/2016 31/12/2016 Capability User Research & Design
RM186 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/10/2016 31/12/2016 Capability User Research & Design
RM187 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/10/2016 31/12/2016 Capability User Research & Design
RM166 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/10/2016 31/12/2016 Capability Data & Search
RM171 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/10/2016 31/12/2016 Capability Data & Search
RM172 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/10/2016 31/12/2016 Capability Data & Search
RM175 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/10/2016 31/12/2016 Capability Data & Search
RM176 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/10/2016 31/12/2016 Capability Data & Search
RM177 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/10/2016 31/12/2016 Capability Data & Search
RM178 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/10/2016 31/12/2016 Capability Data & Search
RM192 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/10/2016 31/12/2016 Capability Content
RM193 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/10/2016 31/12/2016 Capability Content
RM194 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/10/2016 31/12/2016 Capability Content
RM195 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/10/2016 31/12/2016 Capability Content
RM196 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/10/2016 31/12/2016 Capability Content
RM197 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/10/2016 31/12/2016 Capability Content
RM200 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/10/2016 31/12/2016 Capability Content
RM201 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/10/2016 31/12/2016 Capability Content
RM155 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/10/2016 31/12/2016 Capability Content
RM158 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/10/2016 31/12/2016 Capability User Research & Design
RM184 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/10/2016 31/12/2016 Capability User Research & Design
RM157 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/10/2016 31/12/2016 Capability Data & Search
RM154 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/10/2016 31/12/2016 Capability Development
RM156 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/10/2016 31/12/2016 Capability Business Systems Development
RM167 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/10/2016 31/12/2016 Capability Data & Search
RM168 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/10/2016 31/12/2016 Capability Data & Search
RM169 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/10/2016 31/12/2016 Capability Data & Search
RM170 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/10/2016 31/12/2016 Capability Data & Search
RM189 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/07/2016 30/09/2016 Capability Content
RM190 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/07/2016 30/09/2016 Capability Content
RM191 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/07/2016 30/09/2016 Capability Content
RM188 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/07/2016 23/09/2016 Capability Content
RM18 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/01/2018 31/03/2018 Core User Research & Design
RM19 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/01/2018 31/03/2018 Core User Research & Design
RM20 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/01/2018 31/03/2018 Core Data & Search
RM21 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/01/2018 31/03/2018 Core Cross Team
RM22 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/01/2018 31/03/2018 Core Development
RM23 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/01/2018 31/03/2018 Core Content
RM24 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/01/2018 31/03/2018 Core Content
RM25 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/01/2018 31/03/2018 Core Content
RM26 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/01/2018 31/03/2018 Core Content
RM27 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/01/2018 31/03/2018 Core Content
RM28 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/01/2018 31/03/2018 Core Content
RM137 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/07/2017 30/09/2017 Core Content
RM138 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/07/2017 30/09/2017 Core Content
RM139 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/07/2017 30/09/2017 Core Content
RM15 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/07/2017 30/09/2017 Core Cross Team
RM30 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/07/2017 30/09/2017 Core Cross Team Alpha
RM31 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/07/2017 30/09/2017 Core Cross Team
RM53 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/07/2017 30/09/2017 Core User Research & Design
RM92 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/07/2017 29/09/2017 Core User Research & Design Beta
RM126 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/04/2017 30/06/2017 Core Content
RM127 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/04/2017 30/06/2017 Core Content
RM133 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/04/2017 30/06/2017 Core User Research & Design
RM134 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/04/2017 30/06/2017 Core User Research & Design
RM135 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/04/2017 30/06/2017 Core User Research & Design
RM32 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/04/2017 30/06/2017 Core User Research & Design
RM33 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/04/2017 30/06/2017 Core User Research & Design
RM85 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/04/2017 30/06/2017 Core Content
RM36 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/04/2017 30/06/2017 Core Data & Search
RM37 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/04/2017 30/06/2017 Core Cross Team
RM58 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/04/2017 30/06/2017 Core Content
RM91 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/04/2017 30/06/2017 Core Content
RM215 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/04/2017 30/06/2017 Core Content
RM88 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/02/2017 30/06/2017 Core Content Beta
RM45 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/01/2017 30/06/2017 Core Business Systems Development Beta
RM86 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/01/2017 31/05/2017 Core Development Beta
RM87 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/01/2017 31/05/2017 Core User Research & Design Beta
RM44 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/01/2017 31/03/2017 Core User Research & Design
a Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/01/2017 31/03/2017 Core Cross Team
RM112 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/01/2017 31/03/2017 Core Development
RM114 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/01/2017 31/03/2017 Core Content
RM115 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/01/2017 31/03/2017 Core Data & Search
RM119 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/01/2017 31/03/2017 Core Development
RM82 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/01/2017 31/03/2017 Core Content Discovery
RM202 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/01/2017 31/03/2017 Core Content
RM203 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/01/2017 31/03/2017 Core Content
RM180 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/07/2016 31/01/2017 Core Content Alpha
RM182 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/07/2016 30/09/2016 Core Content Alpha
RM80 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/07/2017 30/09/2017 Experiments Content
RM2 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/07/2017 30/09/2017 Experiments Development
RM81 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/04/2017 30/06/2017 Experiments Development
RM49 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/04/2017 30/06/2017 Experiments Cross Team
RM50 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/01/2017 31/03/2017 Experiments Development
RM199 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/10/2016 31/12/2016 Experiments Development
RM38 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/10/2017 30/12/2017 Utility Development
RM52 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/07/2017 30/09/2017 Utility Development
RM4 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/04/2017 30/06/2017 Utility Development
RM16 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/04/2017 30/06/2017 Utility Data & Search
RM34 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/04/2017 30/06/2017 Utility Data & Search
RM54 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/04/2017 30/06/2017 Utility Data & Search
RM94 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/04/2017 30/06/2017 Utility User Research & Design
RM57 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/04/2017 30/06/2017 Utility Development
RM144 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/04/2017 30/06/2017 Utility Development
RM68 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/04/2017 30/06/2017 Utility Content
RM59 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/01/2017 31/03/2017 Utility Content
RM60 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/01/2017 31/03/2017 Utility Business Systems Development
RM74 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/01/2017 31/03/2017 Utility Business Systems Development
RM93 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/01/2017 30/03/2017 Utility Data & Search
RM89 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/12/2016 31/01/2017 Utility Data & Search
RM174 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/10/2016 31/12/2016 Utility User Research & Design
RM173 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/10/2016 31/12/2016 Utility User Research & Design
RM181 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/07/2016 30/09/2016 Utility Content Alpha
RM75 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/01/2018 31/03/2018 Value Content
RM76 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/01/2018 31/03/2018 Value User Research & Design
RM77 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/01/2018 31/03/2018 Value User Research & Design
RM78 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/01/2018 31/03/2018 Value User Research & Design
RM136 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/07/2017 30/09/2017 Value User Research & Design
RM63 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/07/2017 30/09/2017 Value Data & Search
RM64 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/07/2017 30/09/2017 Value Data & Search
RM65 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/07/2017 30/09/2017 Value Data & Search
RM66 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/07/2017 30/09/2017 Value Data & Search
RM132 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/04/2017 30/06/2017 Value Data & Search
RM128 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/04/2017 30/06/2017 Value Data & Search
RM67 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/04/2017 30/06/2017 Value Data & Search
RM70 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/04/2017 30/06/2017 Value Content
RM71 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/04/2017 30/06/2017 Value Content
RM72 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/04/2017 30/06/2017 Value Content Discovery
RM113 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/01/2017 31/03/2017 Value Content
RM116 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/01/2017 31/03/2017 Value Content
RM117 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/01/2017 31/03/2017 Value Content
RM73 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/01/2017 31/03/2017 Value Content
RM84 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/01/2017 31/03/2017 Value Content
RM83 Lorem ipsum Ground round sirloin kevin porchetta salami, ham beef jowl. 01/01/2017 30/03/2017 Value Content
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment