Skip to content

Instantly share code, notes, and snippets.

@CafeConVega
Last active March 22, 2016 02:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save CafeConVega/6e52b8c5f8dd6b946c3d to your computer and use it in GitHub Desktop.
Save CafeConVega/6e52b8c5f8dd6b946c3d to your computer and use it in GitHub Desktop.
Week 9 - Stacked Transition
h1,
h2 {
font-family: 'Graduate', cursive;
text-align: center;
text-transform: uppercase;
}
p {
font-family: 'Roboto', sans-serif;
text-align: center;
}
text {
font-family: 'Roboto', sans-serif;
font-size: .9em;
}
svg {
display: flex;
margin-left: auto;
margin-right: auto;
}
.tick,
.xlabel,
.ylabel {
font-family: 'Roboto', sans-serif;
fill: grey;
}
.domain {
display: none;
}
.axis path,
.axis line {
fill: none;
stroke: black;
stroke-width: 1px;
}
.axis text {
font-family: sans-serif;
font-size: 11px;
}
.tooltip {
position: absolute;
z-index: 10;
}
.tooltip p {
/* background-color: white;*/
color: white;
border: none;
padding: 2px;
}
.buttons {
display: flex;
flex-direction: row;
justify-content: center;
padding: 20px;
}
#chart {
overflow-x: auto;
}
.y.axis{
display: none;
}
.label{
font-size: 18px;
font-weight: 600;
}
.clicker {
-moz-box-shadow:inset 0px 1px 0px 0px #ffffff;
-webkit-box-shadow:inset 0px 1px 0px 0px #ffffff;
box-shadow:inset 0px 1px 0px 0px #ffffff;
background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #ededed), color-stop(1, #dfdfdf));
background:-moz-linear-gradient(top, #ededed 5%, #dfdfdf 100%);
background:-webkit-linear-gradient(top, #ededed 5%, #dfdfdf 100%);
background:-o-linear-gradient(top, #ededed 5%, #dfdfdf 100%);
background:-ms-linear-gradient(top, #ededed 5%, #dfdfdf 100%);
background:linear-gradient(to bottom, #ededed 5%, #dfdfdf 100%);
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ededed', endColorstr='#dfdfdf',GradientType=0);
background-color:#ededed;
-moz-border-radius:6px;
-webkit-border-radius:6px;
border-radius:6px;
border:1px solid #dcdcdc;
display:inline-block;
cursor:pointer;
color:#777777;
font-family:Arial;
font-size:15px;
font-weight:bold;
padding:6px 24px;
text-decoration:none;
text-shadow:0px 1px 0px #ffffff;
}
.clicker:hover {
background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #dfdfdf), color-stop(1, #ededed));
background:-moz-linear-gradient(top, #dfdfdf 5%, #ededed 100%);
background:-webkit-linear-gradient(top, #dfdfdf 5%, #ededed 100%);
background:-o-linear-gradient(top, #dfdfdf 5%, #ededed 100%);
background:-ms-linear-gradient(top, #dfdfdf 5%, #ededed 100%);
background:linear-gradient(to bottom, #dfdfdf 5%, #ededed 100%);
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#dfdfdf', endColorstr='#ededed',GradientType=0);
background-color:#dfdfdf;
}
.clicker:active {
position:relative;
top:1px;
}
.selected {
-moz-box-shadow:inset 0px 1px 0px 0px #bbdaf7;
-webkit-box-shadow:inset 0px 1px 0px 0px #bbdaf7;
box-shadow:inset 0px 1px 0px 0px #bbdaf7;
background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #79bbff), color-stop(1, #378de5));
background:-moz-linear-gradient(top, #79bbff 5%, #378de5 100%);
background:-webkit-linear-gradient(top, #79bbff 5%, #378de5 100%);
background:-o-linear-gradient(top, #79bbff 5%, #378de5 100%);
background:-ms-linear-gradient(top, #79bbff 5%, #378de5 100%);
background:linear-gradient(to bottom, #79bbff 5%, #378de5 100%);
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#79bbff', endColorstr='#378de5',GradientType=0);
background-color:#79bbff;
-moz-border-radius:6px;
-webkit-border-radius:6px;
border-radius:6px;
border:1px solid #84bbf3;
display:inline-block;
cursor:pointer;
color:#ffffff;
font-family:Arial;
font-size:15px;
font-weight:bold;
padding:6px 24px;
text-decoration:none;
text-shadow:0px 1px 0px #528ecc;
}
.selected:hover {
background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #378de5), color-stop(1, #79bbff));
background:-moz-linear-gradient(top, #378de5 5%, #79bbff 100%);
background:-webkit-linear-gradient(top, #378de5 5%, #79bbff 100%);
background:-o-linear-gradient(top, #378de5 5%, #79bbff 100%);
background:-ms-linear-gradient(top, #378de5 5%, #79bbff 100%);
background:linear-gradient(to bottom, #378de5 5%, #79bbff 100%);
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#378de5', endColorstr='#79bbff',GradientType=0);
background-color:#378de5;
}
.selected:active {
position:relative;
top:1px;
}
/*
button styles from http://www.bestcssbuttongenerator.com/
*/
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>NFL Historical Winning Percentages</title>
<script type="text/javascript" src="http://cdnjs.cloudflare.com/ajax/libs/d3/3.5.6/d3.min.js"></script>
<script type="text/javascript" src="https://code.jquery.com/jquery-1.12.0.min.js"></script>
<link href="custom.css" rel="stylesheet" type="text/css" />
<link href='https://fonts.googleapis.com/css?family=Graduate|Roboto' rel='stylesheet' type='text/css'>
</head>
<body>
<h1>NFL Historical Winning Percentages</h1>
<h2></h2>
<p>Source: <a href="https://sites.google.com/site/rodswebpages/codes" target="_blank">Rod's Sports Economics</a></p>
<p>This graph represents NFL team regular season winning percentages over time. The thicker the line, the more games were won. Hover over a dot to get more information. Use the buttons below to toggle between a stream graph or a stacked area graph.</p>
<div class="buttons">
<button class="clicker" id="stream">Stream</button>
<button class="clicker" id="stacked">Area</button>
</div>
<div id="chart"></div>
<script type="text/javascript">
var originaldata;
var formatDate = d3.time.format("%Y");
var colorScale = d3.scale.category20b();
var fullheight = 1050, fullwidth = 1200;
var margin = {top: 20, right: 30, bottom: 40, left: 60},
width = fullwidth - margin.left - margin.right,
height = fullheight - margin.top - margin.bottom;
var xScale = d3.time.scale()
.range([0, width]);
var yScale = d3.scale.linear()
.range([height, 0]);
var xAxis = d3.svg.axis()
.scale(xScale)
.orient("bottom")
.ticks(10);
var yAxis = d3.svg.axis()
.scale(yScale)
.orient("left");
var stack = d3.layout.stack()
.offset("zero") // try "silhouette" next, that's a streamgraph!
//.order("inside-out") // try this and see what you think
.values(function(d) { return d.values; })
.x(function(d) { return formatDate.parse(d.year);})
.y(function(d) { return d.win; });
var stream = d3.layout.stack()
.offset("silhouette") // try "silhouette" next, that's a streamgraph!
//.order("inside-out") // try this and see what you think
.values(function(d) { return d.values; })
.x(function(d) { return formatDate.parse(d.year);})
.y(function(d) { return d.win; });
// exactly the same except for offset:
// what's another way we can DRY this out? how about just updating the "offset" when we do the redraw below...
var area = d3.svg.area()
.interpolate("cardinal")
.x(function(d) { return xScale(formatDate.parse(d.year)); })
.y0(function(d) { return yScale(d.y0); })
.y1(function(d) { return yScale(d.y0 + d.y); });
var tooltip = d3.select("body")
.append("div")
.attr("class", "tooltip");
var svg = d3.select("#chart").append("svg")
.attr("width", fullwidth)
.attr("height", fullheight)
.append("g")
.attr("transform", "translate(" + margin.left + "," + margin.top + ")");
var team_data = [];
var radius = 4;
var layers;
var time = 800;
//Load in contents of CSV file
d3.csv("nflwinningpercentage.csv", setup);
function setup(error, data) {
if (error) { console.log(error) };
originaldata = data; // assign to a global so i can use it in other function
console.log("data", data);
var years = d3.keys(data[0]).slice(0, 94);
console.log("years",years);
data.forEach(function(d){
years.forEach(function (y) {
if (d[y]) {
team_data.push({
team: d.team,
location: d.location,
name: d.nickname,
year: y,
win: +d[y],
hex: d.hex,
id: d.team_nospace
});
}
});//end years foreach
});//end data foreach
console.log("team data",team_data);
var dataset = d3.nest()
.key(function(d) {
return d.team;})
.sortKeys(d3.descending) // alphabetic order from top layer
.sortValues(function (a, b) { return formatDate.parse(a.year) - formatDate.parse(b.year)})
.entries(team_data);
console.log("dataset",dataset);
d3.selectAll("button").on("click", function() {
var method = d3.select(this).attr("id"); // this is stream or stacked
d3.selectAll("button").classed("selected", false);
d3.select(this).classed("selected", true);
redraw(dataset, method);
});
// default first view: create the axes, so you transition them in the redraw.
svg.append("g")
.attr("class", "x axis")
.attr("transform", "translate(0," + height + ")")
.call(xAxis);
svg.append("g")
.attr("class", "x axis")
.attr("transform", "translate(0,0)")
.call(xAxis);
svg.append("g")
.attr("class", "y axis")
.call(yAxis);
svg.append("text")
.attr("class", "xlabel")
.attr("transform", "translate(" + (width / 2) + " ," +
(height + 20) + ")")
.style("text-anchor", "middle")
.attr("dy", "12")
.text("Year");
svg.append("text")
.attr("class", "xlabel")
.attr("transform", "translate(" + (width / 2) + " ,-20)")
.style("text-anchor", "middle")
.attr("dy", "12")
.text("Year");
redraw(dataset, "stream"); // method is either stacked or stream
d3.select("#stream").classed("selected", true);
}
function redraw(dataset, method) {
if (method == "stacked") {
layers = stack(dataset); // this operation also modifies the dataset
} else {
layers = stream(dataset); // this operation also modifies the dataset
}
console.log("layers", layers);
// reset these AFTER doing the layer stacking.
xScale.domain(d3.extent(team_data, function(d) { return formatDate.parse(d.year); }));
yScale.domain([0, d3.max(team_data, function(d) { return (d.y0 + d.y)*1.1; })]);
var layers = svg.selectAll(".layer")
.data(layers, function(d) {return d.key});
var circles = svg.selectAll("circle")
.data(team_data);
layers.enter().append("path")
.attr("class", "layer");
circles.enter()
.append("circle")
.attr("class", "circle");
layers.transition().duration(2000)
.attr("d", function(d) { return area(d.values); })
.attr("id", function(d,i){return d.values[i].id})
.style("fill", function(d,i) { return d.values[i].hex; });
circles.transition().duration(2000)
.attr("cx", function(d) {
return xScale(formatDate.parse(d.year));
})
.attr("cy", function(d) {
return yScale(d.y0);
})
.attr("r", 0)
.attr("fill", function(d) {
return d.hex;
})
.attr("id", function (d) { return d.id;})
.attr("stroke", "#FFFFFF")
.style("display", function (d) {if (d.win === 0) {return "none";}});
svg.append("text")
.attr("transform", "translate(" + xScale(formatDate.parse("1955")) + "," + yScale(14) + ")")
.attr("dy", ".35em")
.attr("text-anchor", "start")
.attr("class", "label")
.text("1969 NFL-AFL Merger");
layers.exit().remove();
circles.exit().remove();
// transition your axes.
d3.selectAll(".x.axis").transition().call(xAxis);
d3.select(".y.axis").transition().call(yAxis); // there is no visible change actually
d3.selectAll(".layer")
.on("mouseover", pathmouseoverFunc)
.on("mouseout", pathmouseoutFunc)
.on("mousemove", pathmousemoveFunc);
d3.selectAll("circle")
.on("mouseover", cirmouseoverFunc)
.on("mouseout", cirmouseoutFunc)
.on("mousemove", cirmousemoveFunc);
function pathmouseoverFunc(d) {
var key= "#"+d3.select(this).attr("id");
//Turn all paths gray
layers.transition().duration(time)
.style("fill","#E6E6E6" );
//Color the selected path
d3.select(this)
.transition()
.duration(100)
.style("fill", function(d,i) { return d.values[i].hex; });
//Add dots associated with selected path
d3.selectAll(".circle"+key).transition().duration(time).attr("r", radius);
//Show tooltip
tooltip
.style("display", null) // this removes the display none setting from it
.style("background", "#ABABAB")
.html("<p>"+ d.key +"</p>");
}
function pathmousemoveFunc(d) {
tooltip
.style("top", (d3.event.pageY - 10) + "px" )
.style("left", (d3.event.pageX + 10) + "px");
}
function pathmouseoutFunc(d) {
//Re-color all paths
layers.transition().duration(time)
.style("fill", function(d,i) { return d.values[i].hex; });
//Remove all dots
d3.selectAll(".circle").transition().duration(50).attr("r", 0);
//Remove tooltip
tooltip
.style("display", "none"); // this sets it to invisible!
}
function cirmouseoverFunc(d) {
var key = "#"+d3.select(this).attr("id");
var color = d3.select(this).attr("fill");
console.log("test", color);
//Increase its size
d3.select(this)
.transition()
.duration(50)
.attr("r", 6);
//Turn all paths gray
d3.selectAll(".layer").transition().duration(time)
.style("fill","#E6E6E6" );
//Color selected dot's layer
d3.selectAll(key)
.transition()
.duration(time)
.style("fill", color);
//Show tooltip
tooltip
.style("display", null) // this removes the display none setting from it
.style("background", d.hex)
.html("<p>" + d.team +
"<br>Year: " + d.year +
"<br>Winning %: " + Math.round(d.win*100) + "%</p>");
}
function cirmousemoveFunc(d) {
tooltip
.style("top", (d3.event.pageY - 10) + "px" )
.style("left", (d3.event.pageX + 10) + "px");
}
function cirmouseoutFunc(d) {
// shrink it back down:
d3.select(this)
.transition()
.duration(50)
.attr("r", 0);
//Re-color all layers
d3.selectAll(".layer").transition().duration(time)
.style("fill", function(d,i) { return d.values[i].hex; });
tooltip
.style("display", "none"); // this sets it to invisible!
}
} // end redraw
</script>
</body>
</html>
team location nickname hex team_nospace 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015
Akron Indians Akron Indians #00338D AkronIndians 0.375 0.125 0.25 0.667 0.2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Arizona Cardinals Arizona Cardinals #97233F ArizonaCardinals 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.437 0.312 0.312 0.25 0.25 0.437 0.5 0.25 0.437 0.25 0.562 0.375 0.187 0.438 0.312 0.25 0.375 0.313 0.312 0.5 0.563 0.625 0.313 0.5 0.313 0.625 0.688 0.813
Atlanta Falcons Atlanta Falcons #000000 AtlantaFalcons 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.214 0.077 0.142 0.429 0.333 0.538 0.5 0.643 0.214 0.286 0.285 0.5 0.562 0.375 0.75 0.437 0.556 0.437 0.25 0.25 0.469 0.2 0.312 0.187 0.312 0.625 0.375 0.375 0.437 0.562 0.187 0.437 0.875 0.312 0.25 0.438 0.594 0.312 0.688 0.5 0.438 0.25 0.688 0.563 0.813 0.625 0.813 0.25 0.375 0.5
Baltimore Ravens Baltimore Ravens #241773 BaltimoreRavens 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0.375 0.375 0.5 0.75 0.625 0.438 0.625 0.562 0.375 0.812 0.313 0.688 0.563 0.75 0.75 0.625 0.5 0.625 0.313
Baltimore Colts Baltimore Colts #002C5F BaltimoreColts 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.083 0 0 0.25 0.25 0.455 0.417 0.583 0.75 0.75 0.5 0.571 0.5 0.571 0.857 0.769 0.643 0.917 0.929 0.615 0.846 0.714 0.357 0.286 0.142 0.714 0.786 0.714 0.312 0.312 0.437 0.125 0.056 0.437 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Brooklyn Dodgers Brooklyn Dodgers #00693E BrooklynDodgers 0.571 0.143 0.25 0 0.2 0.143 0 0 0.636 0.143 0.25 0.556 0.364 0.455 0.273 0.3 0.5 0.4 0.727 0.636 0.273 0.2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Boston Yankees Boston Yankees #FFCC00 BostonYankees 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.2 0.333 0.2 0.364 0.25 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Boston Bulldogs Boston Bulldogs #000080 BostonBulldogs 0 0 0 0.833 0.833 0.385 0.2 0.5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Buffalo Rangers Buffalo Rangers #FF7F00 BuffaloRangers 0.556 0.556 0.545 0.143 0.5 0 0 0.125 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Buffalo Bills Buffalo Bills #00338D BuffaloBills 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.231 0.071 0.321 0.643 0.643 0.571 0.142 0.214 0.312 0.437 0.687 0.625 0.444 0.5 0.125 0.125 0.25 0.467 0.75 0.562 0.812 0.812 0.687 0.75 0.437 0.625 0.625 0.375 0.625 0.687 0.5 0.188 0.5 0.375 0.562 0.313 0.438 0.438 0.438 0.375 0.25 0.375 0.375 0.375 0.563 0.5
Canton Bulldogs Canton Bulldogs #800000 CantonBulldogs 1 1 0 0.5 0.1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Carolina Panthers Carolina Panthers #0085CA CarolinaPanthers 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.437 0.75 0.437 0.25 0.5 0.437 0.062 0.438 0.688 0.438 0.688 0.5 0.438 0.75 0.5 0.125 0.375 0.438 0.75 0.469 0.938
Chicago Bears Chicago Bears #C83803 ChicagoBears 0.75 0.818 0.857 0.643 0.923 0.75 0.583 0.308 0.692 0.615 0.875 0.833 1 0.6 0.75 0.9 0.545 0.727 0.727 0.909 1 0.88 0.667 0.3 0.8 0.667 0.833 0.75 0.75 0.583 0.417 0.273 0.667 0.667 0.818 0.417 0.667 0.667 0.455 0.571 0.643 0.917 0.357 0.643 0.417 0.538 0.5 0.071 0.429 0.429 0.321 0.214 0.286 0.286 0.5 0.643 0.437 0.625 0.437 0.375 0.333 0.5 0.625 0.937 0.875 0.733 0.75 0.375 0.687 0.687 0.312 0.437 0.562 0.562 0.437 0.25 0.25 0.375 0.312 0.812 0.25 0.438 0.312 0.688 0.812 0.438 0.563 0.438 0.688 0.5 0.625 0.5 0.313 0.375
Chicago Cardinals Chicago Cardinals #6C243A ChicagoCardinals 0.727 0.667 0.556 0.846 0.455 0.3 0.167 0.5 0.455 0.555 0.25 0.1 0.455 0.6 0.273 0.5 0.182 0.091 0.222 0.3 0.273 0 0 0.1 0.545 0.75 0.917 0.545 0.417 0.25 0.333 0.091 0.167 0.364 0.583 0.25 0.182 0.167 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Chicago Tigers Chicago Tigers #000000 ChicagoTigers 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Cincinnati Bengals Cincinnati Bengals #000000 CincinnatiBengals 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.571 0.286 0.571 0.714 0.5 0.786 0.714 0.571 0.25 0.25 0.375 0.75 0.778 0.437 0.5 0.437 0.625 0.267 0.75 0.5 0.562 0.187 0.312 0.187 0.187 0.437 0.5 0.437 0.187 0.25 0.25 0.375 0.125 0.5 0.5 0.688 0.5 0.438 0.281 0.625 0.25 0.563 0.625 0.688 0.656 0.75
Cincinnati Celts Cincinnati Celts #EEDC82 CincinnatiCelts 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Cleveland Browns Cleveland Browns #FB4F14 ClevelandBrowns 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.833 0.917 0.667 0.917 0.75 0.818 0.417 0.818 0.75 0.583 0.727 0.615 0.538 0.714 0.769 0.786 0.643 0.643 0.714 0.769 0.5 0.643 0.714 0.571 0.286 0.214 0.643 0.428 0.5 0.562 0.687 0.312 0.444 0.562 0.312 0.5 0.75 0.667 0.625 0.594 0.187 0.375 0.437 0.437 0.687 0.312 0 0 0 0.125 0.187 0.438 0.562 0.312 0.25 0.375 0.25 0.625 0.25 0.313 0.313 0.25 0.313 0.25 0.438 0.188
Cleveland Bulldogs Cleveland Bulldogs #800000 ClevelandBulldogs 0 0.75 0.875 0.385 0 0.667 0 0 0 0.2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Cleveland Rams Cleveland Rams #B20032 ClevelandRams 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.091 0.363 0.5 0.4 0.182 0.455 0 0.4 0.9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Cleveland Tigers Cleveland Tigers #CF1020 ClevelandTigers 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Columbus Tigers Columbus Tigers #000000 ColumbusTigers 0 0.555 0.5 0 0.143 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Dallas Cowboys Dallas Cowboys #002244 DallasCowboys 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.308 0.385 0.286 0.385 0.5 0.769 0.643 0.857 0.786 0.714 0.786 0.714 0.714 0.571 0.714 0.786 0.857 0.75 0.687 0.75 0.75 0.667 0.75 0.562 0.625 0.437 0.467 0.187 0.062 0.437 0.687 0.812 0.75 0.75 0.75 0.625 0.375 0.625 0.5 0.312 0.312 0.312 0.625 0.375 0.563 0.562 0.813 0.563 0.688 0.375 0.5 0.5 0.5 0.75 0.25
Dallas Texans Dallas Texans #00205B DallasTexans 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.083 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Denver Broncos Denver Broncos #FB4F14 DenverBroncos 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.385 0.307 0.357 0.571 0.536 0.429 0.643 0.857 0.625 0.625 0.5 0.625 0.222 0.562 0.812 0.687 0.687 0.7 0.5 0.687 0.312 0.75 0.5 0.562 0.437 0.5 0.812 0.75 0.875 0.375 0.687 0.5 0.562 0.625 0.625 0.813 0.562 0.438 0.5 0.5 0.25 0.5 0.813 0.813 0.75 0.75
Detroit Lions Detroit Lions #005A8B DetroitLions 0 0 0 0 0 0 0 0 0.455 0.786 0.75 0.545 0.769 0.7 0.667 0.636 0.636 0.545 0.5 0.4 0 0.333 0.667 0.7 0.091 0.25 0.167 0.333 0.5 0.636 0.75 0.833 0.818 0.25 0.75 0.667 0.364 0.273 0.583 0.615 0.786 0.385 0.583 0.463 0.308 0.417 0.333 0.692 0.714 0.538 0.607 0.464 0.5 0.5 0.428 0.429 0.437 0.125 0.562 0.5 0.444 0.562 0.281 0.437 0.312 0.267 0.25 0.437 0.375 0.75 0.312 0.625 0.562 0.625 0.312 0.562 0.312 0.5 0.562 0.125 0.188 0.312 0.375 0.313 0.188 0.438 0 0.125 0.375 0.625 0.25 0.438 0.688 0.438
Detroit Heralds Detroit Heralds #C80815 DetroitHeralds 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Detroit Panthers Detroit Panthers #FFB612 DetroitPanthers 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Detroit Wolverines Detroit Wolverines #ABABAB DetroitWolverines 0 0 0 0.8 0.4 0 0.778 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Evansville Crimson Giants Evansville Crimson Giants #8B0000 EvansvilleCrimsonGiants 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Green Bay Packers Green Bay Packers #203731 GreenBayPackers 0.571 0.778 0.636 0.615 0.7 0.778 0.6 1 0.769 0.857 0.769 0.417 0.538 0.667 0.909 0.636 0.727 0.818 0.6 0.909 0.8 0.778 0.8 0.6 0.545 0.545 0.25 0.167 0.25 0.25 0.5 0.181 0.333 0.5 0.333 0.25 0.091 0.583 0.667 0.786 0.929 0.846 0.615 0.769 0.857 0.692 0.462 0.571 0.429 0.333 0.714 0.429 0.429 0.286 0.357 0.286 0.531 0.312 0.344 0.5 0.611 0.5 0.5 0.5 0.25 0.367 0.25 0.625 0.375 0.25 0.562 0.562 0.562 0.687 0.812 0.812 0.687 0.5 0.562 0.75 0.75 0.625 0.625 0.25 0.5 0.813 0.375 0.688 0.625 0.938 0.688 0.531 0.75 0.625
Hammond Pros Hammond Pros #3B0160 HammondPros 0 0.167 0 0.2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Hartford Blues Hartford Blues #0000FF HartfordBlues 0 0 0 0 0.3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Houston Oilers Houston Oilers #4B92DB HoustonOilers 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.231 0.308 0.071 0.071 0.5 0.714 0.357 0.571 0.625 0.687 0.687 0.437 0.111 0.125 0.187 0.312 0.312 0.6 0.625 0.562 0.562 0.687 0.625 0.75 0.125 0.437 0.5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Houston Texans Houston Texans #A71930 HoustonTexans 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0.312 0.438 0.125 0.375 0.5 0.5 0.563 0.375 0.625 0.75 0.125 0.563 0.563
Indianapolis Colts Indianapolis Colts #002C5F IndianapolisColts 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0.312 0.187 0.6 0.562 0.5 0.437 0.062 0.562 0.25 0.5 0.562 0.562 0.187 0.187 0.812 0.625 0.375 0.625 0.75 0.75 0.875 0.75 0.813 0.75 0.875 0.625 0.125 0.688 0.688 0.688 0.5
Jacksonville Jaguars Jacksonville Jaguars #9F792C JacksonvilleJaguars 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0.562 0.687 0.687 0.875 0.437 0.375 0.375 0.312 0.562 0.75 0.5 0.688 0.313 0.438 0.5 0.313 0.125 0.25 0.188 0.313
Kansas City Chiefs Kansas City Chiefs #E31837 KansasCityChiefs 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.583 0.769 0.571 0.571 0.357 0.357 0.357 0.142 0.25 0.437 0.5 0.562 0.333 0.375 0.5 0.375 0.625 0.267 0.281 0.531 0.687 0.625 0.625 0.687 0.562 0.812 0.562 0.812 0.437 0.562 0.437 0.375 0.5 0.812 0.438 0.625 0.562 0.25 0.125 0.25 0.625 0.438 0.125 0.688 0.563 0.688
Kansas City Cowboys Kansas City Cowboys #000000 KansasCityCowboys 0 0 0.222 0.286 0.727 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Kenosha Maroons Kenosha Maroons #800000 KenoshaMaroons 0.714 0.5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Los Angeles Buccaneers Los Angeles Buccaneers #F03A16 LosAngelesBuccaneers 0 0 0 0 0.667 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Los Angeles Raiders Los Angeles Raiders #000000 LosAngelesRaiders 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.889 0.75 0.687 0.75 0.5 0.333 0.437 0.5 0.75 0.562 0.437 0.625 0.562 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Los Angeles Rams Los Angeles Rams #B3995D LosAngelesRams 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.6 0.5 0.545 0.8 0.75 0.667 0.75 0.727 0.545 0.727 0.333 0.5 0.667 0.167 0.364 0.286 0.076 0.357 0.417 0.286 0.571 0.917 0.769 0.786 0.692 0.615 0.464 0.857 0.714 0.857 0.75 0.714 0.75 0.562 0.687 0.375 0.222 0.562 0.625 0.687 0.625 0.4 0.625 0.687 0.312 0.187 0.375 0.312 0.25 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Louisville Colonels Louisville Colonels #ABABAB LouisvilleColonels 0.25 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Miami Dolphins Miami Dolphins #008E97 MiamiDolphins 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.714 0.769 1 0.857 0.786 0.714 0.429 0.714 0.687 0.625 0.5 0.719 0.778 0.75 0.875 0.75 0.5 0.533 0.375 0.5 0.75 0.5 0.687 0.562 0.625 0.562 0.5 0.562 0.625 0.562 0.687 0.688 0.562 0.625 0.25 0.563 0.375 0.063 0.688 0.438 0.438 0.375 0.438 0.5 0.5 0.375
Milwaukee Badgers Milwaukee Badgers #F03A16 MilwaukeeBadgers 0.333 0.778 0.385 0 0.222 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Minneapolis Marines Minneapolis Marines #0000FF MinneapolisMarines 0.25 0.286 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Minneapolis Red Jackets Minneapolis Red Jackets #FF0000 MinneapolisRedJackets 0 0 0 0 0 0 0 0.1 0.125 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Minnesota Vikings Minnesota Vikings #4F2683 MinnesotaVikings 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.214 0.154 0.385 0.615 0.5 0.308 0.273 0.571 0.857 0.857 0.786 0.5 0.857 0.714 0.857 0.821 0.643 0.531 0.437 0.562 0.437 0.556 0.5 0.187 0.437 0.562 0.533 0.687 0.625 0.375 0.5 0.687 0.562 0.625 0.5 0.562 0.562 0.937 0.625 0.687 0.312 0.375 0.562 0.5 0.563 0.375 0.5 0.625 0.75 0.375 0.188 0.625 0.344 0.438 0.688
Muncie Flyers Muncie Flyers #C41E3A MuncieFlyers 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
New England Patriots New England Patriots #002244 NewEnglandPatriots 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.357 0.692 0.692 0.538 0.769 0.333 0.667 0.231 0.286 0.286 0.142 0.429 0.214 0.357 0.5 0.214 0.786 0.643 0.687 0.562 0.625 0.125 0.556 0.5 0.562 0.687 0.687 0.533 0.562 0.312 0.062 0.375 0.125 0.312 0.625 0.375 0.687 0.625 0.562 0.5 0.312 0.688 0.562 0.875 0.875 0.625 0.75 1 0.688 0.625 0.875 0.813 0.75 0.75 0.75 0.75
New Orleans Saints New Orleans Saints #9F8958 NewOrleansSaints 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.214 0.308 0.357 0.153 0.333 0.179 0.357 0.357 0.142 0.286 0.214 0.437 0.5 0.062 0.25 0.444 0.5 0.437 0.312 0.437 0.8 0.625 0.562 0.5 0.687 0.75 0.5 0.437 0.437 0.187 0.375 0.375 0.187 0.625 0.438 0.562 0.5 0.5 0.188 0.625 0.438 0.5 0.813 0.688 0.813 0.438 0.688 0.438 0.438
New York Bulldogs New York Bulldogs #0000FF NewYork Bulldogs 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.091 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
New York Giants New York Giants #0B2265 NewYorkGiants 0 0 0 0.667 0.667 0.917 0.364 0.929 0.764 0.538 0.4 0.786 0.615 0.75 0.455 0.667 0.8 0.9 0.6 0.727 0.5 0.667 0.889 0.333 0.7 0.2 0.333 0.5 0.833 0.818 0.583 0.25 0.583 0.545 0.727 0.583 0.75 0.833 0.6 0.769 0.857 0.786 0.167 0.5 0.077 0.5 0.5 0.429 0.643 0.286 0.571 0.179 0.143 0.357 0.214 0.357 0.375 0.375 0.25 0.562 0.444 0.219 0.562 0.625 0.875 0.4 0.625 0.75 0.812 0.5 0.375 0.687 0.562 0.312 0.375 0.625 0.5 0.437 0.75 0.438 0.625 0.25 0.375 0.688 0.5 0.625 0.75 0.5 0.625 0.563 0.563 0.438 0.375 0.375
New York Jets New York Jets #203731 NewYorkJets 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.286 0.429 0.5 0.286 0.5 0.214 0.214 0.214 0.5 0.5 0.25 0.656 0.667 0.437 0.437 0.87 0.625 0.4 0.531 0.25 0.375 0.5 0.25 0.5 0.375 0.187 0.062 0.562 0.75 0.5 0.562 0.625 0.562 0.375 0.625 0.25 0.625 0.25 0.563 0.563 0.688 0.5 0.375 0.5 0.25 0.625
New York Yankees New York Yankees #0000FF NewYorkYankees 0 0 0 0 0.273 0.467 0.333 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.583 0.1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Oakland Raiders Oakland Raiders #A5ACAF OaklandRaiders 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.67 0.667 0.75 0.679 0.857 0.786 0.929 0.786 0.562 0.562 0.687 0.437 0 0 0 0 0 0 0 0 0 0 0 0 0 0.5 0.437 0.25 0.5 0.5 0.75 0.625 0.688 0.25 0.312 0.25 0.125 0.25 0.313 0.313 0.5 0.5 0.25 0.25 0.188 0.438
Oorang Indians Oorang Indians #FFBE26 OorangIndians 0.333 0.091 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Philadelphia Eagles Philadelphia Eagles #004953 PhiladelphiaEagles 0 0 0.846 0.65 0.933 0.4 0.786 0.714 0.235 0.143 0 0.375 0.364 0.182 0.083 0.2 0.455 0.1 0.091 0.2 0.182 0.556 0.875 0.7 0.545 0.667 0.818 0.917 0.5 0.333 0.583 0.636 0.636 0.364 0.273 0.333 0.182 0.583 0.833 0.714 0.231 0.167 0.429 0.357 0.643 0.462 0.143 0.308 0.231 0.461 0.179 0.393 0.5 0.286 0.286 0.357 0.562 0.687 0.75 0.625 0.333 0.312 0.406 0.437 0.344 0.467 0.625 0.687 0.625 0.625 0.687 0.5 0.437 0.625 0.625 0.375 0.187 0.312 0.687 0.688 0.75 0.75 0.812 0.375 0.625 0.5 0.594 0.688 0.625 0.5 0.25 0.625 0.625 0.438
Pittsburgh Steelers Pittsburgh Steelers #000000 PittsburghSteelers 0 0 0 0 0 0 0 0 0 0 0 0.333 0.167 0.333 0.5 0.364 0.182 0.1 0.222 0.1 0.636 0.556 0 0.2 0.5 0.667 0.333 0.545 0.5 0.364 0.417 0.5 0.417 0.333 0.417 0.5 0.636 0.545 0.455 0.429 0.643 0.636 0.357 0.143 0.385 0.308 0.154 0.071 0.357 0.429 0.786 0.714 0.75 0.857 0.714 0.643 0.875 0.75 0.562 0.5 0.667 0.625 0.562 0.437 0.375 0.533 0.312 0.562 0.562 0.437 0.687 0.562 0.75 0.687 0.625 0.687 0.437 0.375 0.562 0.812 0.656 0.375 0.938 0.688 0.5 0.625 0.75 0.563 0.75 0.75 0.5 0.5 0.688 0.625
Providence Steam Roller Providence Steam Roller #000000 ProvidenceSteamRoller 0 0 0 0.545 0.417 0.615 0.889 0.4 0.6 0.5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Racine Tornadoes Racine Tornadoes #870619 RacineTornadoes 0.6 0.5 0.571 0 0.2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Rochester Jeffersons Rochester Jeffersons #CF1020 RochesterJeffersons 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Rock Island Independents Rock Island Independents #006633 RockIslandIndependents 0.667 0.4 0.714 0.625 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
San Diego Chargers San Diego Chargers #0073CF SanDiegoChargers 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.455 0.428 0.321 0.142 0.357 0.142 0.429 0.5 0.562 0.75 0.687 0.625 0.667 0.375 0.437 0.5 0.25 0.533 0.375 0.375 0.375 0.25 0.687 0.5 0.687 0.562 0.5 0.25 0.312 0.5 0.062 0.312 0.5 0.25 0.75 0.563 0.875 0.688 0.5 0.813 0.563 0.5 0.438 0.563 0.563 0.25
San Francisco 49ers San Francisco 49ers #AA0000 SanFrancisco49ers 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0.636 0.583 0.75 0.636 0.333 0.455 0.667 0.5 0.583 0.583 0.538 0.429 0.142 0.286 0.538 0.5 0.5 0.538 0.333 0.769 0.643 0.607 0.357 0.429 0.357 0.571 0.357 0.125 0.125 0.375 0.812 0.333 0.625 0.937 0.625 0.656 0.867 0.625 0.875 0.875 0.625 0.875 0.625 0.812 0.687 0.75 0.812 0.75 0.25 0.375 0.75 0.625 0.438 0.125 0.25 0.438 0.313 0.438 0.5 0.375 0.813 0.719 0.75 0.5 0.313
Seattle Seahawks Seattle Seahawks #69BE28 SeattleSeahawks 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.143 0.357 0.562 0.562 0.25 0.375 0.444 0.562 0.75 0.5 0.625 0.6 0.562 0.437 0.562 0.437 0.125 0.375 0.375 0.5 0.437 0.5 0.5 0.562 0.375 0.562 0.438 0.625 0.562 0.813 0.562 0.625 0.25 0.313 0.438 0.438 0.688 0.813 0.75 0.625
St. Louis Rams St. Louis Rams #B3995D StLouisRams 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.437 0.375 0.312 0.25 0.812 0.625 0.875 0.438 0.75 0.5 0.375 0.5 0.188 0.125 0.063 0.438 0.125 0.469 0.438 0.375 0.438
St. Louis Cardinals St. Louis Cardinals #97233F StLouisCardinals 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.545 0.5 0.308 0.643 0.75 0.357 0.615 0.462 0.692 0.308 0.615 0.308 0.321 0.321 0.714 0.786 0.714 0.5 0.375 0.312 0.312 0.437 0.556 0.531 0.562 0.312 0.281 0.467 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
St. Louis Gunners St. Louis Gunners #FF0000 StLouisGunners 0 0 0 0 0 0 0 0 0 0 0 0.333 0.091 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
St. Louis All Stars St. Louis All Stars #CF1020 StLouisAllStars 0 0.2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Staten Island Stapletons Staten Island Stapletons #000080 StatenIslandStapletons 0 0 0 0 0 0 0 0.429 0.5 0.4 0.222 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Tampa Bay Buccaneers Tampa Bay Buccaneers #D50A0A TampaBayBuccaneers 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.143 0.312 0.625 0.344 0.562 0.556 0.125 0.375 0.125 0.125 0.267 0.312 0.312 0.375 0.187 0.312 0.312 0.375 0.437 0.375 0.625 0.5 0.687 0.625 0.562 0.75 0.438 0.312 0.688 0.25 0.563 0.563 0.188 0.625 0.25 0.438 0.25 0.125 0.375
Tennessee Titans Tennessee Titans #4B92DB TennesseeTitans 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.5 0.5 0.812 0.812 0.438 0.688 0.75 0.312 0.25 0.5 0.625 0.813 0.5 0.375 0.563 0.375 0.438 0.125 0.188
Tonawanda Kardex Tonawanda Kardex #C0C0C0 TonawandaKardex 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Washington Redskins Washington Redskins #773141 WashingtonRedskins 0 0.571 0.833 0 0.545 0.111 0 0.375 0.09 0 0.5 0.5 0.5 0.2 0.583 0.727 0.667 0.8 0.818 0.545 0.909 0.667 0.667 0.8 0.5 0.333 0.583 0.363 0.25 0.416 0.333 0.545 0.25 0.667 0.5 0.455 0.364 0.25 0.1 0.077 0.417 0.214 0.429 0.429 0.5 0.455 0.357 0.583 0.429 0.692 0.786 0.714 0.714 0.571 0.714 0.643 0.5 0.625 0.375 0.5 0.889 0.875 0.687 0.625 0.75 0.733 0.437 0.625 0.625 0.875 0.562 0.25 0.187 0.375 0.562 0.5 0.375 0.625 0.5 0.5 0.438 0.312 0.375 0.625 0.312 0.563 0.5 0.25 0.375 0.313 0.625 0.188 0.25 0.563
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment