Here's the simple bar chart example that we'll be working with for Session 3 of our d3 and Cal Answers sessions;
/UGCohort Grad Data.csv Secret
Last active
August 25, 2015 21:12
d3-ucb session 3: stacked bar
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.d3-tip { | |
line-height: 1; | |
font-weight: 200; | |
padding: 12px; | |
background: rgba(0, 0, 0, 0.8); | |
color: #fff; | |
border-radius: 2px; | |
pointer-events: none; | |
font-family: 'Arial', sans-serif; | |
} | |
/* Creates a small triangle extender for the tooltip */ | |
.d3-tip:after { | |
box-sizing: border-box; | |
display: inline; | |
font-size: 10px; | |
width: 100%; | |
line-height: 1; | |
color: rgba(0, 0, 0, 0.8); | |
position: absolute; | |
pointer-events: none; | |
} | |
/* Northward tooltips */ | |
.d3-tip.n:after { | |
content: "\25BC"; | |
margin: -1px 0 0 0; | |
top: 100%; | |
left: 0; | |
text-align: center; | |
} | |
/* Eastward tooltips */ | |
.d3-tip.e:after { | |
content: "\25C0"; | |
margin: -4px 0 0 0; | |
top: 50%; | |
left: -8px; | |
} | |
/* Southward tooltips */ | |
.d3-tip.s:after { | |
content: "\25B2"; | |
margin: 0 0 1px 0; | |
top: -8px; | |
left: 0; | |
text-align: center; | |
} | |
/* Westward tooltips */ | |
.d3-tip.w:after { | |
content: "\25B6"; | |
margin: -4px 0 0 -1px; | |
top: 50%; | |
left: 100%; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// d3.tip | |
// Copyright (c) 2013 Justin Palmer | |
// | |
// Tooltips for d3.js SVG visualizations | |
(function (root, factory) { | |
if (typeof define === 'function' && define.amd) { | |
// AMD. Register as an anonymous module with d3 as a dependency. | |
define(['d3'], factory) | |
} else if (typeof module === 'object' && module.exports) { | |
// CommonJS | |
module.exports = function(d3) { | |
d3.tip = factory(d3) | |
return d3.tip | |
} | |
} else { | |
// Browser global. | |
root.d3.tip = factory(root.d3) | |
} | |
}(this, function (d3) { | |
// Public - contructs a new tooltip | |
// | |
// Returns a tip | |
return function() { | |
var direction = d3_tip_direction, | |
offset = d3_tip_offset, | |
html = d3_tip_html, | |
node = initNode(), | |
svg = null, | |
point = null, | |
target = null | |
function tip(vis) { | |
svg = getSVGNode(vis) | |
point = svg.createSVGPoint() | |
document.body.appendChild(node) | |
} | |
// Public - show the tooltip on the screen | |
// | |
// Returns a tip | |
tip.show = function() { | |
var args = Array.prototype.slice.call(arguments) | |
if(args[args.length - 1] instanceof SVGElement) target = args.pop() | |
var content = html.apply(this, args), | |
poffset = offset.apply(this, args), | |
dir = direction.apply(this, args), | |
nodel = getNodeEl(), | |
i = directions.length, | |
coords, | |
scrollTop = document.documentElement.scrollTop || document.body.scrollTop, | |
scrollLeft = document.documentElement.scrollLeft || document.body.scrollLeft | |
nodel.html(content) | |
.style({ opacity: 1, 'pointer-events': 'all' }) | |
while(i--) nodel.classed(directions[i], false) | |
coords = direction_callbacks.get(dir).apply(this) | |
nodel.classed(dir, true).style({ | |
top: (coords.top + poffset[0]) + scrollTop + 'px', | |
left: (coords.left + poffset[1]) + scrollLeft + 'px' | |
}) | |
return tip | |
} | |
// Public - hide the tooltip | |
// | |
// Returns a tip | |
tip.hide = function() { | |
var nodel = getNodeEl() | |
nodel.style({ opacity: 0, 'pointer-events': 'none' }) | |
return tip | |
} | |
// Public: Proxy attr calls to the d3 tip container. Sets or gets attribute value. | |
// | |
// n - name of the attribute | |
// v - value of the attribute | |
// | |
// Returns tip or attribute value | |
tip.attr = function(n, v) { | |
if (arguments.length < 2 && typeof n === 'string') { | |
return getNodeEl().attr(n) | |
} else { | |
var args = Array.prototype.slice.call(arguments) | |
d3.selection.prototype.attr.apply(getNodeEl(), args) | |
} | |
return tip | |
} | |
// Public: Proxy style calls to the d3 tip container. Sets or gets a style value. | |
// | |
// n - name of the property | |
// v - value of the property | |
// | |
// Returns tip or style property value | |
tip.style = function(n, v) { | |
if (arguments.length < 2 && typeof n === 'string') { | |
return getNodeEl().style(n) | |
} else { | |
var args = Array.prototype.slice.call(arguments) | |
d3.selection.prototype.style.apply(getNodeEl(), args) | |
} | |
return tip | |
} | |
// Public: Set or get the direction of the tooltip | |
// | |
// v - One of n(north), s(south), e(east), or w(west), nw(northwest), | |
// sw(southwest), ne(northeast) or se(southeast) | |
// | |
// Returns tip or direction | |
tip.direction = function(v) { | |
if (!arguments.length) return direction | |
direction = v == null ? v : d3.functor(v) | |
return tip | |
} | |
// Public: Sets or gets the offset of the tip | |
// | |
// v - Array of [x, y] offset | |
// | |
// Returns offset or | |
tip.offset = function(v) { | |
if (!arguments.length) return offset | |
offset = v == null ? v : d3.functor(v) | |
return tip | |
} | |
// Public: sets or gets the html value of the tooltip | |
// | |
// v - String value of the tip | |
// | |
// Returns html value or tip | |
tip.html = function(v) { | |
if (!arguments.length) return html | |
html = v == null ? v : d3.functor(v) | |
return tip | |
} | |
// Public: destroys the tooltip and removes it from the DOM | |
// | |
// Returns a tip | |
tip.destroy = function() { | |
if(node) { | |
getNodeEl().remove(); | |
node = null; | |
} | |
return tip; | |
} | |
function d3_tip_direction() { return 'n' } | |
function d3_tip_offset() { return [0, 0] } | |
function d3_tip_html() { return ' ' } | |
var direction_callbacks = d3.map({ | |
n: direction_n, | |
s: direction_s, | |
e: direction_e, | |
w: direction_w, | |
nw: direction_nw, | |
ne: direction_ne, | |
sw: direction_sw, | |
se: direction_se | |
}), | |
directions = direction_callbacks.keys() | |
function direction_n() { | |
var bbox = getScreenBBox() | |
return { | |
top: bbox.n.y - node.offsetHeight, | |
left: bbox.n.x - node.offsetWidth / 2 | |
} | |
} | |
function direction_s() { | |
var bbox = getScreenBBox() | |
return { | |
top: bbox.s.y, | |
left: bbox.s.x - node.offsetWidth / 2 | |
} | |
} | |
function direction_e() { | |
var bbox = getScreenBBox() | |
return { | |
top: bbox.e.y - node.offsetHeight / 2, | |
left: bbox.e.x | |
} | |
} | |
function direction_w() { | |
var bbox = getScreenBBox() | |
return { | |
top: bbox.w.y - node.offsetHeight / 2, | |
left: bbox.w.x - node.offsetWidth | |
} | |
} | |
function direction_nw() { | |
var bbox = getScreenBBox() | |
return { | |
top: bbox.nw.y - node.offsetHeight, | |
left: bbox.nw.x - node.offsetWidth | |
} | |
} | |
function direction_ne() { | |
var bbox = getScreenBBox() | |
return { | |
top: bbox.ne.y - node.offsetHeight, | |
left: bbox.ne.x | |
} | |
} | |
function direction_sw() { | |
var bbox = getScreenBBox() | |
return { | |
top: bbox.sw.y, | |
left: bbox.sw.x - node.offsetWidth | |
} | |
} | |
function direction_se() { | |
var bbox = getScreenBBox() | |
return { | |
top: bbox.se.y, | |
left: bbox.e.x | |
} | |
} | |
function initNode() { | |
var node = d3.select(document.createElement('div')) | |
node.style({ | |
position: 'absolute', | |
top: 0, | |
opacity: 0, | |
'pointer-events': 'none', | |
'box-sizing': 'border-box' | |
}) | |
return node.node() | |
} | |
function getSVGNode(el) { | |
el = el.node() | |
if(el.tagName.toLowerCase() === 'svg') | |
return el | |
return el.ownerSVGElement | |
} | |
function getNodeEl() { | |
if(node === null) { | |
node = initNode(); | |
// re-add node to DOM | |
document.body.appendChild(node); | |
}; | |
return d3.select(node); | |
} | |
// Private - gets the screen coordinates of a shape | |
// | |
// Given a shape on the screen, will return an SVGPoint for the directions | |
// n(north), s(south), e(east), w(west), ne(northeast), se(southeast), nw(northwest), | |
// sw(southwest). | |
// | |
// +-+-+ | |
// | | | |
// + + | |
// | | | |
// +-+-+ | |
// | |
// Returns an Object {n, s, e, w, nw, sw, ne, se} | |
function getScreenBBox() { | |
var targetel = target || d3.event.target; | |
while ('undefined' === typeof targetel.getScreenCTM && 'undefined' === targetel.parentNode) { | |
targetel = targetel.parentNode; | |
} | |
var bbox = {}, | |
matrix = targetel.getScreenCTM(), | |
tbbox = targetel.getBBox(), | |
width = tbbox.width, | |
height = tbbox.height, | |
x = tbbox.x, | |
y = tbbox.y | |
point.x = x | |
point.y = y | |
bbox.nw = point.matrixTransform(matrix) | |
point.x += width | |
bbox.ne = point.matrixTransform(matrix) | |
point.y += height | |
bbox.se = point.matrixTransform(matrix) | |
point.x -= width | |
bbox.sw = point.matrixTransform(matrix) | |
point.y -= height / 2 | |
bbox.w = point.matrixTransform(matrix) | |
point.x += width | |
bbox.e = point.matrixTransform(matrix) | |
point.x -= width / 2 | |
point.y -= height / 2 | |
bbox.n = point.matrixTransform(matrix) | |
point.y += height | |
bbox.s = point.matrixTransform(matrix) | |
return bbox | |
} | |
return tip | |
}; | |
})); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<meta charset="utf-8"> | |
<meta http-equiv="Content-Type" content="text/html;charset=utf-8"/> | |
<script type="text/javascript" src="http://d3js.org/d3.v3.min.js"></script> | |
<script type="text/javascript" src="d3.tip.js"></script> | |
<link rel="stylesheet" href="d3.tip.css"> | |
<style> | |
#title { | |
font: 200 16pt "Helvetica Neue", sans serif; | |
margin-left: 60px; | |
} | |
rect { | |
} | |
text.label { | |
font: 200 10pt "Futura", sans serif; | |
fill: #525252; | |
} | |
text.rlabel, text.glabel { | |
font: 200 12pt "Futura", sans serif; | |
fill: #525252; | |
text-align: center; | |
} | |
.axis { | |
font: 10pt "Helvetica Neue", sans serif; | |
} | |
.axis path, | |
.axis line { | |
fill: none; | |
stroke: #000; | |
shape-rendering: crispEdges; | |
} | |
.x.axis path { | |
display: none; | |
} | |
.legend { | |
font: 10pt "Helvetica Neue", sans serif; | |
} | |
</style> | |
<body> | |
<div id="title">Undergraduate Graduation Counts by Entry Cohort</div> | |
<div id="chart"></div> | |
<script> | |
var margin = {top: 100, right: 220, bottom: 80, left: 80}, | |
height = 600 - margin.bottom - margin.top, | |
width = 940 - margin.right - margin.left; | |
var nest = d3.nest() | |
.key(function(d) { return d.detailYrsToGraduationNbr; }); | |
var name; | |
var stack = d3.layout.stack() | |
.values(function(d) { | |
return d.values; | |
}) | |
.x(function(d) { | |
return d.semesterYearName; | |
}) | |
.y(function(d) { | |
return d.count; | |
}); | |
var chart =d3.select("#chart") | |
.append("svg") | |
.attr("width",width + margin.right + margin.left) | |
.attr("height",height + margin.bottom + margin.top) | |
.append("g") | |
.attr("transform","translate(" + (margin.left + 40) + "," + margin.top + ")"); | |
var pctFormat = d3.format(",.0%"), | |
tinyFormat = d3.format(",.1%"), | |
cformat = d3.format(",d"); | |
var tip = d3.tip().attr("class","d3-tip").html(function(d) {return d.detailYrsToGraduationNbr + ' : ' + cformat(d.y);}); | |
d3.csv("UGCohort Grad Data.csv", function(csv) { | |
//var data = csv.filter(function(d) {return d.detailYrsToGraduationNbr === "4.5 Yrs";}) | |
var data = csv; | |
data.forEach(function(d) { | |
d.count = +d.count; | |
}); | |
var dataByRate = nest.entries(data); | |
var rates = dataByRate.map(function(d) {return d.key;}); | |
var dataByTerm = d3.nest().key(function(d) { return d.semesterYearName; }).entries(data); | |
var color = d3.scale.ordinal() | |
.domain(rates) | |
// .range(["#e5f5e0","#c7e9c0","#a1d99b","#74c476","#a6d96a","#41ab5d","#238b45","#006d2c","#4d9221","#00441b","#ccc"]) | |
.range(["#006837", "#1a9850", "#66bd63", "#a6d96a", "#d9ef8b", "#ffffbf", "#fee08b", "#fdae61", "#f46d43", "#d73027", "#ccc"]); // #a50026 is really dark red | |
var terms = dataByTerm.map(function(d) {return d.key;}); | |
// add totals for each term | |
dataByTerm.forEach(function(d) { | |
d.total = d3.sum(d.values, function(l) {return l.count;}); | |
}); | |
// var terms = d3.set(data.map(function(d){return d.semesterYearName;})).values(); | |
var x = d3.scale.ordinal().domain(terms).rangeRoundBands([0, width], .25); | |
stack(dataByRate); | |
var y = d3.scale.linear().domain([0,d3.max(data,function(d) {return d.y0 + d.y;})]).range([height,0]); | |
var xAxis = d3.svg.axis() | |
.scale(x) | |
.orient("bottom"); | |
var yAxis = d3.svg.axis() | |
.scale(y) | |
.orient("left") | |
.tickFormat(d3.format(",")) | |
.ticks(5); | |
var bar = chart.selectAll("rect") | |
.data(data) | |
.enter() | |
.append("rect") | |
.attr("class", function(d) {return d.detailYrsToGraduationNbr.toString().replace(' ','-');;}) | |
.attr("fill", function(d) { | |
return color(d.detailYrsToGraduationNbr); | |
}) | |
.attr("x", function(d,i) { | |
return x(d.semesterYearName); | |
} ) | |
.attr("y",function(d) { | |
return y(d.y0 + d.y); | |
}) | |
.attr("height",function(d) { | |
return height-y(d.y); | |
}) | |
.attr("width",x.rangeBand()) | |
// append title element 'tooltips' | |
// .append("title") | |
// .text(function(d) {return d.y;}); | |
/* Show and hide tip on mouse events */ | |
.on('mouseover', tip.show) | |
.on('mouseout', tip.hide); | |
chart.append("g") | |
.attr("class", "x axis") | |
.call(xAxis) | |
.attr("transform","translate(0," + (height) + ")"); | |
chart.append("g") | |
.attr("class","y axis") | |
.attr("transform","translate(-20,0)") | |
.call(yAxis) | |
.append("text") | |
.attr("transform", "rotate(-90)") | |
.attr("y", 6) | |
.attr("dy", ".71em") | |
.style("text-anchor", "end") | |
.text("Number of students"); | |
chart.call(tip); | |
// the bar labels as we used in the simple-bar example | |
var text = chart.selectAll(".label") | |
.data(dataByTerm) | |
.enter() | |
.append("text") | |
.attr("class", "label") | |
.attr("x", function(d,i) { | |
return x(d.values[0].semesterYearName) + (x.rangeBand() / 2); | |
} ) | |
.attr("y",function(d) { | |
return y(d.total)-6; | |
}) | |
.attr("text-anchor","middle") | |
.text(function(d){return cformat(d.total);}); | |
d3.selectAll(".x.axis g text").attr("transform","translate(-24,30)rotate(300)"); | |
var legend = chart.selectAll(".legend") | |
.data(rates.reverse()) | |
.enter().append("g") | |
.attr("class", "legend") | |
.attr("transform", function(d, i) { return "translate(0," + ((i * 20) + (height * 0.25)) + ")"; }); | |
legend.append("rect") | |
.attr("x", width + 140) | |
.attr("width", 18) | |
.attr("height", 18) | |
.style("fill", function(d) {return color(d);}); | |
legend.append("text") | |
.attr("x", width + 134) | |
.attr("y", 9) | |
.attr("dy", ".35em") | |
.style("text-anchor", "end") | |
.text(function(d) { return d; }); | |
}); | |
</script> | |
</body> | |
</html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
semesterYearLetter | semesterYearName | applicantTypeCd | yrsToGraduationNbr | count | detailYrsToGraduationNbr | |
---|---|---|---|---|---|---|
2003 D | 2003 Fall | New Freshmen | 2 Yrs or Less | 1 | 2 Yrs or Less | |
2003 D | 2003 Fall | New Freshmen | 2.5 or 3 Yrs | 10 | 2.5 Yrs | |
2003 D | 2003 Fall | New Freshmen | 2.5 or 3 Yrs | 80 | 3 Yrs | |
2003 D | 2003 Fall | New Freshmen | 3.5 or 4 Yrs | 151 | 3.5 Yrs | |
2003 D | 2003 Fall | New Freshmen | 3.5 or 4 Yrs | 2186 | 4 Yrs | |
2003 D | 2003 Fall | New Freshmen | 4.5 or 5 Yrs | 448 | 4.5 Yrs | |
2003 D | 2003 Fall | New Freshmen | 4.5 or 5 Yrs | 328 | 5 Yrs | |
2003 D | 2003 Fall | New Freshmen | 5.5 or 6 Yrs | 52 | 5.5 Yrs | |
2003 D | 2003 Fall | New Freshmen | 5.5 or 6 Yrs | 47 | 6 Yrs | |
2003 D | 2003 Fall | New Freshmen | More Than 6 Yrs | 82 | More than 6 Yrs | |
2003 D | 2003 Fall | New Freshmen | Not Graduated | 278 | Not Graduated | |
2004 D | 2004 Fall | New Freshmen | 2 Yrs or Less | 3 | 2 Yrs or Less | |
2004 D | 2004 Fall | New Freshmen | 2.5 or 3 Yrs | 8 | 2.5 Yrs | |
2004 D | 2004 Fall | New Freshmen | 2.5 or 3 Yrs | 99 | 3 Yrs | |
2004 D | 2004 Fall | New Freshmen | 3.5 or 4 Yrs | 175 | 3.5 Yrs | |
2004 D | 2004 Fall | New Freshmen | 3.5 or 4 Yrs | 2244 | 4 Yrs | |
2004 D | 2004 Fall | New Freshmen | 4.5 or 5 Yrs | 423 | 4.5 Yrs | |
2004 D | 2004 Fall | New Freshmen | 4.5 or 5 Yrs | 305 | 5 Yrs | |
2004 D | 2004 Fall | New Freshmen | 5.5 or 6 Yrs | 45 | 5.5 Yrs | |
2004 D | 2004 Fall | New Freshmen | 5.5 or 6 Yrs | 45 | 6 Yrs | |
2004 D | 2004 Fall | New Freshmen | More Than 6 Yrs | 83 | More than 6 Yrs | |
2004 D | 2004 Fall | New Freshmen | Not Graduated | 244 | Not Graduated | |
2005 D | 2005 Fall | New Freshmen | 2 Yrs or Less | 7 | 2 Yrs or Less | |
2005 D | 2005 Fall | New Freshmen | 2.5 or 3 Yrs | 4 | 2.5 Yrs | |
2005 D | 2005 Fall | New Freshmen | 2.5 or 3 Yrs | 113 | 3 Yrs | |
2005 D | 2005 Fall | New Freshmen | 3.5 or 4 Yrs | 217 | 3.5 Yrs | |
2005 D | 2005 Fall | New Freshmen | 3.5 or 4 Yrs | 2571 | 4 Yrs | |
2005 D | 2005 Fall | New Freshmen | 4.5 or 5 Yrs | 385 | 4.5 Yrs | |
2005 D | 2005 Fall | New Freshmen | 4.5 or 5 Yrs | 301 | 5 Yrs | |
2005 D | 2005 Fall | New Freshmen | 5.5 or 6 Yrs | 55 | 5.5 Yrs | |
2005 D | 2005 Fall | New Freshmen | 5.5 or 6 Yrs | 57 | 6 Yrs | |
2005 D | 2005 Fall | New Freshmen | More Than 6 Yrs | 79 | More than 6 Yrs | |
2005 D | 2005 Fall | New Freshmen | Not Graduated | 313 | Not Graduated | |
2006 D | 2006 Fall | New Freshmen | 2 Yrs or Less | 7 | 2 Yrs or Less | |
2006 D | 2006 Fall | New Freshmen | 2.5 or 3 Yrs | 4 | 2.5 Yrs | |
2006 D | 2006 Fall | New Freshmen | 2.5 or 3 Yrs | 108 | 3 Yrs | |
2006 D | 2006 Fall | New Freshmen | 3.5 or 4 Yrs | 191 | 3.5 Yrs | |
2006 D | 2006 Fall | New Freshmen | 3.5 or 4 Yrs | 2647 | 4 Yrs | |
2006 D | 2006 Fall | New Freshmen | 4.5 or 5 Yrs | 429 | 4.5 Yrs | |
2006 D | 2006 Fall | New Freshmen | 4.5 or 5 Yrs | 285 | 5 Yrs | |
2006 D | 2006 Fall | New Freshmen | 5.5 or 6 Yrs | 52 | 5.5 Yrs | |
2006 D | 2006 Fall | New Freshmen | 5.5 or 6 Yrs | 54 | 6 Yrs | |
2006 D | 2006 Fall | New Freshmen | More Than 6 Yrs | 69 | More than 6 Yrs | |
2006 D | 2006 Fall | New Freshmen | Not Graduated | 319 | Not Graduated | |
2007 D | 2007 Fall | New Freshmen | 2 Yrs or Less | 10 | 2 Yrs or Less | |
2007 D | 2007 Fall | New Freshmen | 2.5 or 3 Yrs | 6 | 2.5 Yrs | |
2007 D | 2007 Fall | New Freshmen | 2.5 or 3 Yrs | 125 | 3 Yrs | |
2007 D | 2007 Fall | New Freshmen | 3.5 or 4 Yrs | 212 | 3.5 Yrs | |
2007 D | 2007 Fall | New Freshmen | 3.5 or 4 Yrs | 2698 | 4 Yrs | |
2007 D | 2007 Fall | New Freshmen | 4.5 or 5 Yrs | 417 | 4.5 Yrs | |
2007 D | 2007 Fall | New Freshmen | 4.5 or 5 Yrs | 277 | 5 Yrs | |
2007 D | 2007 Fall | New Freshmen | 5.5 or 6 Yrs | 47 | 5.5 Yrs | |
2007 D | 2007 Fall | New Freshmen | 5.5 or 6 Yrs | 55 | 6 Yrs | |
2007 D | 2007 Fall | New Freshmen | More Than 6 Yrs | 38 | More than 6 Yrs | |
2007 D | 2007 Fall | New Freshmen | Not Graduated | 341 | Not Graduated | |
2008 D | 2008 Fall | New Freshmen | 2 Yrs or Less | 11 | 2 Yrs or Less | |
2008 D | 2008 Fall | New Freshmen | 2.5 or 3 Yrs | 7 | 2.5 Yrs | |
2008 D | 2008 Fall | New Freshmen | 2.5 or 3 Yrs | 131 | 3 Yrs | |
2008 D | 2008 Fall | New Freshmen | 3.5 or 4 Yrs | 231 | 3.5 Yrs | |
2008 D | 2008 Fall | New Freshmen | 3.5 or 4 Yrs | 2675 | 4 Yrs | |
2008 D | 2008 Fall | New Freshmen | 4.5 or 5 Yrs | 414 | 4.5 Yrs | |
2008 D | 2008 Fall | New Freshmen | 4.5 or 5 Yrs | 289 | 5 Yrs | |
2008 D | 2008 Fall | New Freshmen | 5.5 or 6 Yrs | 50 | 5.5 Yrs | |
2008 D | 2008 Fall | New Freshmen | 5.5 or 6 Yrs | 58 | 6 Yrs | |
2008 D | 2008 Fall | New Freshmen | More Than 6 Yrs | 0 | More than 6 Yrs | |
2008 D | 2008 Fall | New Freshmen | Not Graduated | 397 | Not Graduated | |
2009 D | 2009 Fall | New Freshmen | 2 Yrs or Less | 5 | 2 Yrs or Less | |
2009 D | 2009 Fall | New Freshmen | 2.5 or 3 Yrs | 6 | 2.5 Yrs | |
2009 D | 2009 Fall | New Freshmen | 2.5 or 3 Yrs | 144 | 3 Yrs | |
2009 D | 2009 Fall | New Freshmen | 3.5 or 4 Yrs | 232 | 3.5 Yrs | |
2009 D | 2009 Fall | New Freshmen | 3.5 or 4 Yrs | 2799 | 4 Yrs | |
2009 D | 2009 Fall | New Freshmen | 4.5 or 5 Yrs | 406 | 4.5 Yrs | |
2009 D | 2009 Fall | New Freshmen | 4.5 or 5 Yrs | 276 | 5 Yrs | |
2009 D | 2009 Fall | New Freshmen | 5.5 or 6 Yrs | 0 | 5.5 Yrs | |
2009 D | 2009 Fall | New Freshmen | 5.5 or 6 Yrs | 0 | 6 Yrs | |
2009 D | 2009 Fall | New Freshmen | More Than 6 Yrs | 0 | More than 6 Yrs | |
2009 D | 2009 Fall | New Freshmen | Not Graduated | 487 | Not Graduated | |
2010 D | 2010 Fall | New Freshmen | 2 Yrs or Less | 4 | 2 Yrs or Less | |
2010 D | 2010 Fall | New Freshmen | 2.5 or 3 Yrs | 10 | 2.5 Yrs | |
2010 D | 2010 Fall | New Freshmen | 2.5 or 3 Yrs | 152 | 3 Yrs | |
2010 D | 2010 Fall | New Freshmen | 3.5 or 4 Yrs | 259 | 3.5 Yrs | |
2010 D | 2010 Fall | New Freshmen | 3.5 or 4 Yrs | 2697 | 4 Yrs | |
2010 D | 2010 Fall | New Freshmen | 4.5 or 5 Yrs | 0 | 4.5 Yrs | |
2010 D | 2010 Fall | New Freshmen | 4.5 or 5 Yrs | 0 | 5 Yrs | |
2010 D | 2010 Fall | New Freshmen | 5.5 or 6 Yrs | 0 | 5.5 Yrs | |
2010 D | 2010 Fall | New Freshmen | 5.5 or 6 Yrs | 0 | 6 Yrs | |
2010 D | 2010 Fall | New Freshmen | More Than 6 Yrs | 0 | More than 6 Yrs | |
2010 D | 2010 Fall | New Freshmen | Not Graduated | 990 | Not Graduated | |
2011 D | 2011 Fall | New Freshmen | 2 Yrs or Less | 6 | 2 Yrs or Less | |
2011 D | 2011 Fall | New Freshmen | 2.5 or 3 Yrs | 15 | 2.5 Yrs | |
2011 D | 2011 Fall | New Freshmen | 2.5 or 3 Yrs | 178 | 3 Yrs | |
2011 D | 2011 Fall | New Freshmen | 3.5 or 4 Yrs | 0 | 3.5 Yrs | |
2011 D | 2011 Fall | New Freshmen | 3.5 or 4 Yrs | 0 | 4 Yrs | |
2011 D | 2011 Fall | New Freshmen | 4.5 or 5 Yrs | 0 | 4.5 Yrs | |
2011 D | 2011 Fall | New Freshmen | 4.5 or 5 Yrs | 0 | 5 Yrs | |
2011 D | 2011 Fall | New Freshmen | 5.5 or 6 Yrs | 0 | 5.5 Yrs | |
2011 D | 2011 Fall | New Freshmen | 5.5 or 6 Yrs | 0 | 6 Yrs | |
2011 D | 2011 Fall | New Freshmen | More Than 6 Yrs | 0 | More than 6 Yrs | |
2011 D | 2011 Fall | New Freshmen | Not Graduated | 4250 | Not Graduated | |
2012 D | 2012 Fall | New Freshmen | 2 Yrs or Less | 11 | 2 Yrs or Less | |
2012 D | 2012 Fall | New Freshmen | 2.5 or 3 Yrs | 0 | 2.5 Yrs | |
2012 D | 2012 Fall | New Freshmen | 2.5 or 3 Yrs | 0 | 3 Yrs | |
2012 D | 2012 Fall | New Freshmen | 3.5 or 4 Yrs | 0 | 3.5 Yrs | |
2012 D | 2012 Fall | New Freshmen | 3.5 or 4 Yrs | 0 | 4 Yrs | |
2012 D | 2012 Fall | New Freshmen | 4.5 or 5 Yrs | 0 | 4.5 Yrs | |
2012 D | 2012 Fall | New Freshmen | 4.5 or 5 Yrs | 0 | 5 Yrs | |
2012 D | 2012 Fall | New Freshmen | 5.5 or 6 Yrs | 0 | 5.5 Yrs | |
2012 D | 2012 Fall | New Freshmen | 5.5 or 6 Yrs | 0 | 6 Yrs | |
2012 D | 2012 Fall | New Freshmen | More Than 6 Yrs | 0 | More than 6 Yrs | |
2012 D | 2012 Fall | New Freshmen | Not Graduated | 4162 | Not Graduated | |
2013 D | 2013 Fall | New Freshmen | 2 Yrs or Less | 0 | 2 Yrs or Less | |
2013 D | 2013 Fall | New Freshmen | 2.5 or 3 Yrs | 0 | 2.5 Yrs | |
2013 D | 2013 Fall | New Freshmen | 2.5 or 3 Yrs | 0 | 3 Yrs | |
2013 D | 2013 Fall | New Freshmen | 3.5 or 4 Yrs | 0 | 3.5 Yrs | |
2013 D | 2013 Fall | New Freshmen | 3.5 or 4 Yrs | 0 | 4 Yrs | |
2013 D | 2013 Fall | New Freshmen | 4.5 or 5 Yrs | 0 | 4.5 Yrs | |
2013 D | 2013 Fall | New Freshmen | 4.5 or 5 Yrs | 0 | 5 Yrs | |
2013 D | 2013 Fall | New Freshmen | 5.5 or 6 Yrs | 0 | 5.5 Yrs | |
2013 D | 2013 Fall | New Freshmen | 5.5 or 6 Yrs | 0 | 6 Yrs | |
2013 D | 2013 Fall | New Freshmen | More Than 6 Yrs | 0 | More than 6 Yrs | |
2013 D | 2013 Fall | New Freshmen | Not Graduated | 4713 | Not Graduated | |
2014 D | 2014 Fall | New Freshmen | 2 Yrs or Less | 0 | 2 Yrs or Less | |
2014 D | 2014 Fall | New Freshmen | 2.5 or 3 Yrs | 0 | 2.5 Yrs | |
2014 D | 2014 Fall | New Freshmen | 2.5 or 3 Yrs | 0 | 3 Yrs | |
2014 D | 2014 Fall | New Freshmen | 3.5 or 4 Yrs | 0 | 3.5 Yrs | |
2014 D | 2014 Fall | New Freshmen | 3.5 or 4 Yrs | 0 | 4 Yrs | |
2014 D | 2014 Fall | New Freshmen | 4.5 or 5 Yrs | 0 | 4.5 Yrs | |
2014 D | 2014 Fall | New Freshmen | 4.5 or 5 Yrs | 0 | 5 Yrs | |
2014 D | 2014 Fall | New Freshmen | 5.5 or 6 Yrs | 0 | 5.5 Yrs | |
2014 D | 2014 Fall | New Freshmen | 5.5 or 6 Yrs | 0 | 6 Yrs | |
2014 D | 2014 Fall | New Freshmen | More Than 6 Yrs | 0 | More than 6 Yrs | |
2014 D | 2014 Fall | New Freshmen | Not Graduated | 5474 | Not Graduated |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment