Skip to content

Instantly share code, notes, and snippets.

@ntaylorwss
Last active January 1, 2016 22:35
Show Gist options
  • Save ntaylorwss/421b61e55f4ec9efe350 to your computer and use it in GitHub Desktop.
Save ntaylorwss/421b61e55f4ec9efe350 to your computer and use it in GitHub Desktop.

NFL Vegas Betting Visualization

Summary

  • There are 3 main ways to bet on an NFL game: against the spread, on the money line, and on the total.
  • The goal of this visualization is to compare these 3 avenues of money-making, to see which is better and which is worse.
  • The secondary goal is to find the best subset of games to bet on within these types of bets.
  • Ultimately what the data shows is that almost no matter how you slice it, the house always wins.

Design

Original choices

Text

  • I wrote small explanatory paragraphs on the side to attempt to explain the data as best as possible to those unfamiliar with the domain.
  • I added explanations of the subgroups in the tooltips of each bar in the bar charts (Viz 3 & 4).

Viz 1

  • I chose a line chart, plotting cumulative loss over time for the 3 bet types, to show how each one has lost the public money over time.
  • It clearly shows the distinction between the money line and the other two, which was my main point to communicate.
  • I chose to add dashed lines to break it up by season, to show which seasons may have had slight up-ticks where the public got it right.
  • I put the legend inside the chart area to conserve space, because there was a lot of space to do so.
  • I chose not to add a tooltip to this visualization, because with so many data points (over 100 per line), it would constantly be changing as the user hovered.
  • I chose to add a transition to the line to emphasize the slope of the lines, and the rapid decline in the Money Line line.

Viz 3 & 4 (formerly viz 2 & 3, before adding new viz 2)

  • I chose to make a grouped bar chart to show the differences between opposing groups using length as the visual cue.
  • I used color and negative space to group the bars together.
  • I used both grouped and individual x-labels to convey as concisely as possible the subset of data each bar represents.
  • I allowed for filtering of the data for exploratory and investigative work on the part of the user; some people have favorite teams, and want to know if they should bet on their favorite team.
  • I used long and descriptive titles, again to attempt to explain the context as clearly as possible.

Changes

Round 1

Changes to Viz 1
  • Added a label on the legend describing what the slope of the line means.
  • Added units to the y-label.
Changes to Viz 3 & 4
  • Added y-axis labels.
  • Changed starting point of all bars to be 0 on the y-axis. Negative values were encoded with upside-down bars, starting at 0 and going down.

Round 2

Changes to Viz 1
  • Scraped and added data on the number of bets placed for each bet type; encoded this as line thickness. Added a label on the legend for this.
Changes to Viz 3 & 4
  • Changed the y-axis label slightly, from "in cents" to "in dollars".
  • Changed "TakingPts" and "LayingPts" to the more intuitive "Underdog" and "Favorite".
  • Changed "PPG Greater" and "PPG Less" to "Pts/Game>Line" and "Pts/Game<Line", again for clarity.
Changes to story text
  • Changed to smaller font-size on the lower right visualization-specific write-up, to fit it within the window.
Addition of Viz 2 (Original Choices for Viz 2 listed here)
  • After considering feedback point 5 from Sheng Kung, I decided to add a new visualization in between visualizations 1 and 2.
  • My first idea was a scatterplot, plotting actual vs implied win probability. Upon realizing that not all moneylines (implied win probabilities) are used equally, I decided to add an encoding.
  • The new encoding was the number of games with each money line, encoded as size, making this a bubble chart.
  • Following the advice of Lesson 4 of Data Visualization and D3.js, I chose to use a sqrt scale for the bubble radius, so that the area was linearly proportional to the data.
  • I added a line where y=x, to emphasize what the probabilities "should be", and to show the difference from the "norm" that every point has.
  • I decided to have the animation start with all the bubbles on the y=x line, so the animation would emphasize the deviation from the "norm".
  • I added labels for the 2 sides of the y=x line, to clearly explain what points on either side of the line represented (who was profitting).
  • I gave every bubble the color green, to connect it with the Money Line line on the previous visualization.

Round 3

Changes to Viz 1
  • Added "ATS" in brackets in the legend to make it more clear what that acronym means later.
Changes to Viz 3 & 4

(These changes weren't in response to any feedback, just a couple new things I felt I needed to change)

  • Added group size (number of games in each subset) encoding, in the form of bar opacity. Since in each group you're only comparing 2 bars, I figured opacity was an acceptable visual cue. It's fairly easy to distinguish which of 2 bars of the same color is 'darker'.
  • Anchored the y-axis label to the same spot; it was floating around previously, depending on the y-axis.
  • Changed "Spread" in the title back to "ATS", after making it clear in the first visualization what this acronym meant.

Feedback

Round 1

Uira

  1. " I'm curious, which of those kinds of bets are the most popular? Is there some simple explanation why money line is much worse than others?"
  2. "About your second and third question, they are clearly enough for me, but I suggest you to encourage the users to hover over the bars to see more details on each label."

Sheng Kung

  1. "On all of your plots, you will want to add units to your vertical axes."
  2. "A concrete interpretation of what the slope of the line represents will be of great aid to those who are unfamiliar with sports betting, or even those who are familiar with the activity but who have little familiarity with reading charts like this."
  3. "In regards to your second visualization, you'll want to note specifically that you are using "ATS" as an acronym for "Against the spread" at some point in your visualization (such as the upper-right info box) to help reduce the comprehension load for unfamiliar readers."
  4. "On both of the latter two plots, there are some custom plots where the 0 line is in the middle of the axis, but the bars start from below this point. This can cause the plots to be misinterpreted by folks who are only looking at a comparison of bar lengths. Try to see if you can fix the baseline of the bars to the 0-axis and have 0 be the lower horizontal limit for cases where all bars have greater than zero height. This way, it will be clear when there is a condition that results in a loss for the oddsmakers since the bar will have its top edge at 0, and hang its bottom below the 0 line."

Round 2

####Sheng Kung

  1. "I want to note for the latter two visualizations that the units should be labeled as "profit in dolllars" rather than in "cents"."
  2. "As for the question of why the money line looks as it does, it might be an interesting visualization to look at a plot of money line values against actual win percentages."

Rica

  1. "For the third plot, you might want to state ATS bet in the title rather than just spread. I wasn't sure what TakingPts and LayingPts are in the Spread part."
  2. You mentioned ATS bets, but didin't explain what ATS explicitly (in the links).
  3. "For the fourth plot, PPG isn't explained. From the hovering info, it implicitly means points per game?"

Resources

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<script src="http://d3js.org/d3.v3.min.js"></script>
<script src="http://dimplejs.org/dist/dimple.v2.0.0.min.js"></script>
<style>
#maincontainer {
width:900px;
height: 600px;
float:left;
margin-right: 50px;
}
#vizcontainer {
width: 900px;
height: 550px;
}
#viznavcontainer {
width: 900px;
height: 50px;
}
#storycontainer {
width:300px;
height: 500px;
float:left;
padding-top: 5%;
margin-left: 50px;
font-size: 14.5px;
}
h1 {
color: black;
text-align: center;
}
.heading {
font-family: arial;
font-size: 24px;
font-weight: bold;
}
.axis {
font-family: Verdana;
font-size: 0.6em;
}
path {
fill: none;
stroke: black;
stroke-width: 2px;
}
.tick {
fill: none;
stroke: black;
}
.xsinglelabs {
font-size: 14px;
}
.xgrouplabs {
font-size: 18px;
font-weight: bold;
}
.tooltip {
background: #eee;
box-shadow: 0 0 5px #999999;
color: #333;
display: none;
font-size: 12px;
padding: 10px;
position: absolute;
text-align: center;
width: 120px;
z-index: 10;
}
.filters {
position: absolute;
left: 0;
bottom: 0;
width: 500px;
height: 50px;
border: 1px solid #cdcdcd;
border-color: rgba(0,0,0,.15);
background-color: #DCDCDC;
margin-bottom: 50px;
margin-left: 100px;
padding-top: 3px;
}
#seasonfilter {
position: absolute;
left: 150px;
width: 100px;
}
#teamfilter {
position: absolute;
left: 300px;
width: 175px;
}
#seasonfilterlabel {
position: absolute;
top: 5px;
}
#filtersectionlabel {
position: absolute;
left: 25px;
top: 5px;
font-weight: bold;
}
#teamfilterlabel {
position: absolute;
top: 5px;
}
.navbuttons {
background: #3498db;
background-image: -webkit-linear-gradient(top, #3498db, #2980b9);
background-image: -moz-linear-gradient(top, #3498db, #2980b9);
background-image: -ms-linear-gradient(top, #3498db, #2980b9);
background-image: -o-linear-gradient(top, #3498db, #2980b9);
background-image: linear-gradient(to bottom, #3498db, #2980b9);
-webkit-border-radius: 28;
-moz-border-radius: 28;
border-radius: 28px;
font-family: Arial;
color: #ffffff;
font-size: 20px;
padding: 10px 20px 10px 20px;
text-decoration: none;
margin-top: 10px;
margin-bottom: 10px;
}
.navbuttons:hover {
background: #3cb0fd;
background-image: linear-gradient(to bottom, #3cb0fd, #3498db);
cursor: pointer;
text-decoration: none;
}
.navbuttons:focus {
outline:0;
}
#backbutton {
margin-right: 30px;
visibility: hidden;
}
#forwardbutton {
margin-left: 30px;
}
#vizstory {
border: 1px solid #cdcdcd;
padding: 4px;
border-color: rgba(0,0,0,.15);
border-radius: 10px;
background-color: #DCDCDC;
font-size: 14.5px;
}
#storyintro {
border: 1px solid #cdcdcd;
padding: 4px;
border-color: rgba(0,0,0,.15);
border-radius: 10px;
background-color: #DCDCDC;
}
#navvizsentence {
padding: 5px;
font-weight: bold;
text-align: center;
}
.lineexplain {
font-size: 14px;
}
</style>
<script type="text/javascript">
//complete function
function drawAnyViz(num) {
if(num===1) {
d3.csv("https://gist.githubusercontent.com/ntaylorwss/421b61e55f4ec9efe350/raw/a59a6f26d67adb5fda988e1dd5d130f1babe42f5/NFLdataViz1.csv", drawViz1);
} else if (num===2) {
d3.csv("https://gist.githubusercontent.com/ntaylorwss/421b61e55f4ec9efe350/raw/a59a6f26d67adb5fda988e1dd5d130f1babe42f5/NFLdataViz2.csv", drawViz2);
} else if(num===3) {
d3.csv("https://gist.githubusercontent.com/ntaylorwss/421b61e55f4ec9efe350/raw/a59a6f26d67adb5fda988e1dd5d130f1babe42f5/NFLdataViz3.csv", drawViz3);
} else {
d3.csv("https://gist.githubusercontent.com/ntaylorwss/421b61e55f4ec9efe350/raw/a59a6f26d67adb5fda988e1dd5d130f1babe42f5/NFLdataViz4.csv", drawViz4);
}
}
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//drawViz1 function
function drawViz1(data) {
"use strict";
//clear svg
d3.selectAll("svg").remove();
//clear filters
d3.select('.filters').remove();
//Convert data to numeric
data.OverallWeek = +data.OverallWeek;
data.PublicNetATS = +data.PublicNetATS;
data.PublicNetML = +data.PublicNetML;
data.PublicNetTOT = +data.PublicNetTOT;
//setup svg area
var margin = 75;
var width = 900-margin;
var height = 550-margin;
var svg = d3.select("#vizcontainer")
.append("svg")
.attr("width", width + margin)
.attr("height", height + margin)
.attr('x', 0)
.attr('y', 0)
.append('g');
// setup X axis
var x_extent = [0, 118];
var x_scale = d3.scale.linear()
.range([margin, width])
.domain(x_extent);
var x_axis = d3.svg.axis()
.scale(x_scale)
.ticks(5);
// setup Y axis
var y_extent = [-25, 2];
var y_scale = d3.scale.linear()
.range([height, margin])
.domain(y_extent);
var y_axis = d3.svg.axis()
.scale(y_scale)
.orient("left");
//add axes
svg
.append('g')
.attr('class', 'x axis')
.attr('transform', "translate(0," + height + ")")
.call(x_axis);
svg
.append('g')
.attr('class', 'y axis')
.attr('transform', "translate(" + margin + ",0)")
.call(y_axis);
//add line at 0 on y axis
svg
.append("line")
.attr("x1", margin)
.attr("y1", y_scale(0))
.attr("x2", width)
.attr("y2", y_scale(0))
.style("stroke-width", 1)
.attr('opacity',0.5)
.attr("stroke", "black");
//add dotted lines for seasons
var seasonBreaks = [];
for(var i=0; i<=5; i++) {
seasonBreaks[i] = {'Year': 2010+i, 'Week': (i+1) * 17};
}
var sbreaks = svg
.selectAll('.seasonbreaks')
.data(seasonBreaks)
.enter()
.append('line')
.attr('x1', function(d) {return x_scale(d.Week);})
.attr('x2', function(d) {return x_scale(d.Week);})
.attr('y1', y_scale(y_extent[0]))
.attr('y2', y_scale(y_extent[1]))
.attr("class", "seasonbreaks")
.style('stroke-dasharray', "3, 3")
.style("stroke-width", 1)
.attr('opacity',0.5)
.attr("stroke", "black");
svg
.selectAll('.seasonlabels')
.data(seasonBreaks)
.enter()
.append('text')
.attr('class', 'seasonlabels')
.attr('x', function(d) {return x_scale(d['Week'])})
.attr('y', y_scale(y_extent[0])-2)
.style('font-size', '12px')
.text(function(d) {return d['Year']});
//add data line plot
var interpolation = "linear";
var lineATS = d3.svg.line()
.x(function(d) {return x_scale(d.OverallWeek);})
.y(function(d) {return y_scale(d.PublicNetATS);})
.interpolate(interpolation);
var lineML = d3.svg.line()
.x(function(d) {return x_scale(d.OverallWeek);})
.y(function(d) {return y_scale(d.PublicNetML);})
.interpolate(interpolation);
var lineTOT = d3.svg.line()
.x(function(d) {return x_scale(d.OverallWeek);})
.y(function(d) {return y_scale(d.PublicNetTOT);})
.interpolate(interpolation);
var lineTDur = 1500;
var allNums = [d3.max(data, function(d) {return parseInt(d.numATS);}),
d3.max(data, function(d) {return parseInt(d.numML);}),
d3.max(data, function(d) {return parseInt(d.numTOT);})];
var width_extent = d3.extent(allNums);
var width_scale = d3.scale.linear()
.range([1,5])
.domain(width_extent);
svg
.append('path')
.attr("class", "line")
.attr('d', lineATS(data))
.style('stroke-width', width_scale(allNums[0]))
.style('stroke', 'blue')
.attr('fill', 'none')
.attr('stroke-dasharray', function() {
return this.getTotalLength() + " " + this.getTotalLength();
})
.attr('stroke-dashoffset', function() {
return this.getTotalLength();
})
.transition()
.duration(lineTDur)
.ease('linear')
.attr('stroke-dashoffset',0);
svg
.append('path')
.attr("class", "line")
.attr('d', lineML(data))
.style('stroke-width', width_scale(allNums[1]))
.style('stroke', 'green')
.attr('fill', 'none')
.attr('stroke-dasharray', function() {
return this.getTotalLength() + " " + this.getTotalLength();
})
.attr('stroke-dashoffset', function() {
return this.getTotalLength();
})
.transition()
.duration(lineTDur)
.ease('linear')
.attr('stroke-dashoffset',0);
svg
.append('path')
.attr("class", "line")
.attr('d', lineTOT(data))
.style('stroke-width', width_scale(allNums[2]))
.style('stroke','red')
.attr('fill', 'none')
.attr('stroke-dasharray', function() {
return this.getTotalLength() + " " + this.getTotalLength();
})
.attr('stroke-dashoffset', function() {
return this.getTotalLength();
})
.transition()
.duration(lineTDur)
.ease('linear')
.attr('stroke-dashoffset',0);
//add axis labels
svg
.append('text')
.attr('class', 'label')
.attr('id', 'x-label')
.attr('x', x_scale((x_extent[0]+x_extent[1])/2))
.attr('y', y_scale(y_extent[0]-3.5))
.text("Week");
svg
.append('text')
.attr('class','label')
.attr('id','y-label')
.attr('x',0).attr('y',0)
.attr('transform', 'translate(' + x_scale(-6) + "," + y_scale((y_extent[0]+y_extent[1])*0.75) + "), rotate(-90)")
.text("Cumulative Net Loss in Dollars");
//title
svg
.append('text')
.attr('class', 'heading')
.attr('x', width/2)
.attr('y', margin/2)
.attr('text-anchor', 'middle')
.text("NFL Betting Cumulative Net Loss, per $1 Bet");
//legend
var legendLabels = [
{stat: 'Against the Spread (ATS)', color: 'blue'},
{stat: 'Money Line', color: 'green'},
{stat: 'Over/Under', color: 'red'}
];
svg.selectAll('rect')
.data(legendLabels)
.enter()
.append('rect')
.attr('x', x_scale(0.5))
.attr('y', function(d,i) {return y_scale(-(12+2*i));})
.attr('width', 25)
.attr('height', 3)
.attr('fill', function(d,i) {return legendLabels[i].color;});
svg.selectAll('.legendtext')
.data(legendLabels)
.enter()
.append('text')
.attr('class', 'legendtext')
.attr('x', x_scale(5))
.attr('y', function(d,i) {return y_scale(-(12.5+2*i));})
.attr('font-size', '12px')
.text(function(d) {return d.stat;});
svg.append('rect')
.attr('x', 0)
.attr('y', 0)
.attr('transform', 'translate('+x_scale(1)+','+y_scale(-18)+'), rotate(30)')
.attr('width', 25)
.attr('height', 3)
.attr('fill', 'black');
svg.append('text')
.attr('x', x_scale(5))
.attr('y', y_scale(-18.5))
.attr('font-size', '12px')
.text('Slope: Rate of loss');
svg.append('rect')
.attr('x', x_scale(1))
.attr('y', y_scale(-20))
.attr('width', 25)
.attr('height', 6)
.attr('fill', 'black');
svg.append('text')
.attr('x', x_scale(5.5))
.attr('y', y_scale(-20.5))
.attr('font-size', '12px')
.text('Thickness: popularity of bet');
//build story container
d3.select("#vizstory").remove();
d3.select("#storycontainer")
.append('p')
.attr('id', "vizstory")
.text("This first graph, showing how much the general public has lost over the last 6 seasons broken down by bet type, \
immediately identifies the oddsmakers' cash cow: the money line. The public loses far more money on this type\
of bet than any other, but why? We know the oddsmakers choose the line, essentially a statement of a team's win\
probability, very carefully. Is it as close to reality as the public would like to believe?");
}
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//drawViz2 function
function drawViz2(data) {
"use strict";
//clear svg
d3.selectAll("svg").remove();
//clear filters
d3.select('.filters').remove();
//add tooltip div
d3.selectAll(".tooltip").remove();
var tooltip = d3.select('#maincontainer')
.append('div')
.attr('class', 'tooltip');
tooltip.append('div').attr('class','explain');
//Convert data to numeric
data.Line = +data.Line;
data.Wins = +data.Wins;
data.Games = +data.Games;
data.WinP = +data.WinP;
data.ImpliedWinP = +data.ImpliedWinP;
//setup svg area
var margin = 75;
var width = 900-margin;
var height = 550-margin;
var svg = d3.select("#vizcontainer")
.append("svg")
.attr("width", width + margin)
.attr("height", height + margin)
.attr('x', 0)
.attr('y', 0)
.append('g');
// setup X axis
var x_extent = [0, 1];
var x_scale = d3.scale.linear()
.range([margin, width])
.domain(x_extent);
var x_axis = d3.svg.axis()
.scale(x_scale)
.ticks(5);
// setup Y axis
var y_extent = [0, 1];
var y_scale = d3.scale.linear()
.range([height, margin])
.domain(y_extent);
var y_axis = d3.svg.axis()
.scale(y_scale)
.ticks(5)
.orient("left");
//setup radius scale
var r_extent = d3.extent(data, function(d) {return parseInt(d.Games);});
var r_scale = d3.scale.sqrt()
.range([3, 10])
.domain(r_extent);
//add axes
svg
.append('g')
.attr('class', 'x axis')
.attr('transform', "translate(0," + height + ")")
.call(x_axis);
svg
.append('g')
.attr('class', 'y axis')
.attr('transform', "translate(" + margin + ",0)")
.call(y_axis);
//add line of slope 1
svg
.append("line")
.attr("x1", x_scale(0))
.attr("y1", y_scale(0))
.attr("x2", x_scale(1))
.attr("y2", y_scale(1))
.style("stroke-width", 1.5)
.attr('stroke-dasharray', '2, 2')
.attr('opacity',0.5)
.attr("stroke", "black");
//add data bubbles
var bubbles = svg.selectAll('circle')
.data(data)
.enter()
.append('circle')
.attr('cx', function(d) {return x_scale(d.ImpliedWinP);})
.attr('cy', function(d) {return y_scale(d.ImpliedWinP);})
.attr('fill', 'green')
.on("mouseover", function(d,i) {
tooltip.select('.explain')
.html("Implied: "+Math.round(d.ImpliedWinP*100)+"%<br>Actual: "+Math.round(d.WinP*100)+"%"+
"<br># Games: "+d.Games);
tooltip.style("left", (d3.event.pageX + 10) + "px");
tooltip.style("top", (d3.event.pageY) + "px");
tooltip.style('display','block');
svg
.append('line')
.attr('class', 'tooltipline')
.attr('x1', x_scale(d.ImpliedWinP))
.attr('x2', x_scale(d.ImpliedWinP))
.attr('y1', y_scale(d.WinP))
.attr('y2', y_scale(0))
.attr('stroke-dasharray', '3, 3')
.style('stroke-width', 1)
.attr('stroke', 'green');
svg
.append('line')
.attr('class', 'tooltipline')
.attr('x1', x_scale(0))
.attr('x2', x_scale(d.ImpliedWinP))
.attr('y1', y_scale(d.WinP))
.attr('y2', y_scale(d.WinP))
.attr('stroke-dasharray', '3, 3')
.style('stroke-width', 1)
.attr('stroke', 'green');
})
.on('mouseout', function(d,i) {
tooltip.style('display','none');
d3.selectAll(".tooltipline")
.style('display', 'none');
});
bubbles
.transition()
.duration(1500)
.delay(200)
.attr('cy', function(d) {return y_scale(d.WinP);})
.attr('r', function(d) {return r_scale(d.Games);});
//add axis labels
svg
.append('text')
.attr('class', 'label')
.attr('id', 'x-label')
.attr('x', x_scale((x_extent[0]+x_extent[1])*0.35))
.attr('y', y_scale(y_extent[0]-0.1))
.text("Implied Win Probability by Moneyline");
svg
.append('text')
.attr('class','label')
.attr('id','y-label')
.attr('x',0).attr('y',0)
.attr('transform', 'translate(' + x_scale(-0.05) + "," + y_scale((y_extent[0]+y_extent[1])*0.35) + "), rotate(-90)")
.text("Actual Win Probability");
//title
svg
.append('text')
.attr('class', 'heading')
.attr('x', width/2)
.attr('y', margin/2)
.attr('text-anchor', 'middle')
.text("Win Probability, Actual vs Moneyline Implication");
//legend
svg.append('text')
.attr('class', 'lineexplain')
.attr('x', x_scale(0.05))
.attr('y', y_scale(0.9))
.text("Above line = public profits");
svg.append('text')
.attr('class', 'lineexplain')
.attr('x', x_scale(0.7))
.attr('y', y_scale(0.1))
.text("Below line = oddsmakers profit");
svg
.append('line')
.attr('x1', x_scale(0.75))
.attr('x2', x_scale(0.8))
.attr('y1', y_scale(-0.15))
.attr('y2', y_scale(-0.15))
.style("stroke-width", 1.5)
.attr('stroke-dasharray', '2, 2')
.attr('opacity',1)
.attr("stroke", "black");
svg
.append('text')
.attr('class', 'legendexplain')
.attr('x', x_scale(0.82))
.attr('y', y_scale(-0.16))
.text("'Ideal' line, actual=implied");
svg
.append('circle')
.attr('cx', x_scale(0.05))
.attr('cy', y_scale(-0.15))
.attr('r', 6)
.attr('fill', 'green');
svg
.append('text')
.attr('class', 'legendexplain')
.attr('x', x_scale(0.07))
.attr('y', y_scale(-0.16))
.text("Size: # Games");
//build story container
d3.select("#vizstory").remove();
d3.select("#storycontainer")
.append('p')
.attr('id', "vizstory")
.style('font-size', '12.5px')
.text("Here we see the actual win probability of a team, given their money line. The dotted line shows where the \
bubbles 'should' be, where they would be if the game was fair. As we can see, most of the bigger bubbles \
(which indicate more games, and therefore more bets) are under the line, where the oddsmakers' win. Most of \
the bubbles that are above the line are actually at the extremes, with the big favourites and big underdogs. \
Looks like if you want to take the money line, you'll have to risk it with the long-shots, or chip away with \
big favourites and small profits. Let's move to the next bet type: the spread.");
}
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//drawViz3 function
function drawViz3(data) {
"use strict";
//clear svg
d3.selectAll("svg").remove();
//add tooltip div
d3.selectAll(".tooltip").remove();
var tooltip = d3.select('#maincontainer')
.append('div')
.attr('class', 'tooltip');
tooltip.append('div').attr('class','explain');
var explainStart = "When the majority of the public (>50%) bets on the team ";
var ODparen = " (as measured by points scored, starting from Week 6)";
var explanations = [
explainStart.concat("that is playing on the road"),
explainStart.concat("that is playing at home"),
explainStart.concat("that is the underdog"),
explainStart.concat("that is the favorite"),
explainStart.concat("that has the better offense").concat(ODparen),
explainStart.concat("that has the worse offense").concat(ODparen),
explainStart.concat("that has the better defense").concat(ODparen),
explainStart.concat("that has the worse defense").concat(ODparen)
];
//build story container
d3.select("#vizstory").remove();
d3.select("#storycontainer")
.append('p')
.attr('id', "vizstory")
.text("This visualization breaks down the oddsmakers profits by the decisions the bettors made on ATS bets:\
whether they sided with the home team, or the favorite, and so on.\
It should be noted that this is being viewed from the perspective of the oddsmakers; that is, a higher\
bar means more profit for the oddsmakers, and more money lost by the public. You can filter\
the data by season and by team at the bottom of the screen.");
//change necessary data types
data.Season = +data.Season;
data.PtsW = +data.PtsW;
data.PtsL = +data.PtsL;
data.Spread = +data.Spread;
data.ATS = +data.ATS;
data.PublicNetATS = +data.PublicNetATS;
//add filters
d3.select(".filters").remove();
d3.select("#viznavcontainer").append('div').attr('class', 'filters');
d3.select('.filters').append('p').text('Filter by:')
.attr('id', 'filtersectionlabel');
//season filter
var seasonDropDown = d3.select(".filters").append("select")
.attr("name", "Years")
.attr('id', 'seasonfilter');
d3.select('.filters').append("p").text("Season")
.attr('id','seasonfilterlabel')
.style('left', d3.select("#seasonfilter").style("left"));
var seasonOptionsData = d3.map(data, function(d) {return d.Season;}).keys();
seasonOptionsData.unshift("Any");
var seasonOptions = seasonDropDown.selectAll("option")
.data(seasonOptionsData)
.enter()
.append("option");
seasonOptions.text(function(d) { return d;})
.attr("value", function(d) { return d;});
//team filter
var teamDropDown = d3.select(".filters").append("select")
.attr("name", "Teams")
.attr('id', 'teamfilter');
d3.select('.filters').append("p").text("Team Involved")
.attr('id','teamfilterlabel')
.style('left', d3.select("#teamfilter").style("left"));
var teamOptionsData = d3.map(data, function(d) {return d.Home;}).keys();
teamOptionsData.unshift("Any");
var teamOptions = teamDropDown.selectAll("option")
.data(teamOptionsData)
.enter()
.append('option');
teamOptions.text(function(d) {return d;})
.attr('value', function(d) {return d;});
//first construction
updateChart(data);
d3.select("#seasonfilter")
.on('change', function() {
var selectedSeason = d3.select('#seasonfilter').node().value;
var selectedTeam = d3.select("#teamfilter").node().value;
var filtereddata = data.filter(function(d) {
if(selectedSeason==="Any" && selectedTeam==="Any") {
return d;
} else if(selectedSeason==="Any" && selectedTeam!=="Any") {
return (d.Home===selectedTeam || d.Away===selectedTeam);
} else if(selectedSeason!=="Any" && selectedTeam==="Any") {
return d.Season===selectedSeason;
} else {
return (d.Home===selectedTeam || d.Away===selectedTeam) && d.Season===selectedSeason;
}
});
updateChart(filtereddata);
});
d3.select("#teamfilter")
.on('change', function() {
var selectedSeason = d3.select('#seasonfilter').node().value;
var selectedTeam = d3.select("#teamfilter").node().value;
var filtereddata = data.filter(function(d) {
if(selectedSeason==="Any" && selectedTeam==="Any") {
return d;
} else if(selectedSeason==="Any" && selectedTeam!=="Any") {
return (d.Home===selectedTeam || d.Away===selectedTeam);
} else if(selectedSeason!=="Any" && selectedTeam==="Any") {
return d.Season===selectedSeason;
} else {
return (d.Home===selectedTeam || d.Away===selectedTeam) && d.Season===selectedSeason;
}
});
updateChart(filtereddata);
});
//actual chart constructing function
function updateChart(newdata) {
//clear svg
d3.selectAll("svg").remove();
//aggregate data into more usable dataframe (folded)
function getnet(d) {
return -d.PublicNetATS;
}
function getlength_mean(d) {
return {
Val: d3.mean(d, getnet),
N: d.length
};
}
function addBackZeros(splitObj, sortorderObj) {
var newSplitObj = splitObj;
var presentKeys = newSplitObj.map(function(d) {return d.key;});
var missingKeys = sortorderObj.filter(function(d) {return presentKeys.indexOf(d)===-1;});
for(var i=0; i<missingKeys.length; i++) {
var newkey = missingKeys[i];
var newobj = {
key: newkey,
values: {Val: 0, N: 0}
}
newSplitObj.push(newobj);
}
return newSplitObj;
}
var startWeek = 6;
var sortorder1 = ['Away','Home'];
var HRsplit = d3.nest()
.key(function(d) {
if(d.Home===d.ATSteam) {
return 'Home';
} else {
return 'Away';
};})
.sortKeys(function(a,b) {return sortorder1.indexOf(a) - sortorder1.indexOf(b)})
.rollup(getlength_mean)
.entries(newdata);
HRsplit = addBackZeros(HRsplit, sortorder1);
var sortorder2 = ['Underdog','Favorite'];
var LayTakeSplit = d3.nest()
.key(function(d) {
if(d.Favorite=="PickEm") {}
if(d.Favorite===d.ATSteam) {
return "Favorite";
} else {
return "Underdog";
};})
.sortKeys(function(a,b) {return sortorder2.indexOf(a) - sortorder2.indexOf(b)})
.rollup(getlength_mean)
.entries(newdata);
LayTakeSplit = addBackZeros(LayTakeSplit, sortorder2);
var sortorder3 = ['BetterO','WorseO'];
var OffSplit = d3.nest()
.key(function(d) {
if(d.ATSteam===d.Home) {
if(d.HomePtsFor>=d.AwayPtsFor) {
return "BetterO";
} else {
return "WorseO";
}
} else {
if(d.HomePtsFor<d.AwayPtsFor) {
return "BetterO";
} else {
return "WorseO";
}
}
})
.sortKeys(function(a,b) {return sortorder3.indexOf(a) - sortorder3.indexOf(b)})
.rollup(getlength_mean)
.entries(newdata.filter(function(d) {return d.Week>=startWeek;}));
OffSplit = addBackZeros(OffSplit, sortorder3);
var sortorder4 = ['BetterD','WorseD'];
var DefSplit = d3.nest()
.key(function(d) {
if(d.ATSteam===d.Home) {
if(d.HomePtsAgt<=d.AwayPtsAgt) {
return "BetterD";
} else {
return "WorseD";
}
} else {
if(d.HomePtsAgt>=d.AwayPtsAgt) {
return "BetterD";
} else {
return "WorseD";
}
}
})
.sortKeys(function(a,b) {return sortorder4.indexOf(a) - sortorder4.indexOf(b)})
.rollup(getlength_mean)
.entries(newdata.filter(function(d) {return d.Week>=startWeek;}));
DefSplit = addBackZeros(DefSplit, sortorder4);
var alldata = [];
[HRsplit,LayTakeSplit,OffSplit,DefSplit].forEach(function(d) {
var totalN = d[0].values.N + d[1].values.N;
d.forEach(function(k) {
var newObj = {group: k.key, ats: k.values.Val, n: k.values.N, n_prop: k.values.N / totalN};
alldata.push(newObj);
});});
//setup margins and width/height
var margin = 100;
var width = 900 - margin;
var height = 500 - margin;
//construct svg
var svg = d3.select("#vizcontainer")
.append("svg")
.attr("width", width + margin)
.attr("height", height + margin)
.attr('x', 0)
.attr('y', 0)
.append('g');
//y axis
var y_extent = [d3.min(alldata, function(d) {
if(d.ats<0) {
return d.ats-0.02;
} else {
return 0;
}}),
d3.max(alldata, function(d) {return d.ats;})+0.02];
var y_scale = d3.scale.linear()
.range([height, margin])
.domain(y_extent);
var y_axis = d3.svg.axis()
.scale(y_scale)
.orient("left");
svg
.append('g')
.attr('class', 'y axis')
.attr('transform', "translate(" + margin + ",0)")
.call(y_axis);
//if y-axis has 0 on it, put a dotted line there for visual reference
if(0>y_extent[0]) {
svg
.append("line")
.attr("x1", margin)
.attr("y1", y_scale(0))
.attr("x2", width)
.attr("y2", y_scale(0))
.style("stroke-width", 1)
.attr('opacity',0.5)
.attr("stroke", "black")
.style("stroke-dasharray", "3,3");
};
//x "axis" starting points
//domain of 1,2,3,4 because there are 4 stats to be plotted, with even spacing
var x_scale = d3.scale.linear()
.range([margin, width])
.domain([0, 4]);
//data bar width
var bw = 30;
var xs = [0.5, 0.5, 1.5, 1.5, 2.5, 2.5, 3.5, 3.5];
var groupinds = [0,1,0,1,0,1,0,1];
var groupnums = [0,0,1,1,2,2,3,3];
var groupnamescolors = [
['Location', 'blue'],
['Spread', 'green'],
['Offense', 'red'],
['Defense', 'purple']
];
var opac_extent = [0, 1];
var opac_scale = d3.scale.linear()
.range([0.5, 1])
.domain(opac_extent);
var allbars = svg
.selectAll(".bar")
.data(alldata)
.enter()
.append('rect')
.attr('class', 'bar')
.attr('x',0).attr('y',0)
.attr('transform', function(d,i) {
if(d.ats>=0) {
return 'translate('+
(x_scale(xs[i]) + (groupinds[i]*(bw+3)))
+','+
y_scale(0)
+') rotate(180)';
} else {
return 'translate('+
(x_scale(xs[i]) + (groupinds[i]*(bw+3))-bw)
+','+
y_scale(0)
+')';
}
})
.attr('width',bw)
.attr('height', 0)
.attr('fill', function(d, i) {
return groupnamescolors[groupnums[i]][1];})
.attr('opacity', function(d) {return opac_scale(d.n_prop);})
.on("mouseover", function(d, i) {
d3.select(this).style("fill", "grey");
tooltip.select('.explain')
.html("Average loss: $" + (Math.round(d.ats*1000)/1000) +
"<br>" + explanations[i] + "<br>" +
"<strong>" + d.n + " observations" + "</strong>");
tooltip.style("left", (d3.event.pageX + bw) + "px")
tooltip.style("top", (d3.event.pageY) + "px")
tooltip.style('display','block');
})
.on("mouseout", function(d,i) {
var color = groupnamescolors[groupnums[i]][1];
d3.select(this).style('fill',color);
tooltip.style('display','none');
});
var trans_scale = d3.scale.linear()
.domain(y_extent)
.range([1000,2500]);
allbars.transition()
.duration(function(d) {return trans_scale(d.ats)})
.delay(100)
.attr("height", function(d) {
if(d.n===0) {
return 0;
} else if(d.ats>=0) {
return y_scale(0)-y_scale(d.ats);
} else {
return y_scale(d.ats)-y_scale(0);
}
});
var singleLabels = svg
.selectAll(".xsinglelabs")
.data(alldata)
.enter()
.append('text')
.attr('class', 'xsinglelabs')
.attr('x',0).attr('y',0)
.attr('transform', function(d,i) {
return 'translate('+
(x_scale(xs[i]) + (groupinds[i]*(bw+3)) - bw)
+', ' +
(y_scale(y_extent[0])+10)
+
') rotate(45)'})
.text(function(d) {return d.group;});
xs = [0.5, 1.5, 2.5, 3.5];
var groupLabels = svg
.selectAll(".xgrouplabs")
.data(groupnamescolors)
.enter()
.append('text')
.attr('class', 'xgrouplabs')
.attr('x', function(d,i) {return x_scale(0.5+i)-bw})
.attr('y', y_scale(y_extent[0])+70)
.attr('color', function(d) {return d[1]})
.text(function(d) {return d[0]});
svg
.append('rect')
.attr('x', x_scale(0.5))
.attr('y', y_scale(y_extent[1])-25)
.attr('height', 10)
.attr('width', 25)
.attr('fill', 'black')
.attr('opacity', 0.5);
svg
.append('text')
.attr('x', x_scale(0.5)+30)
.attr('y', y_scale(y_extent[1])-15)
.text('opacity: % of bets in subgroup');
//add y-axis label
svg
.append('text')
.attr('class','label')
.attr('id','y-label')
.attr('x',0).attr('y',0)
.attr('transform', 'translate(' + x_scale(-0.3) + "," +
y_scale(y_extent[0]+((Math.abs(y_extent[0])+Math.abs(y_extent[1]))*0.2)) + "), rotate(-90)")
.text("Oddsmakers' Profit in Dollars");
//add title
svg
.append('text')
.attr('class', 'heading')
.attr('x', width/2)
.attr('y', margin/2)
.attr('text-anchor', 'middle')
.text("ATS: Oddsmakers' Profit per $1 Bet When Majority Bets On...");
}
}
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//drawViz4 function
function drawViz4(data) {
"use strict";
//clear svg
d3.selectAll("svg").remove();
//add tooltip div
d3.selectAll(".tooltip").remove();
var tooltip = d3.select('#maincontainer')
.append('div')
.attr('class', 'tooltip');
tooltip.append('div').attr('class','explain');
var explainStart = "When the majority of the public (>50%) ";
var ppgMid = " when the total points-per-game between the 2 teams from weeks prior ";
var ppgEnd = " (starting from Week 6)";
var explanations = [
explainStart.concat("takes the Over"),
explainStart.concat("takes the Under"),
explainStart.concat("takes the Over in Prime Time games (the nationally televised nighttime games)"),
explainStart.concat("takes the Under in Prime Time games (the nationally televised nighttime games)"),
explainStart.concat("takes the <strong>Over</strong>").concat(ppgMid)
.concat("is <strong>greater than</strong> the line").concat(ppgEnd),
explainStart.concat("takes the <strong>Under</strong>").concat(ppgMid)
.concat("is <strong>greater than</strong> the line").concat(ppgEnd),
explainStart.concat("takes the <strong>Over</strong>").concat(ppgMid)
.concat("is <strong>less than</strong> the line").concat(ppgEnd),
explainStart.concat("takes the <strong>Under</strong>").concat(ppgMid)
.concat("is <strong>less than</strong> the line").concat(ppgEnd)
];
//build story container
d3.select("#vizstory").remove();
d3.select("#storycontainer")
.append('p')
.attr('id', "vizstory")
.style("font-size", "14.5px")
.text("This final visualization shows a breakdown of the oddsmakers profits on over and under bets in\
all games, primetime games, games where the teams' offenses were better than the line suggested,\
and games where they were worse. As before, the perspective is the oddsmakers', and\
you can filter the data by season and team at the bottom of the screen. Note: you may notice, when\
using both filters, that some bars disappear for the Under group; this is due to the lack of overall\
bets on the under; these subsets simply have 0 observations.");
//change necessary data types
data.Season = +data.Season;
data.PtsW = +data.PtsW;
data.PtsL = +data.PtsL;
data.Total = +data.Total;
data.TOT = +data.TOT;
data.TOTside = +data.TOTside;
data.PublicNetTOT = +data.PublicNetTOT;
data.HomePtsFor = data.HomePtsFor;
data.AwayPtsFor = data.AwayPtsFor;
//add filters
d3.select(".filters").remove();
d3.select("#viznavcontainer").append('div').attr('class', 'filters');
d3.select('.filters').append('p').text('Filter by:')
.attr('id', 'filtersectionlabel');
//season filter
var seasonDropDown = d3.select(".filters").append("select")
.attr("name", "Years")
.attr('id', 'seasonfilter');
d3.select('.filters').append("p").text("Season")
.attr('id','seasonfilterlabel')
.style('left', d3.select("#seasonfilter").style("left"));
var seasonOptionsData = d3.map(data, function(d) {return d.Season;}).keys();
seasonOptionsData.unshift("Any");
var seasonOptions = seasonDropDown.selectAll("option")
.data(seasonOptionsData)
.enter()
.append("option");
seasonOptions.text(function(d) { return d;})
.attr("value", function(d) { return d;});
//team filter
var teamDropDown = d3.select(".filters").append("select")
.attr("name", "Teams")
.attr('id', 'teamfilter');
d3.select('.filters').append("p").text("Team Involved")
.attr('id','teamfilterlabel')
.style('left', d3.select("#teamfilter").style("left"));
var teamOptionsData = d3.map(data, function(d) {return d.Home;}).keys();
teamOptionsData.unshift("Any");
var teamOptions = teamDropDown.selectAll("option")
.data(teamOptionsData)
.enter()
.append('option');
teamOptions.text(function(d) {return d;})
.attr('value', function(d) {return d;});
//first construction
updateChart(data);
//when filter is used, data changes
d3.select("#seasonfilter")
.on('change', function() {
var selectedSeason = d3.select('#seasonfilter').node().value;
var selectedTeam = d3.select("#teamfilter").node().value;
var filtereddata = data.filter(function(d) {
if(selectedSeason==="Any" && selectedTeam==="Any") {
return d;
} else if(selectedSeason==="Any" && selectedTeam!=="Any") {
return (d.Home===selectedTeam || d.Away===selectedTeam);
} else if(selectedSeason!=="Any" && selectedTeam==="Any") {
return d.Season===selectedSeason;
} else {
return (d.Home===selectedTeam || d.Away===selectedTeam) && d.Season===selectedSeason;
}
});
updateChart(filtereddata);
});
d3.select("#teamfilter")
.on('change', function() {
var selectedSeason = d3.select('#seasonfilter').node().value;
var selectedTeam = d3.select("#teamfilter").node().value;
var filtereddata = data.filter(function(d) {
if(selectedSeason==="Any" && selectedTeam==="Any") {
return d;
} else if(selectedSeason==="Any" && selectedTeam!=="Any") {
return (d.Home===selectedTeam || d.Away===selectedTeam);
} else if(selectedSeason!=="Any" && selectedTeam==="Any") {
return d.Season===selectedSeason;
} else {
return (d.Home===selectedTeam || d.Away===selectedTeam) && d.Season===selectedSeason;
}
})
updateChart(filtereddata);
});
//actual chart constructing function
function updateChart(newdata) {
//clear svg
d3.selectAll("svg").remove();
//aggregate data into more usable dataframe (folded)
function getnet(d) {
return -d.PublicNetTOT;
}
function getside(d) {
if(parseInt(d.TOTside)==1) {
return 'Over';
} else {
return 'Under';
}
}
function getlength_mean(d) {
return {
Val: d3.mean(d, getnet),
N: d.length
};
}
function addBackZeros(splitObj, sortorderObj) {
var newSplitObj = splitObj;
var presentKeys = newSplitObj.map(function(d) {return d.key;});
var missingKeys = sortorderObj.filter(function(d) {return presentKeys.indexOf(d)===-1;});
for(var i=0; i<missingKeys.length; i++) {
var newkey = missingKeys[i];
var newobj = {
key: newkey,
values: {Val: 0, N: 0}
}
newSplitObj.push(newobj);
}
return newSplitObj;
}
var startWeek = 6;
var sortorder = ['Over','Under'];
var OUsplit = d3.nest()
.key(getside)
.sortKeys(function(a,b) {return sortorder.indexOf(a) - sortorder.indexOf(b)})
.rollup(getlength_mean)
.entries(newdata);
OUsplit = addBackZeros(OUsplit, sortorder);
var PrimeSplit = d3.nest()
.key(getside)
.sortKeys(function(a,b) {return sortorder.indexOf(a) - sortorder.indexOf(b)})
.rollup(getlength_mean)
.entries(newdata.filter(function(d) {
return parseInt(d.Prime)===1;
}));
PrimeSplit = addBackZeros(PrimeSplit, sortorder);
var PPGoverSplit = d3.nest()
.key(getside)
.sortKeys(function(a,b) {return sortorder.indexOf(a) - sortorder.indexOf(b)})
.rollup(getlength_mean)
.entries(newdata.filter(function(d) {
return d.Week>=startWeek && (parseInt(d.HomePtsFor)+parseInt(d.AwayPtsFor))>=d.Total;
}));
PPGoverSplit = addBackZeros(PPGoverSplit, sortorder);
var PPGunderSplit = d3.nest()
.key(getside)
.sortKeys(function(a,b) {return sortorder.indexOf(a) - sortorder.indexOf(b)})
.rollup(getlength_mean)
.entries(newdata.filter(function(d) {
return d.Week>=startWeek && (parseInt(d.HomePtsFor)+parseInt(d.AwayPtsFor))<d.Total;
}));
PPGunderSplit = addBackZeros(PPGunderSplit, sortorder);
var alldata = [];
[OUsplit,PrimeSplit,PPGoverSplit,PPGunderSplit].forEach(function(d) {
var totalN = d[0].values.N + d[1].values.N;
d.forEach(function(k) {
var newObj = {group: k.key, tot: k.values.Val, n: k.values.N, n_prop: k.values.N / totalN};
alldata.push(newObj);
});});
//setup margins and width/height
var margin = 100;
var width = 900 - margin;
var height = 500 - margin;
//construct svg
var svg = d3.select("#vizcontainer")
.append("svg")
.attr("width", width + margin)
.attr("height", height + margin)
.attr('x', 0)
.attr('y', 0)
.append('g');
//y axis
var y_extent = [d3.min(alldata, function(d) {
if(d.tot<0) {
return d.tot-0.02;
} else {
return 0;
}}),
d3.max(alldata, function(d) {return d.tot;})+0.02];
var y_scale = d3.scale.linear()
.range([height, margin])
.domain(y_extent);
var y_axis = d3.svg.axis()
.scale(y_scale)
.orient("left");
svg
.append('g')
.attr('class', 'y axis')
.attr('transform', "translate(" + margin + ",0)")
.call(y_axis);
//x "axis" starting points
//domain of 1,2,3,4 because there are 4 stats to be plotted, with even spacing
var x_scale = d3.scale.linear()
.range([margin, width])
.domain([0, 4]);
//data bar width
var bw = 30;
var xs = [0.5, 0.5, 1.5, 1.5, 2.5, 2.5, 3.5, 3.5];
var groupinds = [0,1,0,1,0,1,0,1];
var groupnums = [0,0,1,1,2,2,3,3];
var groupnamescolors = [
['All Games', 'blue'],
['Prime Time', 'green'],
['Pts/Game > Line', 'red'],
['Pts/Game < Line', 'purple']
];
var opac_extent = [0, 1];
var opac_scale = d3.scale.linear()
.range([0.5, 1])
.domain(opac_extent);
var allbars = svg
.selectAll(".bar")
.data(alldata)
.enter()
.append('rect')
.attr('class', 'bar')
.attr('x',0).attr('y',0)
.attr('transform', function(d,i) {
return 'translate('+
(x_scale(xs[i]) + (groupinds[i]*(bw+3)))
+','+
y_scale(y_extent[0])
+') rotate(180)'})
.attr('width',bw)
.attr('height', 0)
.attr('fill', function(d, i) {
return groupnamescolors[groupnums[i]][1];})
.attr('opacity', function(d) {return opac_scale(d.n_prop);})
.on("mouseover", function(d,i) {
d3.select(this).style("fill", "grey");
tooltip.select('.explain')
.html("Average loss: $" + (Math.round(d.tot*1000)/1000) +
"<br>" + explanations[i] + "<br>" +
"<strong>"+d.n + " observations"+"</strong>");
tooltip.style("left", (d3.event.pageX + bw) + "px")
tooltip.style("top", (d3.event.pageY) + "px")
tooltip.style('display','block');
})
.on("mouseout", function(d,i) {
var color = groupnamescolors[groupnums[i]][1];
d3.select(this).style('fill',color);
tooltip.style('display','none');
});
var trans_scale = d3.scale.linear()
.domain(y_extent)
.range([1000,2500]);
allbars.transition()
.duration(function(d) {return trans_scale(d.tot)})
.delay(100)
.attr("height", function(d) {
if(d.n===0) {
return 0;
} else {
return y_scale(y_extent[0])-y_scale(d.tot);
}
});
var singleLabels = svg
.selectAll(".xsinglelabs")
.data(alldata)
.enter()
.append('text')
.attr('class', 'xsinglelabs')
.attr('x',0).attr('y',0)
.attr('transform', function(d,i) {
return 'translate('+
(x_scale(xs[i]) + (groupinds[i]*(bw+3)) - bw)
+', ' +
(y_scale(y_extent[0])+10)
+
') rotate(45)'})
.text(function(d,i) {
if(i%2===0) {
return "Over";
} else {
return "Under";
}
});
xs = [0.5, 1.5, 2.5, 3.5];
var groupLabels = svg
.selectAll(".xgrouplabs")
.data(groupnamescolors)
.enter()
.append('text')
.attr('class', 'xgrouplabs')
.attr('x', function(d,i) {return x_scale(0.5+i)-bw})
.attr('y', y_scale(y_extent[0])+70)
.attr('color', function(d) {return d[1]})
.text(function(d) {return d[0]});
svg
.append('rect')
.attr('x', x_scale(0.5))
.attr('y', y_scale(y_extent[1])-25)
.attr('height', 10)
.attr('width', 25)
.attr('fill', 'black')
.attr('opacity', 0.5);
svg
.append('text')
.attr('x', x_scale(0.5)+30)
.attr('y', y_scale(y_extent[1])-15)
.text('opacity: % of bets in subgroup');
//add y-axis label
svg
.append('text')
.attr('class','label')
.attr('id','y-label')
.attr('x',0).attr('y',0)
.attr('transform', 'translate(' + x_scale(-0.3) + "," +
y_scale(y_extent[0]+((Math.abs(y_extent[0])+Math.abs(y_extent[1]))*0.2)) + "), rotate(-90)")
.text("Oddsmakers' Profit in Dollars");
//add title
svg
.append('text')
.attr('class', 'heading')
.attr('x', width/2)
.attr('y', margin/2)
.attr('text-anchor', 'middle')
.text("Over/Under: Oddsmakers' Profit per $1 Bet When Majority Bets On...");
}
}
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
drawAnyViz(1);
var vizNum = 1;
//transition functions
function backButton() {
if(vizNum===4) {
d3.select("#forwardbutton").style("visibility","visible").style("display","initial");
vizNum += -1;
drawAnyViz(vizNum);
} else if(vizNum===3) {
vizNum += -1;
drawAnyViz(vizNum);
} else if(vizNum===2) {
vizNum += -1;
drawAnyViz(vizNum);
d3.select("#backbutton").style("visibility","hidden");
}
}
function forwardButton() {
if(vizNum===1) {
d3.select("#backbutton").style("visibility","visible").style("display","initial");
vizNum += 1;
drawAnyViz(vizNum);
} else if(vizNum===2) {
vizNum += 1;
drawAnyViz(vizNum);
} else if(vizNum===3) {
d3.select("#backbutton").style("visibility","visible").style("display","initial");
vizNum += 1;
drawAnyViz(vizNum);
d3.select("#forwardbutton").style("visibility","hidden");
}
}
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
</script>
</head>
<body>
<div id="maincontainer">
<div id="vizcontainer"></div>
<div id="viznavcontainer"></div>
</div>
<div id="storycontainer">
<p id="storyintro">There are 3 main ways to bet on an NFL game: against the
<a href="http://pregame.com/EN/main/sports-betting-basics/glossary/terms/against-the-spread.html">spread</a>,
on the <a href="http://pregame.com/EN/main/sports-betting-basics/glossary/terms/money-line.html">money line</a>,
or on the <a href="http://pregame.com/EN/main/sports-betting-basics/glossary/terms/over-under-total.html">over/under</a>.
each method is popular in its own right, but let's take a closer look at the outcomes of each over the last few years.
<br><br>
<u>The question is:</u><br>
How can you best win money betting on football? (Or I suppose, how can you lose the least?) <br><br>
TIP: For the 3rd and 4th charts, hover over the bars for an explanation of the groups.
</p>
<p id="navvizsentence">Navigate the 3 visualizations...</p>
<div id="navbuttons">
<input name="backButton"
id="backbutton"
class="navbuttons"
type="button"
value="Previous"
onclick="backButton()" />
<input name="forwardButton"
id="forwardbutton"
class="navbuttons"
type="button"
value="Next"
onclick="forwardButton()" />
</div>
</div>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<script src="http://d3js.org/d3.v3.min.js"></script>
<script src="http://dimplejs.org/dist/dimple.v2.0.0.min.js"></script>
<style>
#container {
width: 1300px;
height: 500px;
}
#vizcontainer {
width:900px;
height: 500px;
float:left;
}
#buffer {
width:100px;
height: 500px;
float:left;
}
#storycontainer {
width:300px;
height: 500px;
float:left;
padding-top: 5%;
}
h1 {
color: black;
text-align: center;
}
.heading {
font-family: arial;
font-size: 24px;
font-weight: bold;
}
.axis {
font-family: Verdana;
font-size: 0.6em;
}
path {
fill: none;
stroke: black;
stroke-width: 2px;
}
.tick {
fill: none;
stroke: black;
}
.xsinglelabs {
font-size: 14px;
}
.xgrouplabs {
font-size: 18px;
font-weight: bold;
}
.tooltip {
background: #eee;
box-shadow: 0 0 5px #999999;
color: #333;
display: none;
font-size: 12px;
padding: 10px;
position: absolute;
text-align: center;
width: 120px;
z-index: 10;
}
.filters {
position: absolute;
left: 0;
bottom: 0;
width: 500px;
height: 50px;
border: 1px solid #cdcdcd;
border-color: rgba(0,0,0,.15);
background-color: #DCDCDC;
margin-bottom: 50px;
margin-left: 100px;
padding-top: 3px;
}
#seasonfilter {
position: absolute;
left: 150px;
width: 100px;
}
#teamfilter {
position: absolute;
left: 300px;
width: 175px;
}
#seasonfilterlabel {
position: absolute;
top: 5px;
}
#filtersectionlabel {
position: absolute;
left: 25px;
top: 5px;
font-weight: bold;
}
#teamfilterlabel {
position: absolute;
top: 5px;
}
.navbuttons {
background: #3498db;
background-image: -webkit-linear-gradient(top, #3498db, #2980b9);
background-image: -moz-linear-gradient(top, #3498db, #2980b9);
background-image: -ms-linear-gradient(top, #3498db, #2980b9);
background-image: -o-linear-gradient(top, #3498db, #2980b9);
background-image: linear-gradient(to bottom, #3498db, #2980b9);
-webkit-border-radius: 28;
-moz-border-radius: 28;
border-radius: 28px;
font-family: Arial;
color: #ffffff;
font-size: 20px;
padding: 10px 20px 10px 20px;
text-decoration: none;
margin-top: 10px;
margin-bottom: 10px;
}
.navbuttons:hover {
background: #3cb0fd;
background-image: linear-gradient(to bottom, #3cb0fd, #3498db);
cursor: pointer;
text-decoration: none;
}
.navbuttons:focus {
outline:0;
}
#backbutton {
margin-right: 30px;
visibility: hidden;
}
#forwardbutton {
margin-left: 30px;
}
#vizstory {
border: 1px solid #cdcdcd;
padding: 5px;
border-color: rgba(0,0,0,.15);
border-radius: 10px;
background-color: #DCDCDC;
}
#storyintro {
border: 1px solid #cdcdcd;
padding: 5px;
border-color: rgba(0,0,0,.15);
border-radius: 10px;
background-color: #DCDCDC;
}
#navvizsentence {
padding: 5px;
font-weight: bold;
text-align: center;
}
</style>
<script type="text/javascript">
//complete function
function drawAnyViz(num) {
if(num===1) {
d3.csv("https://gist.githubusercontent.com/ntaylorwss/012ecdbc731e370939e8/raw/30753a71dd06bbe7b3d2e8f84e5da60983d70379/NFLdataViz1.csv", drawViz1);
} else if (num===2) {
d3.csv("https://gist.githubusercontent.com/ntaylorwss/012ecdbc731e370939e8/raw/30753a71dd06bbe7b3d2e8f84e5da60983d70379/NFLdataViz2.csv", drawViz2);
} else {
d3.csv("https://gist.githubusercontent.com/ntaylorwss/012ecdbc731e370939e8/raw/30753a71dd06bbe7b3d2e8f84e5da60983d70379/NFLdataViz3.csv", drawViz3);
}
}
//drawViz1 function
function drawViz1(data) {
"use strict";
//clear svg
d3.selectAll("svg").remove();
//clear filters
d3.select('.filters').remove();
//Convert data to numeric
data.OverallWeek = +data.OverallWeek;
data.PublicNetATS = +data.PublicNetATS;
data.PublicNetML = +data.PublicNetML;
data.PublicNetTOT = +data.PublicNetTOT;
//setup svg area
var margin = 75;
var width = 900-margin;
var height = 550-margin;
var svg = d3.select("#vizcontainer")
.append("svg")
.attr("width", width + margin)
.attr("height", height + margin)
.attr('x', 0)
.attr('y', 0)
.append('g');
// setup X axis
var x_extent = [0, 115];
var x_scale = d3.scale.linear()
.range([margin, width])
.domain(x_extent);
var x_axis = d3.svg.axis()
.scale(x_scale)
.ticks(5);
// setup Y axis
var y_extent = [-24, 2];
var y_scale = d3.scale.linear()
.range([height, margin])
.domain(y_extent);
var y_axis = d3.svg.axis()
.scale(y_scale)
.orient("left");
//add axes
svg
.append('g')
.attr('class', 'x axis')
.attr('transform', "translate(0," + height + ")")
.call(x_axis);
svg
.append('g')
.attr('class', 'y axis')
.attr('transform', "translate(" + margin + ",0)")
.call(y_axis);
//add line at 0 on y axis
svg
.append("line")
.attr("x1", margin)
.attr("y1", y_scale(0))
.attr("x2", width)
.attr("y2", y_scale(0))
.attr("stroke-width", 1)
.attr('opacity',0.5)
.attr("stroke", "black");
//add dotted lines for seasons
var seasonBreaks = [];
for(var i=0; i<=5; i++) {
seasonBreaks[i] = {'Year': 2010+i, 'Week': (i+1) * 17};
}
var sbreaks = svg
.selectAll('.seasonbreaks')
.data(seasonBreaks)
.enter()
.append('line')
.attr('x1', function(d) {return x_scale(d.Week);})
.attr('x2', function(d) {return x_scale(d.Week);})
.attr('y1', y_scale(y_extent[0]))
.attr('y2', y_scale(y_extent[1]))
.attr("class", "seasonbreaks")
.style('stroke-dasharray', "3, 3")
.attr("stroke-width", 1)
.attr('opacity',0.5)
.attr("stroke", "black");
svg
.selectAll('.seasonlabels')
.data(seasonBreaks)
.enter()
.append('text')
.attr('class', 'seasonlabels')
.attr('x', function(d) {return x_scale(d['Week'])})
.attr('y', y_scale(y_extent[0])-2)
.style('font-size', '12px')
.text(function(d) {return d['Year']});
//add data line plot
var interpolation = "linear";
var lineATS = d3.svg.line()
.x(function(d) {return x_scale(d.OverallWeek);})
.y(function(d) {return y_scale(d.PublicNetATS);})
.interpolate(interpolation);
var lineML = d3.svg.line()
.x(function(d) {return x_scale(d.OverallWeek);})
.y(function(d) {return y_scale(d.PublicNetML);})
.interpolate(interpolation);
var lineTOT = d3.svg.line()
.x(function(d) {return x_scale(d.OverallWeek);})
.y(function(d) {return y_scale(d.PublicNetTOT);})
.interpolate(interpolation);
var lineTDur = 1500;
svg
.append('path')
.attr("class", "line")
.attr('d', lineATS(data))
.attr('stroke-width', 2)
.style('stroke', 'blue')
.attr('fill', 'none')
.attr('stroke-dasharray', function() {
return this.getTotalLength() + " " + this.getTotalLength();
})
.attr('stroke-dashoffset', function() {
return this.getTotalLength();
})
.transition()
.duration(lineTDur)
.ease('linear')
.attr('stroke-dashoffset',0);
svg
.append('path')
.attr("class", "line")
.attr('d', lineML(data))
.attr('stroke-width', 2)
.style('stroke', 'green')
.attr('fill', 'none')
.attr('stroke-dasharray', function() {
return this.getTotalLength() + " " + this.getTotalLength();
})
.attr('stroke-dashoffset', function() {
return this.getTotalLength();
})
.transition()
.duration(lineTDur)
.ease('linear')
.attr('stroke-dashoffset',0);
svg
.append('path')
.attr("class", "line")
.attr('d', lineTOT(data))
.attr('stroke-width', 2)
.style('stroke','red')
.attr('fill', 'none')
.attr('stroke-dasharray', function() {
return this.getTotalLength() + " " + this.getTotalLength();
})
.attr('stroke-dashoffset', function() {
return this.getTotalLength();
})
.transition()
.duration(lineTDur)
.ease('linear')
.attr('stroke-dashoffset',0);
//add axis labels
svg
.append('text')
.attr('class', 'label')
.attr('id', 'x-label')
.attr('x', x_scale((x_extent[0]+x_extent[1])/2))
.attr('y', y_scale(y_extent[0]-3.5))
.text("Week");
svg
.append('text')
.attr('class','label')
.attr('id','y-label')
.attr('x',0).attr('y',0)
.attr('transform', 'translate(' + x_scale(-6) + "," + y_scale((y_extent[0]+y_extent[1])*0.75) + "), rotate(-90)")
.text("Cumulative Net Loss");
//title
svg
.append('text')
.attr('class', 'heading')
.attr('x', width/2)
.attr('y', margin/2)
.attr('text-anchor', 'middle')
.text("NFL Betting Cumulative Net Loss, per $1 Bet");
//legend
svg.append('rect')
.attr('x', x_scale(0.5))
.attr('y', y_scale(-12))
.attr('width', 25)
.attr('height', 3)
.attr('fill', 'blue');
svg.append('text')
.attr('x', x_scale(5))
.attr('y', y_scale(-12.5))
.attr('font-size', '12px')
.text('Against the Spread');
svg.append('rect')
.attr('x', x_scale(0.5))
.attr('y', y_scale(-14))
.attr('width', 25)
.attr('height', 3)
.attr('fill', 'green');
svg.append('text')
.attr('x', x_scale(5))
.attr('y', y_scale(-14.5))
.attr('font-size', '12px')
.text('Money Line');
svg.append('rect')
.attr('x', x_scale(0.5))
.attr('y', y_scale(-16))
.attr('width', 25)
.attr('height', 3)
.attr('fill', 'red');
svg.append('text')
.attr('x', x_scale(5))
.attr('y', y_scale(-16.5))
.attr('font-size', '12px')
.text('Over Under');
//build story container
d3.select("#vizstory").remove();
d3.select("#storycontainer")
.append('p')
.attr('id', "vizstory")
.text("This first graph, showing how much the general public has lost over the last 6 seasons broken down by bet type, \
immediately identifies the oddsmakers' cash cow: the money line. So now that we know to stay away from that one, let's take a \
deeper look into the other two: ATS, and Total. \
(Side note: can you think of any reasons why the moneyline is so much worse for the bettor than the others?)");
}
//drawViz2 function
function drawViz2(data) {
"use strict";
//clear svg
d3.selectAll("svg").remove();
//add tooltip div
var tooltip = d3.select('#vizcontainer')
.append('div')
.attr('class', 'tooltip');
tooltip.append('div').attr('class','explain');
var explainStart = "When the majority of the public (>50%) bets on the team ";
var ODparen = " (as measured by points scored, starting from Week 6)";
var explanations = [
explainStart.concat("that is playing on the road"),
explainStart.concat("that is playing at home"),
explainStart.concat("that is the underdog"),
explainStart.concat("that is the favorite"),
explainStart.concat("that has the better offense").concat(ODparen),
explainStart.concat("that has the worse offense").concat(ODparen),
explainStart.concat("that has the better defense").concat(ODparen),
explainStart.concat("that has the worse defense").concat(ODparen)
];
//build story container
d3.select("#vizstory").remove();
d3.select("#storycontainer")
.append('p')
.attr('id', "vizstory")
.text("This visualization breaks down the oddsmakers profits by the decisions the bettors made on ATS bets:\
whether they sided with the home team, or the favorite, and so on.\
It should be noted that this is being viewed from the perspective of the oddsmakers; that is, a higher\
bar means more profit for the oddsmakers, and more money lost by the public. You can filter\
the data by season and by team at the bottom of the screen.");
//change necessary data types
data.Season = +data.Season;
data.PtsW = +data.PtsW;
data.PtsL = +data.PtsL;
data.Spread = +data.Spread;
data.ATS = +data.ATS;
data.PublicNetATS = +data.PublicNetATS;
//add filters
d3.select(".filters").remove();
d3.select("#vizcontainer").append('div').attr('class', 'filters');
d3.select('.filters').append('p').text('Filter by:')
.attr('id', 'filtersectionlabel');
//season filter
var seasonDropDown = d3.select(".filters").append("select")
.attr("name", "Years")
.attr('id', 'seasonfilter');
d3.select('.filters').append("p").text("Season")
.attr('id','seasonfilterlabel')
.style('left', d3.select("#seasonfilter").style("left"));
var seasonOptionsData = d3.map(data, function(d) {return d.Season;}).keys();
seasonOptionsData.unshift("Any");
var seasonOptions = seasonDropDown.selectAll("option")
.data(seasonOptionsData)
.enter()
.append("option");
seasonOptions.text(function(d) { return d;})
.attr("value", function(d) { return d;});
//team filter
var teamDropDown = d3.select(".filters").append("select")
.attr("name", "Teams")
.attr('id', 'teamfilter');
d3.select('.filters').append("p").text("Team Involved")
.attr('id','teamfilterlabel')
.style('left', d3.select("#teamfilter").style("left"));
var teamOptionsData = d3.map(data, function(d) {return d.Home;}).keys();
teamOptionsData.unshift("Any");
var teamOptions = teamDropDown.selectAll("option")
.data(teamOptionsData)
.enter()
.append('option');
teamOptions.text(function(d) {return d;})
.attr('value', function(d) {return d;});
//first construction
updateChart(data);
d3.select("#seasonfilter")
.on('change', function() {
var selectedSeason = d3.select('#seasonfilter').node().value;
var selectedTeam = d3.select("#teamfilter").node().value;
var filtereddata = data.filter(function(d) {
if(selectedSeason==="Any" && selectedTeam==="Any") {
return d;
} else if(selectedSeason==="Any" && selectedTeam!=="Any") {
return (d.Home===selectedTeam || d.Away===selectedTeam);
} else if(selectedSeason!=="Any" && selectedTeam==="Any") {
return d.Season===selectedSeason;
} else {
return (d.Home===selectedTeam || d.Away===selectedTeam) && d.Season===selectedSeason;
}
});
updateChart(filtereddata);
});
d3.select("#teamfilter")
.on('change', function() {
var selectedSeason = d3.select('#seasonfilter').node().value;
var selectedTeam = d3.select("#teamfilter").node().value;
var filtereddata = data.filter(function(d) {
if(selectedSeason==="Any" && selectedTeam==="Any") {
return d;
} else if(selectedSeason==="Any" && selectedTeam!=="Any") {
return (d.Home===selectedTeam || d.Away===selectedTeam);
} else if(selectedSeason!=="Any" && selectedTeam==="Any") {
return d.Season===selectedSeason;
} else {
return (d.Home===selectedTeam || d.Away===selectedTeam) && d.Season===selectedSeason;
}
});
updateChart(filtereddata);
});
//actual chart constructing function
function updateChart(newdata) {
//clear svg
d3.selectAll("svg").remove();
//aggregate data into more usable dataframe (folded)
function getnet(d) {
return -d.PublicNetATS;
}
function getlength_mean(d) {
return {
Val: d3.mean(d, getnet),
N: d.length
};
}
function addBackZeros(splitObj, sortorderObj) {
var newSplitObj = splitObj;
var presentKeys = newSplitObj.map(function(d) {return d.key;});
var missingKeys = sortorderObj.filter(function(d) {return presentKeys.indexOf(d)===-1;});
for(var i=0; i<missingKeys.length; i++) {
var newkey = missingKeys[i];
var newobj = {
key: newkey,
values: {Val: 0, N: 0}
}
newSplitObj.push(newobj);
}
return newSplitObj;
}
var startWeek = 6;
var sortorder1 = ['Away','Home'];
var HRsplit = d3.nest()
.key(function(d) {
if(d.Home===d.ATSteam) {
return 'Home';
} else {
return 'Away';
};})
.sortKeys(function(a,b) {return sortorder1.indexOf(a) - sortorder1.indexOf(b)})
.rollup(getlength_mean)
.entries(newdata);
HRsplit = addBackZeros(HRsplit, sortorder1);
var sortorder2 = ['TakingPts','LayingPts'];
var LayTakeSplit = d3.nest()
.key(function(d) {
if(d.Favorite=="PickEm") {}
if(d.Favorite===d.ATSteam) {
return "LayingPts";
} else {
return "TakingPts";
};})
.sortKeys(function(a,b) {return sortorder2.indexOf(a) - sortorder2.indexOf(b)})
.rollup(getlength_mean)
.entries(newdata);
LayTakeSplit = addBackZeros(LayTakeSplit, sortorder2);
var sortorder3 = ['BetterO','WorseO'];
var OffSplit = d3.nest()
.key(function(d) {
if(d.ATSteam===d.Home) {
if(d.HomePtsFor>=d.AwayPtsFor) {
return "BetterO";
} else {
return "WorseO";
}
} else {
if(d.HomePtsFor<d.AwayPtsFor) {
return "BetterO";
} else {
return "WorseO";
}
}
})
.sortKeys(function(a,b) {return sortorder3.indexOf(a) - sortorder3.indexOf(b)})
.rollup(getlength_mean)
.entries(newdata.filter(function(d) {return d.Week>=startWeek;}));
OffSplit = addBackZeros(OffSplit, sortorder3);
var sortorder4 = ['BetterD','WorseD'];
var DefSplit = d3.nest()
.key(function(d) {
if(d.ATSteam===d.Home) {
if(d.HomePtsAgt<=d.AwayPtsAgt) {
return "BetterD";
} else {
return "WorseD";
}
} else {
if(d.HomePtsAgt>=d.AwayPtsAgt) {
return "BetterD";
} else {
return "WorseD";
}
}
})
.sortKeys(function(a,b) {return sortorder4.indexOf(a) - sortorder4.indexOf(b)})
.rollup(getlength_mean)
.entries(newdata.filter(function(d) {return d.Week>=startWeek;}));
DefSplit = addBackZeros(DefSplit, sortorder4);
var alldata = [];
[HRsplit,LayTakeSplit,OffSplit,DefSplit].forEach(function(d) {
d.forEach(function(k) {
var newObj = {group: k.key, ats: k.values.Val, n: k.values.N};
alldata.push(newObj);
});});
//setup margins and width/height
var margin = 100;
var width = 900 - margin;
var height = 500 - margin;
//construct svg
var svg = d3.select("#vizcontainer")
.append("svg")
.attr("width", width + margin)
.attr("height", height + margin)
.attr('x', 0)
.attr('y', 0)
.append('g');
//y axis
var y_extent = d3.extent(alldata, function(d) {return d.ats;});
y_extent[0] = y_extent[0]-0.02;
var y_scale = d3.scale.linear()
.range([height, margin])
.domain(y_extent);
var y_axis = d3.svg.axis()
.scale(y_scale)
.orient("left");
svg
.append('g')
.attr('class', 'y axis')
.attr('transform', "translate(" + margin + ",0)")
.call(y_axis);
//if y-axis has 0 on it, put a dotted line there for visual reference
if(0>y_extent[0]) {
svg
.append("line")
.attr("x1", margin)
.attr("y1", y_scale(0))
.attr("x2", width)
.attr("y2", y_scale(0))
.attr("stroke-width", 1)
.attr('opacity',0.5)
.attr("stroke", "black")
.style("stroke-dasharray", "3,3");
};
//x "axis" starting points
//domain of 1,2,3,4 because there are 4 stats to be plotted, with even spacing
var x_scale = d3.scale.linear()
.range([margin, width])
.domain([0, 4]);
//data bar width
var bw = 30;
var xs = [0.5, 0.5, 1.5, 1.5, 2.5, 2.5, 3.5, 3.5];
var groupinds = [0,1,0,1,0,1,0,1];
var groupnums = [0,0,1,1,2,2,3,3];
var groupnamescolors = [
['Location', 'blue'],
['Spread', 'green'],
['Offense', 'red'],
['Defense', 'purple']
];
var allbars = svg
.selectAll(".bar")
.data(alldata)
.enter()
.append('rect')
.attr('class', 'bar')
.attr('x',0).attr('y',0)
.attr('transform', function(d,i) {
return 'translate('+
(x_scale(xs[i]) + (groupinds[i]*(bw+3)))
+','+
y_scale(y_extent[0])
+') rotate(180)'})
.attr('width',bw)
.attr('height', 0)
.attr('fill', function(d, i) {
return groupnamescolors[groupnums[i]][1];})
.on("mouseover", function(d, i) {
d3.select(this).style("fill", "grey");
tooltip.select('.explain')
.html("Average loss: $" + (Math.round(d.ats*1000)/1000) +
"<br>" + explanations[i] + "<br>" +
"<strong>" + d.n + " observations" + "</strong>");
tooltip.style("left", (d3.event.pageX + bw) + "px")
tooltip.style("top", (d3.event.pageY) + "px")
tooltip.style('display','block');
})
.on("mouseout", function(d,i) {
var color = groupnamescolors[groupnums[i]][1];
d3.select(this).style('fill',color);
tooltip.style('display','none');
});
var trans_scale = d3.scale.linear()
.domain(y_extent)
.range([1000,2500]);
allbars.transition()
.duration(function(d) {return trans_scale(d.ats)})
.delay(100)
.attr("height", function(d) {
if(d.n===0) {
return 0;
} else {
return y_scale(y_extent[0])-y_scale(d.ats);
}});
var singleLabels = svg
.selectAll(".xsinglelabs")
.data(alldata)
.enter()
.append('text')
.attr('class', 'xsinglelabs')
.attr('x',0).attr('y',0)
.attr('transform', function(d,i) {
return 'translate('+
(x_scale(xs[i]) + (groupinds[i]*(bw+3)) - bw)
+', ' +
(y_scale(y_extent[0])+10)
+
') rotate(45)'})
.text(function(d) {return d.group;});
xs = [0.5, 1.5, 2.5, 3.5];
var groupLabels = svg
.selectAll(".xgrouplabs")
.data(groupnamescolors)
.enter()
.append('text')
.attr('class', 'xgrouplabs')
.attr('x', function(d,i) {return x_scale(0.5+i)-bw})
.attr('y', y_scale(y_extent[0])+70)
.attr('color', function(d) {return d[1]})
.text(function(d) {return d[0]});
//add title
svg
.append('text')
.attr('class', 'heading')
.attr('x', width/2)
.attr('y', margin/2)
.attr('text-anchor', 'middle')
.text("ATS: Oddsmakers' Profit per $1 Bet When Majority Bets On...");
}
}
//drawViz3 function
function drawViz3(data) {
"use strict";
//clear svg
d3.selectAll("svg").remove();
//add tooltip div
var tooltip = d3.select('#vizcontainer')
.append('div')
.attr('class', 'tooltip');
tooltip.append('div').attr('class','explain');
var explainStart = "When the majority of the public (>50%) ";
var ppgMid = " when the total points-per-game between the 2 teams from weeks prior ";
var ppgEnd = " (starting from Week 6)";
var explanations = [
explainStart.concat("takes the Over"),
explainStart.concat("takes the Under"),
explainStart.concat("takes the Over in Prime Time games (the nationally televised nighttime games)"),
explainStart.concat("takes the Under in Prime Time games (the nationally televised nighttime games)"),
explainStart.concat("takes the <strong>Over</strong>").concat(ppgMid)
.concat("is <strong>greater than</strong> the line").concat(ppgEnd),
explainStart.concat("takes the <strong>Under</strong>").concat(ppgMid)
.concat("is <strong>greater than</strong> the line").concat(ppgEnd),
explainStart.concat("takes the <strong>Over</strong>").concat(ppgMid)
.concat("is <strong>less than</strong> the line").concat(ppgEnd),
explainStart.concat("takes the <strong>Under</strong>").concat(ppgMid)
.concat("is <strong>less than</strong> the line").concat(ppgEnd)
];
//build story container
d3.select("#vizstory").remove();
d3.select("#storycontainer")
.append('p')
.attr('id', "vizstory")
.style("font-size", "14.5px")
.text("This final visualization shows a breakdown of the oddsmakers profits on over and under bets in\
all games, primetime games, games where the teams' offenses were better than the line suggested,\
and games where they were worse. As before, the perspective is the oddsmakers', and\
you can filter the data by season and team at the bottom of the screen. Note: you may notice, when\
using both filters, that some bars disappear for the Under group; this is due to the lack of overall\
bets on the under; these subsets simply have 0 observations.");
//change necessary data types
data.Season = +data.Season;
data.PtsW = +data.PtsW;
data.PtsL = +data.PtsL;
data.Total = +data.Total;
data.TOT = +data.TOT;
data.TOTside = +data.TOTside;
data.PublicNetTOT = +data.PublicNetTOT;
data.HomePtsFor = data.HomePtsFor;
data.AwayPtsFor = data.AwayPtsFor;
//add filters
d3.select(".filters").remove();
d3.select("#vizcontainer").append('div').attr('class', 'filters');
d3.select('.filters').append('p').text('Filter by:')
.attr('id', 'filtersectionlabel');
//season filter
var seasonDropDown = d3.select(".filters").append("select")
.attr("name", "Years")
.attr('id', 'seasonfilter');
d3.select('.filters').append("p").text("Season")
.attr('id','seasonfilterlabel')
.style('left', d3.select("#seasonfilter").style("left"));
var seasonOptionsData = d3.map(data, function(d) {return d.Season;}).keys();
seasonOptionsData.unshift("Any");
var seasonOptions = seasonDropDown.selectAll("option")
.data(seasonOptionsData)
.enter()
.append("option");
seasonOptions.text(function(d) { return d;})
.attr("value", function(d) { return d;});
//team filter
var teamDropDown = d3.select(".filters").append("select")
.attr("name", "Teams")
.attr('id', 'teamfilter');
d3.select('.filters').append("p").text("Team Involved")
.attr('id','teamfilterlabel')
.style('left', d3.select("#teamfilter").style("left"));
var teamOptionsData = d3.map(data, function(d) {return d.Home;}).keys();
teamOptionsData.unshift("Any");
var teamOptions = teamDropDown.selectAll("option")
.data(teamOptionsData)
.enter()
.append('option');
teamOptions.text(function(d) {return d;})
.attr('value', function(d) {return d;});
//first construction
updateChart(data);
//when filter is used, data changes
d3.select("#seasonfilter")
.on('change', function() {
var selectedSeason = d3.select('#seasonfilter').node().value;
var selectedTeam = d3.select("#teamfilter").node().value;
var filtereddata = data.filter(function(d) {
if(selectedSeason==="Any" && selectedTeam==="Any") {
return d;
} else if(selectedSeason==="Any" && selectedTeam!=="Any") {
return (d.Home===selectedTeam || d.Away===selectedTeam);
} else if(selectedSeason!=="Any" && selectedTeam==="Any") {
return d.Season===selectedSeason;
} else {
return (d.Home===selectedTeam || d.Away===selectedTeam) && d.Season===selectedSeason;
}
});
updateChart(filtereddata);
});
d3.select("#teamfilter")
.on('change', function() {
var selectedSeason = d3.select('#seasonfilter').node().value;
var selectedTeam = d3.select("#teamfilter").node().value;
var filtereddata = data.filter(function(d) {
if(selectedSeason==="Any" && selectedTeam==="Any") {
return d;
} else if(selectedSeason==="Any" && selectedTeam!=="Any") {
return (d.Home===selectedTeam || d.Away===selectedTeam);
} else if(selectedSeason!=="Any" && selectedTeam==="Any") {
return d.Season===selectedSeason;
} else {
return (d.Home===selectedTeam || d.Away===selectedTeam) && d.Season===selectedSeason;
}
})
updateChart(filtereddata);
});
//actual chart constructing function
function updateChart(newdata) {
//clear svg
d3.selectAll("svg").remove();
//aggregate data into more usable dataframe (folded)
function getnet(d) {
return -d.PublicNetTOT;
}
function getside(d) {
if(parseInt(d.TOTside)==1) {
return 'Over';
} else {
return 'Under';
}
}
function getlength_mean(d) {
return {
Val: d3.mean(d, getnet),
N: d.length
};
}
function addBackZeros(splitObj, sortorderObj) {
var newSplitObj = splitObj;
var presentKeys = newSplitObj.map(function(d) {return d.key;});
var missingKeys = sortorderObj.filter(function(d) {return presentKeys.indexOf(d)===-1;});
for(var i=0; i<missingKeys.length; i++) {
var newkey = missingKeys[i];
var newobj = {
key: newkey,
values: {Val: 0, N: 0}
}
newSplitObj.push(newobj);
}
return newSplitObj;
}
var startWeek = 6;
var sortorder = ['Over','Under'];
var OUsplit = d3.nest()
.key(getside)
.sortKeys(function(a,b) {return sortorder.indexOf(a) - sortorder.indexOf(b)})
.rollup(getlength_mean)
.entries(newdata);
OUsplit = addBackZeros(OUsplit, sortorder);
var PrimeSplit = d3.nest()
.key(getside)
.sortKeys(function(a,b) {return sortorder.indexOf(a) - sortorder.indexOf(b)})
.rollup(getlength_mean)
.entries(newdata.filter(function(d) {
return parseInt(d.Prime)===1;
}));
PrimeSplit = addBackZeros(PrimeSplit, sortorder);
var PPGoverSplit = d3.nest()
.key(getside)
.sortKeys(function(a,b) {return sortorder.indexOf(a) - sortorder.indexOf(b)})
.rollup(getlength_mean)
.entries(newdata.filter(function(d) {
return d.Week>=startWeek && (parseInt(d.HomePtsFor)+parseInt(d.AwayPtsFor))>=d.Total;
}));
PPGoverSplit = addBackZeros(PPGoverSplit, sortorder);
var PPGunderSplit = d3.nest()
.key(getside)
.sortKeys(function(a,b) {return sortorder.indexOf(a) - sortorder.indexOf(b)})
.rollup(getlength_mean)
.entries(newdata.filter(function(d) {
return d.Week>=startWeek && (parseInt(d.HomePtsFor)+parseInt(d.AwayPtsFor))<d.Total;
}));
PPGunderSplit = addBackZeros(PPGunderSplit, sortorder);
var alldata = [];
[OUsplit,PrimeSplit,PPGoverSplit,PPGunderSplit].forEach(function(d) {
d.forEach(function(k) {
var newObj = {group: k.key, tot: k.values.Val, n: k.values.N};
alldata.push(newObj);
});});
//setup margins and width/height
var margin = 100;
var width = 900 - margin;
var height = 500 - margin;
//construct svg
var svg = d3.select("#vizcontainer")
.append("svg")
.attr("width", width + margin)
.attr("height", height + margin)
.attr('x', 0)
.attr('y', 0)
.append('g');
//y axis
var y_extent = d3.extent(alldata, function(d) {return d.tot;});
y_extent[0] = y_extent[0]-0.02;
var y_scale = d3.scale.linear()
.range([height, margin])
.domain(y_extent);
var y_axis = d3.svg.axis()
.scale(y_scale)
.orient("left");
svg
.append('g')
.attr('class', 'y axis')
.attr('transform', "translate(" + margin + ",0)")
.call(y_axis);
//if y-axis has 0 on it, put a dotted line there for visual reference
if(0>y_extent[0]) {
svg
.append("line")
.attr("x1", margin)
.attr("y1", y_scale(0))
.attr("x2", width)
.attr("y2", y_scale(0))
.attr("stroke-width", 1)
.attr('opacity',0.5)
.attr("stroke", "black")
.style("stroke-dasharray", "3,3");
};
//x "axis" starting points
//domain of 1,2,3,4 because there are 4 stats to be plotted, with even spacing
var x_scale = d3.scale.linear()
.range([margin, width])
.domain([0, 4]);
//data bar width
var bw = 30;
var xs = [0.5, 0.5, 1.5, 1.5, 2.5, 2.5, 3.5, 3.5];
var groupinds = [0,1,0,1,0,1,0,1];
var groupnums = [0,0,1,1,2,2,3,3];
var groupnamescolors = [
['All Games', 'blue'],
['Prime Time', 'green'],
['PPG Greater', 'red'],
['PPG Less', 'purple']
];
var allbars = svg
.selectAll(".bar")
.data(alldata)
.enter()
.append('rect')
.attr('class', 'bar')
.attr('x',0).attr('y',0)
.attr('transform', function(d,i) {
return 'translate('+
(x_scale(xs[i]) + (groupinds[i]*(bw+3)))
+','+
y_scale(y_extent[0])
+') rotate(180)'})
.attr('width',bw)
.attr('height', 0)
.attr('fill', function(d, i) {
return groupnamescolors[groupnums[i]][1];})
.on("mouseover", function(d,i) {
d3.select(this).style("fill", "grey");
tooltip.select('.explain')
.html("Average loss: $" + (Math.round(d.tot*1000)/1000) +
"<br>" + explanations[i] + "<br>" +
"<strong>"+d.n + " observations"+"</strong>");
tooltip.style("left", (d3.event.pageX + bw) + "px")
tooltip.style("top", (d3.event.pageY) + "px")
tooltip.style('display','block');
})
.on("mouseout", function(d,i) {
var color = groupnamescolors[groupnums[i]][1];
d3.select(this).style('fill',color);
tooltip.style('display','none');
});
var trans_scale = d3.scale.linear()
.domain(y_extent)
.range([1000,2500]);
allbars.transition()
.duration(function(d) {return trans_scale(d.tot)})
.delay(100)
.attr("height", function(d) {
if(d.n===0) {
return 0;
} else {
return y_scale(y_extent[0])-y_scale(d.tot);
}
});
var singleLabels = svg
.selectAll(".xsinglelabs")
.data(alldata)
.enter()
.append('text')
.attr('class', 'xsinglelabs')
.attr('x',0).attr('y',0)
.attr('transform', function(d,i) {
return 'translate('+
(x_scale(xs[i]) + (groupinds[i]*(bw+3)) - bw)
+', ' +
(y_scale(y_extent[0])+10)
+
') rotate(45)'})
.text(function(d,i) {
if(i%2===0) {
return "Over";
} else {
return "Under";
}
});
xs = [0.5, 1.5, 2.5, 3.5];
var groupLabels = svg
.selectAll(".xgrouplabs")
.data(groupnamescolors)
.enter()
.append('text')
.attr('class', 'xgrouplabs')
.attr('x', function(d,i) {return x_scale(0.5+i)-bw})
.attr('y', y_scale(y_extent[0])+70)
.attr('color', function(d) {return d[1]})
.text(function(d) {return d[0]});
//add title
svg
.append('text')
.attr('class', 'heading')
.attr('x', width/2)
.attr('y', margin/2)
.attr('text-anchor', 'middle')
.text("Over/Under: Oddsmakers' Profit per $1 Bet When Majority Bets On...");
}
}
drawAnyViz(1);
var vizNum = 1;
function backButton() {
if(vizNum===3) {
d3.select("#forwardbutton").style("visibility","visible").style("display","initial");
vizNum += -1;
drawAnyViz(vizNum);
} else if(vizNum===2) {
vizNum += -1;
drawAnyViz(vizNum);
d3.select("#backbutton").style("visibility","hidden");
}
}
function forwardButton() {
if(vizNum===1) {
d3.select("#backbutton").style("visibility","visible").style("display","initial");
vizNum += 1;
drawAnyViz(vizNum);
} else if(vizNum===2) {
d3.select("#backbutton").style("visibility","visible").style("display","initial");
vizNum += 1;
drawAnyViz(vizNum);
d3.select("#forwardbutton").style("visibility","hidden");
}
}
</script>
</head>
<body>
<div id="container">
<div id="vizcontainer"></div>
<div id="buffer"></div>
<div id="storycontainer">
<p id="storyintro">There are 3 main ways to bet on an NFL game: against the
<a href="http://pregame.com/EN/main/sports-betting-basics/glossary/terms/against-the-spread.html">spread</a>,
on the <a href="http://pregame.com/EN/main/sports-betting-basics/glossary/terms/money-line.html">money line</a>,
or on the <a href="http://pregame.com/EN/main/sports-betting-basics/glossary/terms/over-under-total.html">over/under</a>.
each method is popular in its own right, but let's take a closer look at the outcomes of each over the last few years.
<br><br>
<u>The question is:</u><br>
How can you best win money betting on football? (Or I suppose, how can you lose the least?)
</p>
<p id="navvizsentence">Navigate the 3 visualizations...</p>
<div id="navbuttons">
<input name="backButton"
id="backbutton"
class="navbuttons"
type="button"
value="Previous"
onclick="backButton()" />
<input name="forwardButton"
id="forwardbutton"
class="navbuttons"
type="button"
value="Next"
onclick="forwardButton()" />
</div>
</div>
</div>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<script src="http://d3js.org/d3.v3.min.js"></script>
<script src="http://dimplejs.org/dist/dimple.v2.0.0.min.js"></script>
<style>
#maincontainer {
width:900px;
height: 600px;
float:left;
margin-right: 50px;
}
#vizcontainer {
width: 900px;
height: 550px;
}
#viznavcontainer {
width: 900px;
height: 50px;
}
#storycontainer {
width:300px;
height: 500px;
float:left;
padding-top: 5%;
margin-left: 50px;
font-size: 14.5px;
}
h1 {
color: black;
text-align: center;
}
.heading {
font-family: arial;
font-size: 24px;
font-weight: bold;
}
.axis {
font-family: Verdana;
font-size: 0.6em;
}
path {
fill: none;
stroke: black;
stroke-width: 2px;
}
.tick {
fill: none;
stroke: black;
}
.xsinglelabs {
font-size: 14px;
}
.xgrouplabs {
font-size: 18px;
font-weight: bold;
}
.tooltip {
background: #eee;
box-shadow: 0 0 5px #999999;
color: #333;
display: none;
font-size: 12px;
padding: 10px;
position: absolute;
text-align: center;
width: 120px;
z-index: 10;
}
.filters {
position: absolute;
left: 0;
bottom: 0;
width: 500px;
height: 50px;
border: 1px solid #cdcdcd;
border-color: rgba(0,0,0,.15);
background-color: #DCDCDC;
margin-bottom: 50px;
margin-left: 100px;
padding-top: 3px;
}
#seasonfilter {
position: absolute;
left: 150px;
width: 100px;
}
#teamfilter {
position: absolute;
left: 300px;
width: 175px;
}
#seasonfilterlabel {
position: absolute;
top: 5px;
}
#filtersectionlabel {
position: absolute;
left: 25px;
top: 5px;
font-weight: bold;
}
#teamfilterlabel {
position: absolute;
top: 5px;
}
.navbuttons {
background: #3498db;
background-image: -webkit-linear-gradient(top, #3498db, #2980b9);
background-image: -moz-linear-gradient(top, #3498db, #2980b9);
background-image: -ms-linear-gradient(top, #3498db, #2980b9);
background-image: -o-linear-gradient(top, #3498db, #2980b9);
background-image: linear-gradient(to bottom, #3498db, #2980b9);
-webkit-border-radius: 28;
-moz-border-radius: 28;
border-radius: 28px;
font-family: Arial;
color: #ffffff;
font-size: 20px;
padding: 10px 20px 10px 20px;
text-decoration: none;
margin-top: 10px;
margin-bottom: 10px;
}
.navbuttons:hover {
background: #3cb0fd;
background-image: linear-gradient(to bottom, #3cb0fd, #3498db);
cursor: pointer;
text-decoration: none;
}
.navbuttons:focus {
outline:0;
}
#backbutton {
margin-right: 30px;
visibility: hidden;
}
#forwardbutton {
margin-left: 30px;
}
#vizstory {
border: 1px solid #cdcdcd;
padding: 4px;
border-color: rgba(0,0,0,.15);
border-radius: 10px;
background-color: #DCDCDC;
font-size: 14.5px;
}
#storyintro {
border: 1px solid #cdcdcd;
padding: 4px;
border-color: rgba(0,0,0,.15);
border-radius: 10px;
background-color: #DCDCDC;
}
#navvizsentence {
padding: 5px;
font-weight: bold;
text-align: center;
}
</style>
<script type="text/javascript">
//complete function
function drawAnyViz(num) {
if(num===1) {
d3.csv("https://gist.githubusercontent.com/ntaylorwss/421b61e55f4ec9efe350/raw/71cffca8507a0a8315ad91fd398860d9d5f3132b/NFLdataViz1.csv", drawViz1);
} else if (num===2) {
d3.csv("https://gist.githubusercontent.com/ntaylorwss/421b61e55f4ec9efe350/raw/71cffca8507a0a8315ad91fd398860d9d5f3132b/NFLdataViz2.csv", drawViz2);
} else {
d3.csv("https://gist.githubusercontent.com/ntaylorwss/421b61e55f4ec9efe350/raw/71cffca8507a0a8315ad91fd398860d9d5f3132b/NFLdataViz3.csv", drawViz3);
}
}
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//drawViz1 function
function drawViz1(data) {
"use strict";
//clear svg
d3.selectAll("svg").remove();
//clear filters
d3.select('.filters').remove();
//Convert data to numeric
data.OverallWeek = +data.OverallWeek;
data.PublicNetATS = +data.PublicNetATS;
data.PublicNetML = +data.PublicNetML;
data.PublicNetTOT = +data.PublicNetTOT;
//setup svg area
var margin = 75;
var width = 900-margin;
var height = 550-margin;
var svg = d3.select("#vizcontainer")
.append("svg")
.attr("width", width + margin)
.attr("height", height + margin)
.attr('x', 0)
.attr('y', 0)
.append('g');
// setup X axis
var x_extent = [0, 115];
var x_scale = d3.scale.linear()
.range([margin, width])
.domain(x_extent);
var x_axis = d3.svg.axis()
.scale(x_scale)
.ticks(5);
// setup Y axis
var y_extent = [-24, 2];
var y_scale = d3.scale.linear()
.range([height, margin])
.domain(y_extent);
var y_axis = d3.svg.axis()
.scale(y_scale)
.orient("left");
//add axes
svg
.append('g')
.attr('class', 'x axis')
.attr('transform', "translate(0," + height + ")")
.call(x_axis);
svg
.append('g')
.attr('class', 'y axis')
.attr('transform', "translate(" + margin + ",0)")
.call(y_axis);
//add line at 0 on y axis
svg
.append("line")
.attr("x1", margin)
.attr("y1", y_scale(0))
.attr("x2", width)
.attr("y2", y_scale(0))
.attr("stroke-width", 1)
.attr('opacity',0.5)
.attr("stroke", "black");
//add dotted lines for seasons
var seasonBreaks = [];
for(var i=0; i<=5; i++) {
seasonBreaks[i] = {'Year': 2010+i, 'Week': (i+1) * 17};
}
var sbreaks = svg
.selectAll('.seasonbreaks')
.data(seasonBreaks)
.enter()
.append('line')
.attr('x1', function(d) {return x_scale(d.Week);})
.attr('x2', function(d) {return x_scale(d.Week);})
.attr('y1', y_scale(y_extent[0]))
.attr('y2', y_scale(y_extent[1]))
.attr("class", "seasonbreaks")
.style('stroke-dasharray', "3, 3")
.attr("stroke-width", 1)
.attr('opacity',0.5)
.attr("stroke", "black");
svg
.selectAll('.seasonlabels')
.data(seasonBreaks)
.enter()
.append('text')
.attr('class', 'seasonlabels')
.attr('x', function(d) {return x_scale(d['Week'])})
.attr('y', y_scale(y_extent[0])-2)
.style('font-size', '12px')
.text(function(d) {return d['Year']});
//add data line plot
var interpolation = "linear";
var lineATS = d3.svg.line()
.x(function(d) {return x_scale(d.OverallWeek);})
.y(function(d) {return y_scale(d.PublicNetATS);})
.interpolate(interpolation);
var lineML = d3.svg.line()
.x(function(d) {return x_scale(d.OverallWeek);})
.y(function(d) {return y_scale(d.PublicNetML);})
.interpolate(interpolation);
var lineTOT = d3.svg.line()
.x(function(d) {return x_scale(d.OverallWeek);})
.y(function(d) {return y_scale(d.PublicNetTOT);})
.interpolate(interpolation);
var lineTDur = 1500;
svg
.append('path')
.attr("class", "line")
.attr('d', lineATS(data))
.attr('stroke-width', 2)
.style('stroke', 'blue')
.attr('fill', 'none')
.attr('stroke-dasharray', function() {
return this.getTotalLength() + " " + this.getTotalLength();
})
.attr('stroke-dashoffset', function() {
return this.getTotalLength();
})
.transition()
.duration(lineTDur)
.ease('linear')
.attr('stroke-dashoffset',0);
svg
.append('path')
.attr("class", "line")
.attr('d', lineML(data))
.attr('stroke-width', 2)
.style('stroke', 'green')
.attr('fill', 'none')
.attr('stroke-dasharray', function() {
return this.getTotalLength() + " " + this.getTotalLength();
})
.attr('stroke-dashoffset', function() {
return this.getTotalLength();
})
.transition()
.duration(lineTDur)
.ease('linear')
.attr('stroke-dashoffset',0);
svg
.append('path')
.attr("class", "line")
.attr('d', lineTOT(data))
.attr('stroke-width', 2)
.style('stroke','red')
.attr('fill', 'none')
.attr('stroke-dasharray', function() {
return this.getTotalLength() + " " + this.getTotalLength();
})
.attr('stroke-dashoffset', function() {
return this.getTotalLength();
})
.transition()
.duration(lineTDur)
.ease('linear')
.attr('stroke-dashoffset',0);
//add axis labels
svg
.append('text')
.attr('class', 'label')
.attr('id', 'x-label')
.attr('x', x_scale((x_extent[0]+x_extent[1])/2))
.attr('y', y_scale(y_extent[0]-3.5))
.text("Week");
svg
.append('text')
.attr('class','label')
.attr('id','y-label')
.attr('x',0).attr('y',0)
.attr('transform', 'translate(' + x_scale(-6) + "," + y_scale((y_extent[0]+y_extent[1])*0.75) + "), rotate(-90)")
.text("Cumulative Net Loss in Dollars");
//title
svg
.append('text')
.attr('class', 'heading')
.attr('x', width/2)
.attr('y', margin/2)
.attr('text-anchor', 'middle')
.text("NFL Betting Cumulative Net Loss, per $1 Bet");
//legend
var legendLabels = [
{stat: 'Against the Spread', color: 'blue'},
{stat: 'Money Line', color: 'green'},
{stat: 'Over/Under', color: 'red'}
];
svg.selectAll('rect')
.data(legendLabels)
.enter()
.append('rect')
.attr('x', x_scale(0.5))
.attr('y', function(d,i) {return y_scale(-(12+2*i));})
.attr('width', 25)
.attr('height', 3)
.attr('fill', function(d,i) {return legendLabels[i].color;});
svg.selectAll('.legendtext')
.data(legendLabels)
.enter()
.append('text')
.attr('class', 'legendtext')
.attr('x', x_scale(5))
.attr('y', function(d,i) {return y_scale(-(12.5+2*i));})
.attr('font-size', '12px')
.text(function(d) {return d.stat;});
svg.append('rect')
.attr('x', 0)
.attr('y', 0)
.attr('transform', 'translate('+x_scale(1)+','+y_scale(-18)+'), rotate(30)')
.attr('width', 25)
.attr('height', 3)
.attr('fill', 'black');
svg.append('text')
.attr('x', x_scale(5))
.attr('y', y_scale(-18.5))
.attr('font-size', '12px')
.text('Slope: Rate of loss');
//build story container
d3.select("#vizstory").remove();
d3.select("#storycontainer")
.append('p')
.attr('id', "vizstory")
.text("This first graph, showing how much the general public has lost over the last 6 seasons broken down by bet type, \
immediately identifies the oddsmakers' cash cow: the money line. So now that we know to stay away from that one, let's take a \
deeper look into the other two: ATS, and Total. \
(Side note: can you think of any reasons why the moneyline is so much worse for the bettor than the others?)");
}
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//drawViz2 function
function drawViz2(data) {
"use strict";
//clear svg
d3.selectAll("svg").remove();
//add tooltip div
var tooltip = d3.select('#maincontainer')
.append('div')
.attr('class', 'tooltip');
tooltip.append('div').attr('class','explain');
var explainStart = "When the majority of the public (>50%) bets on the team ";
var ODparen = " (as measured by points scored, starting from Week 6)";
var explanations = [
explainStart.concat("that is playing on the road"),
explainStart.concat("that is playing at home"),
explainStart.concat("that is the underdog"),
explainStart.concat("that is the favorite"),
explainStart.concat("that has the better offense").concat(ODparen),
explainStart.concat("that has the worse offense").concat(ODparen),
explainStart.concat("that has the better defense").concat(ODparen),
explainStart.concat("that has the worse defense").concat(ODparen)
];
//build story container
d3.select("#vizstory").remove();
d3.select("#storycontainer")
.append('p')
.attr('id', "vizstory")
.text("This visualization breaks down the oddsmakers profits by the decisions the bettors made on ATS bets:\
whether they sided with the home team, or the favorite, and so on.\
It should be noted that this is being viewed from the perspective of the oddsmakers; that is, a higher\
bar means more profit for the oddsmakers, and more money lost by the public. You can filter\
the data by season and by team at the bottom of the screen.");
//change necessary data types
data.Season = +data.Season;
data.PtsW = +data.PtsW;
data.PtsL = +data.PtsL;
data.Spread = +data.Spread;
data.ATS = +data.ATS;
data.PublicNetATS = +data.PublicNetATS;
//add filters
d3.select(".filters").remove();
d3.select("#viznavcontainer").append('div').attr('class', 'filters');
d3.select('.filters').append('p').text('Filter by:')
.attr('id', 'filtersectionlabel');
//season filter
var seasonDropDown = d3.select(".filters").append("select")
.attr("name", "Years")
.attr('id', 'seasonfilter');
d3.select('.filters').append("p").text("Season")
.attr('id','seasonfilterlabel')
.style('left', d3.select("#seasonfilter").style("left"));
var seasonOptionsData = d3.map(data, function(d) {return d.Season;}).keys();
seasonOptionsData.unshift("Any");
var seasonOptions = seasonDropDown.selectAll("option")
.data(seasonOptionsData)
.enter()
.append("option");
seasonOptions.text(function(d) { return d;})
.attr("value", function(d) { return d;});
//team filter
var teamDropDown = d3.select(".filters").append("select")
.attr("name", "Teams")
.attr('id', 'teamfilter');
d3.select('.filters').append("p").text("Team Involved")
.attr('id','teamfilterlabel')
.style('left', d3.select("#teamfilter").style("left"));
var teamOptionsData = d3.map(data, function(d) {return d.Home;}).keys();
teamOptionsData.unshift("Any");
var teamOptions = teamDropDown.selectAll("option")
.data(teamOptionsData)
.enter()
.append('option');
teamOptions.text(function(d) {return d;})
.attr('value', function(d) {return d;});
//first construction
updateChart(data);
d3.select("#seasonfilter")
.on('change', function() {
var selectedSeason = d3.select('#seasonfilter').node().value;
var selectedTeam = d3.select("#teamfilter").node().value;
var filtereddata = data.filter(function(d) {
if(selectedSeason==="Any" && selectedTeam==="Any") {
return d;
} else if(selectedSeason==="Any" && selectedTeam!=="Any") {
return (d.Home===selectedTeam || d.Away===selectedTeam);
} else if(selectedSeason!=="Any" && selectedTeam==="Any") {
return d.Season===selectedSeason;
} else {
return (d.Home===selectedTeam || d.Away===selectedTeam) && d.Season===selectedSeason;
}
});
updateChart(filtereddata);
});
d3.select("#teamfilter")
.on('change', function() {
var selectedSeason = d3.select('#seasonfilter').node().value;
var selectedTeam = d3.select("#teamfilter").node().value;
var filtereddata = data.filter(function(d) {
if(selectedSeason==="Any" && selectedTeam==="Any") {
return d;
} else if(selectedSeason==="Any" && selectedTeam!=="Any") {
return (d.Home===selectedTeam || d.Away===selectedTeam);
} else if(selectedSeason!=="Any" && selectedTeam==="Any") {
return d.Season===selectedSeason;
} else {
return (d.Home===selectedTeam || d.Away===selectedTeam) && d.Season===selectedSeason;
}
});
updateChart(filtereddata);
});
//actual chart constructing function
function updateChart(newdata) {
//clear svg
d3.selectAll("svg").remove();
//aggregate data into more usable dataframe (folded)
function getnet(d) {
return -d.PublicNetATS;
}
function getlength_mean(d) {
return {
Val: d3.mean(d, getnet),
N: d.length
};
}
function addBackZeros(splitObj, sortorderObj) {
var newSplitObj = splitObj;
var presentKeys = newSplitObj.map(function(d) {return d.key;});
var missingKeys = sortorderObj.filter(function(d) {return presentKeys.indexOf(d)===-1;});
for(var i=0; i<missingKeys.length; i++) {
var newkey = missingKeys[i];
var newobj = {
key: newkey,
values: {Val: 0, N: 0}
}
newSplitObj.push(newobj);
}
return newSplitObj;
}
var startWeek = 6;
var sortorder1 = ['Away','Home'];
var HRsplit = d3.nest()
.key(function(d) {
if(d.Home===d.ATSteam) {
return 'Home';
} else {
return 'Away';
};})
.sortKeys(function(a,b) {return sortorder1.indexOf(a) - sortorder1.indexOf(b)})
.rollup(getlength_mean)
.entries(newdata);
HRsplit = addBackZeros(HRsplit, sortorder1);
var sortorder2 = ['TakingPts','LayingPts'];
var LayTakeSplit = d3.nest()
.key(function(d) {
if(d.Favorite=="PickEm") {}
if(d.Favorite===d.ATSteam) {
return "LayingPts";
} else {
return "TakingPts";
};})
.sortKeys(function(a,b) {return sortorder2.indexOf(a) - sortorder2.indexOf(b)})
.rollup(getlength_mean)
.entries(newdata);
LayTakeSplit = addBackZeros(LayTakeSplit, sortorder2);
var sortorder3 = ['BetterO','WorseO'];
var OffSplit = d3.nest()
.key(function(d) {
if(d.ATSteam===d.Home) {
if(d.HomePtsFor>=d.AwayPtsFor) {
return "BetterO";
} else {
return "WorseO";
}
} else {
if(d.HomePtsFor<d.AwayPtsFor) {
return "BetterO";
} else {
return "WorseO";
}
}
})
.sortKeys(function(a,b) {return sortorder3.indexOf(a) - sortorder3.indexOf(b)})
.rollup(getlength_mean)
.entries(newdata.filter(function(d) {return d.Week>=startWeek;}));
OffSplit = addBackZeros(OffSplit, sortorder3);
var sortorder4 = ['BetterD','WorseD'];
var DefSplit = d3.nest()
.key(function(d) {
if(d.ATSteam===d.Home) {
if(d.HomePtsAgt<=d.AwayPtsAgt) {
return "BetterD";
} else {
return "WorseD";
}
} else {
if(d.HomePtsAgt>=d.AwayPtsAgt) {
return "BetterD";
} else {
return "WorseD";
}
}
})
.sortKeys(function(a,b) {return sortorder4.indexOf(a) - sortorder4.indexOf(b)})
.rollup(getlength_mean)
.entries(newdata.filter(function(d) {return d.Week>=startWeek;}));
DefSplit = addBackZeros(DefSplit, sortorder4);
var alldata = [];
[HRsplit,LayTakeSplit,OffSplit,DefSplit].forEach(function(d) {
d.forEach(function(k) {
var newObj = {group: k.key, ats: k.values.Val, n: k.values.N};
alldata.push(newObj);
});});
//setup margins and width/height
var margin = 100;
var width = 900 - margin;
var height = 500 - margin;
//construct svg
var svg = d3.select("#vizcontainer")
.append("svg")
.attr("width", width + margin)
.attr("height", height + margin)
.attr('x', 0)
.attr('y', 0)
.append('g');
//y axis
var y_extent = [d3.min(alldata, function(d) {
if(d.ats<0) {
return d.ats-0.02;
} else {
return 0;
}}),
d3.max(alldata, function(d) {return d.ats;})+0.02];
var y_scale = d3.scale.linear()
.range([height, margin])
.domain(y_extent);
var y_axis = d3.svg.axis()
.scale(y_scale)
.orient("left");
svg
.append('g')
.attr('class', 'y axis')
.attr('transform', "translate(" + margin + ",0)")
.call(y_axis);
//if y-axis has 0 on it, put a dotted line there for visual reference
if(0>y_extent[0]) {
svg
.append("line")
.attr("x1", margin)
.attr("y1", y_scale(0))
.attr("x2", width)
.attr("y2", y_scale(0))
.attr("stroke-width", 1)
.attr('opacity',0.5)
.attr("stroke", "black")
.style("stroke-dasharray", "3,3");
};
//x "axis" starting points
//domain of 1,2,3,4 because there are 4 stats to be plotted, with even spacing
var x_scale = d3.scale.linear()
.range([margin, width])
.domain([0, 4]);
//data bar width
var bw = 30;
var xs = [0.5, 0.5, 1.5, 1.5, 2.5, 2.5, 3.5, 3.5];
var groupinds = [0,1,0,1,0,1,0,1];
var groupnums = [0,0,1,1,2,2,3,3];
var groupnamescolors = [
['Location', 'blue'],
['Spread', 'green'],
['Offense', 'red'],
['Defense', 'purple']
];
var allbars = svg
.selectAll(".bar")
.data(alldata)
.enter()
.append('rect')
.attr('class', 'bar')
.attr('x',0).attr('y',0)
.attr('transform', function(d,i) {
if(d.ats>=0) {
return 'translate('+
(x_scale(xs[i]) + (groupinds[i]*(bw+3)))
+','+
y_scale(0)
+') rotate(180)';
} else {
return 'translate('+
(x_scale(xs[i]) + (groupinds[i]*(bw+3))-bw)
+','+
y_scale(0)
+')';
}
})
.attr('width',bw)
.attr('height', 0)
.attr('fill', function(d, i) {
return groupnamescolors[groupnums[i]][1];})
.on("mouseover", function(d, i) {
d3.select(this).style("fill", "grey");
tooltip.select('.explain')
.html("Average loss: $" + (Math.round(d.ats*1000)/1000) +
"<br>" + explanations[i] + "<br>" +
"<strong>" + d.n + " observations" + "</strong>");
tooltip.style("left", (d3.event.pageX + bw) + "px")
tooltip.style("top", (d3.event.pageY) + "px")
tooltip.style('display','block');
})
.on("mouseout", function(d,i) {
var color = groupnamescolors[groupnums[i]][1];
d3.select(this).style('fill',color);
tooltip.style('display','none');
});
var trans_scale = d3.scale.linear()
.domain(y_extent)
.range([1000,2500]);
allbars.transition()
.duration(function(d) {return trans_scale(d.ats)})
.delay(100)
.attr("height", function(d) {
if(d.n===0) {
return 0;
} else if(d.ats>=0) {
return y_scale(0)-y_scale(d.ats);
} else {
return y_scale(d.ats)-y_scale(0);
}
});
var singleLabels = svg
.selectAll(".xsinglelabs")
.data(alldata)
.enter()
.append('text')
.attr('class', 'xsinglelabs')
.attr('x',0).attr('y',0)
.attr('transform', function(d,i) {
return 'translate('+
(x_scale(xs[i]) + (groupinds[i]*(bw+3)) - bw)
+', ' +
(y_scale(y_extent[0])+10)
+
') rotate(45)'})
.text(function(d) {return d.group;});
xs = [0.5, 1.5, 2.5, 3.5];
var groupLabels = svg
.selectAll(".xgrouplabs")
.data(groupnamescolors)
.enter()
.append('text')
.attr('class', 'xgrouplabs')
.attr('x', function(d,i) {return x_scale(0.5+i)-bw})
.attr('y', y_scale(y_extent[0])+70)
.attr('color', function(d) {return d[1]})
.text(function(d) {return d[0]});
//add y-axis label
svg
.append('text')
.attr('class','label')
.attr('id','y-label')
.attr('x',0).attr('y',0)
.attr('transform', 'translate(' + x_scale(-0.3) + "," + y_scale((y_extent[0]+y_extent[1])*0.2) + "), rotate(-90)")
.text("Oddsmakers' Profit in Cents");
//add title
svg
.append('text')
.attr('class', 'heading')
.attr('x', width/2)
.attr('y', margin/2)
.attr('text-anchor', 'middle')
.text("Spread: Oddsmakers' Profit per $1 Bet When Majority Bets On...");
}
}
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//drawViz3 function
function drawViz3(data) {
"use strict";
//clear svg
d3.selectAll("svg").remove();
//add tooltip div
var tooltip = d3.select('#maincontainer')
.append('div')
.attr('class', 'tooltip');
tooltip.append('div').attr('class','explain');
var explainStart = "When the majority of the public (>50%) ";
var ppgMid = " when the total points-per-game between the 2 teams from weeks prior ";
var ppgEnd = " (starting from Week 6)";
var explanations = [
explainStart.concat("takes the Over"),
explainStart.concat("takes the Under"),
explainStart.concat("takes the Over in Prime Time games (the nationally televised nighttime games)"),
explainStart.concat("takes the Under in Prime Time games (the nationally televised nighttime games)"),
explainStart.concat("takes the <strong>Over</strong>").concat(ppgMid)
.concat("is <strong>greater than</strong> the line").concat(ppgEnd),
explainStart.concat("takes the <strong>Under</strong>").concat(ppgMid)
.concat("is <strong>greater than</strong> the line").concat(ppgEnd),
explainStart.concat("takes the <strong>Over</strong>").concat(ppgMid)
.concat("is <strong>less than</strong> the line").concat(ppgEnd),
explainStart.concat("takes the <strong>Under</strong>").concat(ppgMid)
.concat("is <strong>less than</strong> the line").concat(ppgEnd)
];
//build story container
d3.select("#vizstory").remove();
d3.select("#storycontainer")
.append('p')
.attr('id', "vizstory")
.style("font-size", "14.5px")
.text("This final visualization shows a breakdown of the oddsmakers profits on over and under bets in\
all games, primetime games, games where the teams' offenses were better than the line suggested,\
and games where they were worse. As before, the perspective is the oddsmakers', and\
you can filter the data by season and team at the bottom of the screen. Note: you may notice, when\
using both filters, that some bars disappear for the Under group; this is due to the lack of overall\
bets on the under; these subsets simply have 0 observations.");
//change necessary data types
data.Season = +data.Season;
data.PtsW = +data.PtsW;
data.PtsL = +data.PtsL;
data.Total = +data.Total;
data.TOT = +data.TOT;
data.TOTside = +data.TOTside;
data.PublicNetTOT = +data.PublicNetTOT;
data.HomePtsFor = data.HomePtsFor;
data.AwayPtsFor = data.AwayPtsFor;
//add filters
d3.select(".filters").remove();
d3.select("#viznavcontainer").append('div').attr('class', 'filters');
d3.select('.filters').append('p').text('Filter by:')
.attr('id', 'filtersectionlabel');
//season filter
var seasonDropDown = d3.select(".filters").append("select")
.attr("name", "Years")
.attr('id', 'seasonfilter');
d3.select('.filters').append("p").text("Season")
.attr('id','seasonfilterlabel')
.style('left', d3.select("#seasonfilter").style("left"));
var seasonOptionsData = d3.map(data, function(d) {return d.Season;}).keys();
seasonOptionsData.unshift("Any");
var seasonOptions = seasonDropDown.selectAll("option")
.data(seasonOptionsData)
.enter()
.append("option");
seasonOptions.text(function(d) { return d;})
.attr("value", function(d) { return d;});
//team filter
var teamDropDown = d3.select(".filters").append("select")
.attr("name", "Teams")
.attr('id', 'teamfilter');
d3.select('.filters').append("p").text("Team Involved")
.attr('id','teamfilterlabel')
.style('left', d3.select("#teamfilter").style("left"));
var teamOptionsData = d3.map(data, function(d) {return d.Home;}).keys();
teamOptionsData.unshift("Any");
var teamOptions = teamDropDown.selectAll("option")
.data(teamOptionsData)
.enter()
.append('option');
teamOptions.text(function(d) {return d;})
.attr('value', function(d) {return d;});
//first construction
updateChart(data);
//when filter is used, data changes
d3.select("#seasonfilter")
.on('change', function() {
var selectedSeason = d3.select('#seasonfilter').node().value;
var selectedTeam = d3.select("#teamfilter").node().value;
var filtereddata = data.filter(function(d) {
if(selectedSeason==="Any" && selectedTeam==="Any") {
return d;
} else if(selectedSeason==="Any" && selectedTeam!=="Any") {
return (d.Home===selectedTeam || d.Away===selectedTeam);
} else if(selectedSeason!=="Any" && selectedTeam==="Any") {
return d.Season===selectedSeason;
} else {
return (d.Home===selectedTeam || d.Away===selectedTeam) && d.Season===selectedSeason;
}
});
updateChart(filtereddata);
});
d3.select("#teamfilter")
.on('change', function() {
var selectedSeason = d3.select('#seasonfilter').node().value;
var selectedTeam = d3.select("#teamfilter").node().value;
var filtereddata = data.filter(function(d) {
if(selectedSeason==="Any" && selectedTeam==="Any") {
return d;
} else if(selectedSeason==="Any" && selectedTeam!=="Any") {
return (d.Home===selectedTeam || d.Away===selectedTeam);
} else if(selectedSeason!=="Any" && selectedTeam==="Any") {
return d.Season===selectedSeason;
} else {
return (d.Home===selectedTeam || d.Away===selectedTeam) && d.Season===selectedSeason;
}
})
updateChart(filtereddata);
});
//actual chart constructing function
function updateChart(newdata) {
//clear svg
d3.selectAll("svg").remove();
//aggregate data into more usable dataframe (folded)
function getnet(d) {
return -d.PublicNetTOT;
}
function getside(d) {
if(parseInt(d.TOTside)==1) {
return 'Over';
} else {
return 'Under';
}
}
function getlength_mean(d) {
return {
Val: d3.mean(d, getnet),
N: d.length
};
}
function addBackZeros(splitObj, sortorderObj) {
var newSplitObj = splitObj;
var presentKeys = newSplitObj.map(function(d) {return d.key;});
var missingKeys = sortorderObj.filter(function(d) {return presentKeys.indexOf(d)===-1;});
for(var i=0; i<missingKeys.length; i++) {
var newkey = missingKeys[i];
var newobj = {
key: newkey,
values: {Val: 0, N: 0}
}
newSplitObj.push(newobj);
}
return newSplitObj;
}
var startWeek = 6;
var sortorder = ['Over','Under'];
var OUsplit = d3.nest()
.key(getside)
.sortKeys(function(a,b) {return sortorder.indexOf(a) - sortorder.indexOf(b)})
.rollup(getlength_mean)
.entries(newdata);
OUsplit = addBackZeros(OUsplit, sortorder);
var PrimeSplit = d3.nest()
.key(getside)
.sortKeys(function(a,b) {return sortorder.indexOf(a) - sortorder.indexOf(b)})
.rollup(getlength_mean)
.entries(newdata.filter(function(d) {
return parseInt(d.Prime)===1;
}));
PrimeSplit = addBackZeros(PrimeSplit, sortorder);
var PPGoverSplit = d3.nest()
.key(getside)
.sortKeys(function(a,b) {return sortorder.indexOf(a) - sortorder.indexOf(b)})
.rollup(getlength_mean)
.entries(newdata.filter(function(d) {
return d.Week>=startWeek && (parseInt(d.HomePtsFor)+parseInt(d.AwayPtsFor))>=d.Total;
}));
PPGoverSplit = addBackZeros(PPGoverSplit, sortorder);
var PPGunderSplit = d3.nest()
.key(getside)
.sortKeys(function(a,b) {return sortorder.indexOf(a) - sortorder.indexOf(b)})
.rollup(getlength_mean)
.entries(newdata.filter(function(d) {
return d.Week>=startWeek && (parseInt(d.HomePtsFor)+parseInt(d.AwayPtsFor))<d.Total;
}));
PPGunderSplit = addBackZeros(PPGunderSplit, sortorder);
var alldata = [];
[OUsplit,PrimeSplit,PPGoverSplit,PPGunderSplit].forEach(function(d) {
d.forEach(function(k) {
var newObj = {group: k.key, tot: k.values.Val, n: k.values.N};
alldata.push(newObj);
});});
//setup margins and width/height
var margin = 100;
var width = 900 - margin;
var height = 500 - margin;
//construct svg
var svg = d3.select("#vizcontainer")
.append("svg")
.attr("width", width + margin)
.attr("height", height + margin)
.attr('x', 0)
.attr('y', 0)
.append('g');
//y axis
var y_extent = [d3.min(alldata, function(d) {
if(d.tot<0) {
return d.tot-0.02;
} else {
return 0;
}}),
d3.max(alldata, function(d) {return d.tot;})+0.02];
var y_scale = d3.scale.linear()
.range([height, margin])
.domain(y_extent);
var y_axis = d3.svg.axis()
.scale(y_scale)
.orient("left");
svg
.append('g')
.attr('class', 'y axis')
.attr('transform', "translate(" + margin + ",0)")
.call(y_axis);
//x "axis" starting points
//domain of 1,2,3,4 because there are 4 stats to be plotted, with even spacing
var x_scale = d3.scale.linear()
.range([margin, width])
.domain([0, 4]);
//data bar width
var bw = 30;
var xs = [0.5, 0.5, 1.5, 1.5, 2.5, 2.5, 3.5, 3.5];
var groupinds = [0,1,0,1,0,1,0,1];
var groupnums = [0,0,1,1,2,2,3,3];
var groupnamescolors = [
['All Games', 'blue'],
['Prime Time', 'green'],
['PPG Greater', 'red'],
['PPG Less', 'purple']
];
var allbars = svg
.selectAll(".bar")
.data(alldata)
.enter()
.append('rect')
.attr('class', 'bar')
.attr('x',0).attr('y',0)
.attr('transform', function(d,i) {
return 'translate('+
(x_scale(xs[i]) + (groupinds[i]*(bw+3)))
+','+
y_scale(y_extent[0])
+') rotate(180)'})
.attr('width',bw)
.attr('height', 0)
.attr('fill', function(d, i) {
return groupnamescolors[groupnums[i]][1];})
.on("mouseover", function(d,i) {
d3.select(this).style("fill", "grey");
tooltip.select('.explain')
.html("Average loss: $" + (Math.round(d.tot*1000)/1000) +
"<br>" + explanations[i] + "<br>" +
"<strong>"+d.n + " observations"+"</strong>");
tooltip.style("left", (d3.event.pageX + bw) + "px")
tooltip.style("top", (d3.event.pageY) + "px")
tooltip.style('display','block');
})
.on("mouseout", function(d,i) {
var color = groupnamescolors[groupnums[i]][1];
d3.select(this).style('fill',color);
tooltip.style('display','none');
});
var trans_scale = d3.scale.linear()
.domain(y_extent)
.range([1000,2500]);
allbars.transition()
.duration(function(d) {return trans_scale(d.tot)})
.delay(100)
.attr("height", function(d) {
if(d.n===0) {
return 0;
} else {
return y_scale(y_extent[0])-y_scale(d.tot);
}
});
var singleLabels = svg
.selectAll(".xsinglelabs")
.data(alldata)
.enter()
.append('text')
.attr('class', 'xsinglelabs')
.attr('x',0).attr('y',0)
.attr('transform', function(d,i) {
return 'translate('+
(x_scale(xs[i]) + (groupinds[i]*(bw+3)) - bw)
+', ' +
(y_scale(y_extent[0])+10)
+
') rotate(45)'})
.text(function(d,i) {
if(i%2===0) {
return "Over";
} else {
return "Under";
}
});
xs = [0.5, 1.5, 2.5, 3.5];
var groupLabels = svg
.selectAll(".xgrouplabs")
.data(groupnamescolors)
.enter()
.append('text')
.attr('class', 'xgrouplabs')
.attr('x', function(d,i) {return x_scale(0.5+i)-bw})
.attr('y', y_scale(y_extent[0])+70)
.attr('color', function(d) {return d[1]})
.text(function(d) {return d[0]});
//add y-axis label
svg
.append('text')
.attr('class','label')
.attr('id','y-label')
.attr('x',0).attr('y',0)
.attr('transform', 'translate(' + x_scale(-0.3) + "," + y_scale((y_extent[0]+y_extent[1])*0.2) + "), rotate(-90)")
.text("Oddsmakers' Profit in Cents");
//add title
svg
.append('text')
.attr('class', 'heading')
.attr('x', width/2)
.attr('y', margin/2)
.attr('text-anchor', 'middle')
.text("Over/Under: Oddsmakers' Profit per $1 Bet When Majority Bets On...");
}
}
drawAnyViz(1);
var vizNum = 1;
function backButton() {
if(vizNum===3) {
d3.select("#forwardbutton").style("visibility","visible").style("display","initial");
vizNum += -1;
drawAnyViz(vizNum);
} else if(vizNum===2) {
vizNum += -1;
drawAnyViz(vizNum);
d3.select("#backbutton").style("visibility","hidden");
}
}
function forwardButton() {
if(vizNum===1) {
d3.select("#backbutton").style("visibility","visible").style("display","initial");
vizNum += 1;
drawAnyViz(vizNum);
} else if(vizNum===2) {
d3.select("#backbutton").style("visibility","visible").style("display","initial");
vizNum += 1;
drawAnyViz(vizNum);
d3.select("#forwardbutton").style("visibility","hidden");
}
}
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
</script>
</head>
<body>
<div id="maincontainer">
<div id="vizcontainer"></div>
<div id="viznavcontainer"></div>
</div>
<div id="storycontainer">
<p id="storyintro">There are 3 main ways to bet on an NFL game: against the
<a href="http://pregame.com/EN/main/sports-betting-basics/glossary/terms/against-the-spread.html">spread</a>,
on the <a href="http://pregame.com/EN/main/sports-betting-basics/glossary/terms/money-line.html">money line</a>,
or on the <a href="http://pregame.com/EN/main/sports-betting-basics/glossary/terms/over-under-total.html">over/under</a>.
each method is popular in its own right, but let's take a closer look at the outcomes of each over the last few years.
<br><br>
<u>The question is:</u><br>
How can you best win money betting on football? (Or I suppose, how can you lose the least?) <br><br>
TIP: For the 2nd and 3rd charts, hover over the bars for an explanation of the groups.
</p>
<p id="navvizsentence">Navigate the 3 visualizations...</p>
<div id="navbuttons">
<input name="backButton"
id="backbutton"
class="navbuttons"
type="button"
value="Previous"
onclick="backButton()" />
<input name="forwardButton"
id="forwardbutton"
class="navbuttons"
type="button"
value="Next"
onclick="forwardButton()" />
</div>
</div>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<script src="http://d3js.org/d3.v3.min.js"></script>
<script src="http://dimplejs.org/dist/dimple.v2.0.0.min.js"></script>
<style>
#maincontainer {
width:900px;
height: 600px;
float:left;
margin-right: 50px;
}
#vizcontainer {
width: 900px;
height: 550px;
}
#viznavcontainer {
width: 900px;
height: 50px;
}
#storycontainer {
width:300px;
height: 500px;
float:left;
padding-top: 5%;
margin-left: 50px;
font-size: 14.5px;
}
h1 {
color: black;
text-align: center;
}
.heading {
font-family: arial;
font-size: 24px;
font-weight: bold;
}
.axis {
font-family: Verdana;
font-size: 0.6em;
}
path {
fill: none;
stroke: black;
stroke-width: 2px;
}
.tick {
fill: none;
stroke: black;
}
.xsinglelabs {
font-size: 14px;
}
.xgrouplabs {
font-size: 18px;
font-weight: bold;
}
.tooltip {
background: #eee;
box-shadow: 0 0 5px #999999;
color: #333;
display: none;
font-size: 12px;
padding: 10px;
position: absolute;
text-align: center;
width: 120px;
z-index: 10;
}
.filters {
position: absolute;
left: 0;
bottom: 0;
width: 500px;
height: 50px;
border: 1px solid #cdcdcd;
border-color: rgba(0,0,0,.15);
background-color: #DCDCDC;
margin-bottom: 50px;
margin-left: 100px;
padding-top: 3px;
}
#seasonfilter {
position: absolute;
left: 150px;
width: 100px;
}
#teamfilter {
position: absolute;
left: 300px;
width: 175px;
}
#seasonfilterlabel {
position: absolute;
top: 5px;
}
#filtersectionlabel {
position: absolute;
left: 25px;
top: 5px;
font-weight: bold;
}
#teamfilterlabel {
position: absolute;
top: 5px;
}
.navbuttons {
background: #3498db;
background-image: -webkit-linear-gradient(top, #3498db, #2980b9);
background-image: -moz-linear-gradient(top, #3498db, #2980b9);
background-image: -ms-linear-gradient(top, #3498db, #2980b9);
background-image: -o-linear-gradient(top, #3498db, #2980b9);
background-image: linear-gradient(to bottom, #3498db, #2980b9);
-webkit-border-radius: 28;
-moz-border-radius: 28;
border-radius: 28px;
font-family: Arial;
color: #ffffff;
font-size: 20px;
padding: 10px 20px 10px 20px;
text-decoration: none;
margin-top: 10px;
margin-bottom: 10px;
}
.navbuttons:hover {
background: #3cb0fd;
background-image: linear-gradient(to bottom, #3cb0fd, #3498db);
cursor: pointer;
text-decoration: none;
}
.navbuttons:focus {
outline:0;
}
#backbutton {
margin-right: 30px;
visibility: hidden;
}
#forwardbutton {
margin-left: 30px;
}
#vizstory {
border: 1px solid #cdcdcd;
padding: 4px;
border-color: rgba(0,0,0,.15);
border-radius: 10px;
background-color: #DCDCDC;
font-size: 14.5px;
}
#storyintro {
border: 1px solid #cdcdcd;
padding: 4px;
border-color: rgba(0,0,0,.15);
border-radius: 10px;
background-color: #DCDCDC;
}
#navvizsentence {
padding: 5px;
font-weight: bold;
text-align: center;
}
.lineexplain {
font-size: 14px;
}
</style>
<script type="text/javascript">
//complete function
function drawAnyViz(num) {
if(num===1) {
d3.csv("https://gist.githubusercontent.com/ntaylorwss/421b61e55f4ec9efe350/raw/a59a6f26d67adb5fda988e1dd5d130f1babe42f5/NFLdataViz1.csv", drawViz1);
} else if (num===2) {
d3.csv("https://gist.githubusercontent.com/ntaylorwss/421b61e55f4ec9efe350/raw/a59a6f26d67adb5fda988e1dd5d130f1babe42f5/NFLdataViz2.csv", drawViz2);
} else if(num===3) {
d3.csv("https://gist.githubusercontent.com/ntaylorwss/421b61e55f4ec9efe350/raw/a59a6f26d67adb5fda988e1dd5d130f1babe42f5/NFLdataViz3.csv", drawViz3);
} else {
d3.csv("https://gist.githubusercontent.com/ntaylorwss/421b61e55f4ec9efe350/raw/a59a6f26d67adb5fda988e1dd5d130f1babe42f5/NFLdataViz4.csv", drawViz4);
}
}
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//drawViz1 function
function drawViz1(data) {
"use strict";
//clear svg
d3.selectAll("svg").remove();
//clear filters
d3.select('.filters').remove();
//Convert data to numeric
data.OverallWeek = +data.OverallWeek;
data.PublicNetATS = +data.PublicNetATS;
data.PublicNetML = +data.PublicNetML;
data.PublicNetTOT = +data.PublicNetTOT;
//setup svg area
var margin = 75;
var width = 900-margin;
var height = 550-margin;
var svg = d3.select("#vizcontainer")
.append("svg")
.attr("width", width + margin)
.attr("height", height + margin)
.attr('x', 0)
.attr('y', 0)
.append('g');
// setup X axis
var x_extent = [0, 118];
var x_scale = d3.scale.linear()
.range([margin, width])
.domain(x_extent);
var x_axis = d3.svg.axis()
.scale(x_scale)
.ticks(5);
// setup Y axis
var y_extent = [-25, 2];
var y_scale = d3.scale.linear()
.range([height, margin])
.domain(y_extent);
var y_axis = d3.svg.axis()
.scale(y_scale)
.orient("left");
//add axes
svg
.append('g')
.attr('class', 'x axis')
.attr('transform', "translate(0," + height + ")")
.call(x_axis);
svg
.append('g')
.attr('class', 'y axis')
.attr('transform', "translate(" + margin + ",0)")
.call(y_axis);
//add line at 0 on y axis
svg
.append("line")
.attr("x1", margin)
.attr("y1", y_scale(0))
.attr("x2", width)
.attr("y2", y_scale(0))
.style("stroke-width", 1)
.attr('opacity',0.5)
.attr("stroke", "black");
//add dotted lines for seasons
var seasonBreaks = [];
for(var i=0; i<=5; i++) {
seasonBreaks[i] = {'Year': 2010+i, 'Week': (i+1) * 17};
}
var sbreaks = svg
.selectAll('.seasonbreaks')
.data(seasonBreaks)
.enter()
.append('line')
.attr('x1', function(d) {return x_scale(d.Week);})
.attr('x2', function(d) {return x_scale(d.Week);})
.attr('y1', y_scale(y_extent[0]))
.attr('y2', y_scale(y_extent[1]))
.attr("class", "seasonbreaks")
.style('stroke-dasharray', "3, 3")
.style("stroke-width", 1)
.attr('opacity',0.5)
.attr("stroke", "black");
svg
.selectAll('.seasonlabels')
.data(seasonBreaks)
.enter()
.append('text')
.attr('class', 'seasonlabels')
.attr('x', function(d) {return x_scale(d['Week'])})
.attr('y', y_scale(y_extent[0])-2)
.style('font-size', '12px')
.text(function(d) {return d['Year']});
//add data line plot
var interpolation = "linear";
var lineATS = d3.svg.line()
.x(function(d) {return x_scale(d.OverallWeek);})
.y(function(d) {return y_scale(d.PublicNetATS);})
.interpolate(interpolation);
var lineML = d3.svg.line()
.x(function(d) {return x_scale(d.OverallWeek);})
.y(function(d) {return y_scale(d.PublicNetML);})
.interpolate(interpolation);
var lineTOT = d3.svg.line()
.x(function(d) {return x_scale(d.OverallWeek);})
.y(function(d) {return y_scale(d.PublicNetTOT);})
.interpolate(interpolation);
var lineTDur = 1500;
var allNums = [d3.max(data, function(d) {return parseInt(d.numATS);}),
d3.max(data, function(d) {return parseInt(d.numML);}),
d3.max(data, function(d) {return parseInt(d.numTOT);})];
var width_extent = d3.extent(allNums);
var width_scale = d3.scale.linear()
.range([1,5])
.domain(width_extent);
svg
.append('path')
.attr("class", "line")
.attr('d', lineATS(data))
.style('stroke-width', width_scale(allNums[0]))
.style('stroke', 'blue')
.attr('fill', 'none')
.attr('stroke-dasharray', function() {
return this.getTotalLength() + " " + this.getTotalLength();
})
.attr('stroke-dashoffset', function() {
return this.getTotalLength();
})
.transition()
.duration(lineTDur)
.ease('linear')
.attr('stroke-dashoffset',0);
svg
.append('path')
.attr("class", "line")
.attr('d', lineML(data))
.style('stroke-width', width_scale(allNums[1]))
.style('stroke', 'green')
.attr('fill', 'none')
.attr('stroke-dasharray', function() {
return this.getTotalLength() + " " + this.getTotalLength();
})
.attr('stroke-dashoffset', function() {
return this.getTotalLength();
})
.transition()
.duration(lineTDur)
.ease('linear')
.attr('stroke-dashoffset',0);
svg
.append('path')
.attr("class", "line")
.attr('d', lineTOT(data))
.style('stroke-width', width_scale(allNums[2]))
.style('stroke','red')
.attr('fill', 'none')
.attr('stroke-dasharray', function() {
return this.getTotalLength() + " " + this.getTotalLength();
})
.attr('stroke-dashoffset', function() {
return this.getTotalLength();
})
.transition()
.duration(lineTDur)
.ease('linear')
.attr('stroke-dashoffset',0);
//add axis labels
svg
.append('text')
.attr('class', 'label')
.attr('id', 'x-label')
.attr('x', x_scale((x_extent[0]+x_extent[1])/2))
.attr('y', y_scale(y_extent[0]-3.5))
.text("Week");
svg
.append('text')
.attr('class','label')
.attr('id','y-label')
.attr('x',0).attr('y',0)
.attr('transform', 'translate(' + x_scale(-6) + "," + y_scale((y_extent[0]+y_extent[1])*0.75) + "), rotate(-90)")
.text("Cumulative Net Loss in Dollars");
//title
svg
.append('text')
.attr('class', 'heading')
.attr('x', width/2)
.attr('y', margin/2)
.attr('text-anchor', 'middle')
.text("NFL Betting Cumulative Net Loss, per $1 Bet");
//legend
var legendLabels = [
{stat: 'Against the Spread', color: 'blue'},
{stat: 'Money Line', color: 'green'},
{stat: 'Over/Under', color: 'red'}
];
svg.selectAll('rect')
.data(legendLabels)
.enter()
.append('rect')
.attr('x', x_scale(0.5))
.attr('y', function(d,i) {return y_scale(-(12+2*i));})
.attr('width', 25)
.attr('height', 3)
.attr('fill', function(d,i) {return legendLabels[i].color;});
svg.selectAll('.legendtext')
.data(legendLabels)
.enter()
.append('text')
.attr('class', 'legendtext')
.attr('x', x_scale(5))
.attr('y', function(d,i) {return y_scale(-(12.5+2*i));})
.attr('font-size', '12px')
.text(function(d) {return d.stat;});
svg.append('rect')
.attr('x', 0)
.attr('y', 0)
.attr('transform', 'translate('+x_scale(1)+','+y_scale(-18)+'), rotate(30)')
.attr('width', 25)
.attr('height', 3)
.attr('fill', 'black');
svg.append('text')
.attr('x', x_scale(5))
.attr('y', y_scale(-18.5))
.attr('font-size', '12px')
.text('Slope: Rate of loss');
svg.append('rect')
.attr('x', x_scale(1))
.attr('y', y_scale(-20))
.attr('width', 25)
.attr('height', 6)
.attr('fill', 'black');
svg.append('text')
.attr('x', x_scale(5.5))
.attr('y', y_scale(-20.5))
.attr('font-size', '12px')
.text('Thickness: popularity of bet');
//build story container
d3.select("#vizstory").remove();
d3.select("#storycontainer")
.append('p')
.attr('id', "vizstory")
.text("This first graph, showing how much the general public has lost over the last 6 seasons broken down by bet type, \
immediately identifies the oddsmakers' cash cow: the money line. The public loses far more money on this type\
of bet than any other, but why? We know the oddsmakers choose the line, essentially a statement of a team's win\
probability, very carefully. Is it as close to reality as the public would like to believe?");
}
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//drawViz2 function
function drawViz2(data) {
"use strict";
//clear svg
d3.selectAll("svg").remove();
//clear filters
d3.select('.filters').remove();
//add tooltip div
d3.selectAll(".tooltip").remove();
var tooltip = d3.select('#maincontainer')
.append('div')
.attr('class', 'tooltip');
tooltip.append('div').attr('class','explain');
//Convert data to numeric
data.Line = +data.Line;
data.Wins = +data.Wins;
data.Games = +data.Games;
data.WinP = +data.WinP;
data.ImpliedWinP = +data.ImpliedWinP;
//setup svg area
var margin = 75;
var width = 900-margin;
var height = 550-margin;
var svg = d3.select("#vizcontainer")
.append("svg")
.attr("width", width + margin)
.attr("height", height + margin)
.attr('x', 0)
.attr('y', 0)
.append('g');
// setup X axis
var x_extent = [0, 1];
var x_scale = d3.scale.linear()
.range([margin, width])
.domain(x_extent);
var x_axis = d3.svg.axis()
.scale(x_scale)
.ticks(5);
// setup Y axis
var y_extent = [0, 1];
var y_scale = d3.scale.linear()
.range([height, margin])
.domain(y_extent);
var y_axis = d3.svg.axis()
.scale(y_scale)
.ticks(5)
.orient("left");
//setup radius scale
var r_extent = d3.extent(data, function(d) {return parseInt(d.Games);});
var r_scale = d3.scale.sqrt()
.range([3, 10])
.domain(r_extent);
//add axes
svg
.append('g')
.attr('class', 'x axis')
.attr('transform', "translate(0," + height + ")")
.call(x_axis);
svg
.append('g')
.attr('class', 'y axis')
.attr('transform', "translate(" + margin + ",0)")
.call(y_axis);
//add line of slope 1
svg
.append("line")
.attr("x1", x_scale(0))
.attr("y1", y_scale(0))
.attr("x2", x_scale(1))
.attr("y2", y_scale(1))
.style("stroke-width", 1.5)
.attr('stroke-dasharray', '2, 2')
.attr('opacity',0.5)
.attr("stroke", "black");
//add data bubbles
var bubbles = svg.selectAll('circle')
.data(data)
.enter()
.append('circle')
.attr('cx', function(d) {return x_scale(d.ImpliedWinP);})
.attr('cy', function(d) {return y_scale(d.ImpliedWinP);})
.attr('fill', 'green')
.on("mouseover", function(d,i) {
tooltip.select('.explain')
.html("Implied: "+Math.round(d.ImpliedWinP*100)+"%<br>Actual: "+Math.round(d.WinP*100)+"%"+
"<br># Games: "+d.Games);
tooltip.style("left", (d3.event.pageX + 10) + "px");
tooltip.style("top", (d3.event.pageY) + "px");
tooltip.style('display','block');
svg
.append('line')
.attr('class', 'tooltipline')
.attr('x1', x_scale(d.ImpliedWinP))
.attr('x2', x_scale(d.ImpliedWinP))
.attr('y1', y_scale(d.WinP))
.attr('y2', y_scale(0))
.attr('stroke-dasharray', '3, 3')
.style('stroke-width', 1)
.attr('stroke', 'green');
svg
.append('line')
.attr('class', 'tooltipline')
.attr('x1', x_scale(0))
.attr('x2', x_scale(d.ImpliedWinP))
.attr('y1', y_scale(d.WinP))
.attr('y2', y_scale(d.WinP))
.attr('stroke-dasharray', '3, 3')
.style('stroke-width', 1)
.attr('stroke', 'green');
})
.on('mouseout', function(d,i) {
tooltip.style('display','none');
d3.selectAll(".tooltipline")
.style('display', 'none');
});
bubbles
.transition()
.duration(1500)
.delay(200)
.attr('cy', function(d) {return y_scale(d.WinP);})
.attr('r', function(d) {return r_scale(d.Games);});
//add axis labels
svg
.append('text')
.attr('class', 'label')
.attr('id', 'x-label')
.attr('x', x_scale((x_extent[0]+x_extent[1])*0.35))
.attr('y', y_scale(y_extent[0]-0.1))
.text("Implied Win Probability by Moneyline");
svg
.append('text')
.attr('class','label')
.attr('id','y-label')
.attr('x',0).attr('y',0)
.attr('transform', 'translate(' + x_scale(-0.05) + "," + y_scale((y_extent[0]+y_extent[1])*0.35) + "), rotate(-90)")
.text("Actual Win Probability");
//title
svg
.append('text')
.attr('class', 'heading')
.attr('x', width/2)
.attr('y', margin/2)
.attr('text-anchor', 'middle')
.text("Win Probability, Actual vs Moneyline Implication");
//legend
svg.append('text')
.attr('class', 'lineexplain')
.attr('x', x_scale(0.05))
.attr('y', y_scale(0.9))
.text("Above line = public profits");
svg.append('text')
.attr('class', 'lineexplain')
.attr('x', x_scale(0.7))
.attr('y', y_scale(0.1))
.text("Below line = oddsmakers profit");
svg
.append('line')
.attr('x1', x_scale(0.75))
.attr('x2', x_scale(0.8))
.attr('y1', y_scale(-0.15))
.attr('y2', y_scale(-0.15))
.style("stroke-width", 1.5)
.attr('stroke-dasharray', '2, 2')
.attr('opacity',1)
.attr("stroke", "black");
svg
.append('text')
.attr('class', 'legendexplain')
.attr('x', x_scale(0.82))
.attr('y', y_scale(-0.16))
.text("'Ideal' line, actual=implied");
svg
.append('circle')
.attr('cx', x_scale(0.05))
.attr('cy', y_scale(-0.15))
.attr('r', 6)
.attr('fill', 'green');
svg
.append('text')
.attr('class', 'legendexplain')
.attr('x', x_scale(0.07))
.attr('y', y_scale(-0.16))
.text("Size: # Games");
//build story container
d3.select("#vizstory").remove();
d3.select("#storycontainer")
.append('p')
.attr('id', "vizstory")
.style('font-size', '12.5px')
.text("Here we see the actual win probability of a team, given their money line. The dotted line shows where the \
bubbles 'should' be, where they would be if the game was fair. As we can see, most of the bigger bubbles \
(which indicate more games, and therefore more bets) are under the line, where the oddsmakers' win. Most of \
the bubbles that are above the line are actually at the extremes, with the big favourites and big underdogs. \
Looks like if you want to take the money line, you'll have to risk it with the long-shots, or chip away with \
big favourites and small profits. Let's move to the next bet type: the spread.");
}
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//drawViz3 function
function drawViz3(data) {
"use strict";
//clear svg
d3.selectAll("svg").remove();
//add tooltip div
d3.selectAll(".tooltip").remove();
var tooltip = d3.select('#maincontainer')
.append('div')
.attr('class', 'tooltip');
tooltip.append('div').attr('class','explain');
var explainStart = "When the majority of the public (>50%) bets on the team ";
var ODparen = " (as measured by points scored, starting from Week 6)";
var explanations = [
explainStart.concat("that is playing on the road"),
explainStart.concat("that is playing at home"),
explainStart.concat("that is the underdog"),
explainStart.concat("that is the favorite"),
explainStart.concat("that has the better offense").concat(ODparen),
explainStart.concat("that has the worse offense").concat(ODparen),
explainStart.concat("that has the better defense").concat(ODparen),
explainStart.concat("that has the worse defense").concat(ODparen)
];
//build story container
d3.select("#vizstory").remove();
d3.select("#storycontainer")
.append('p')
.attr('id', "vizstory")
.text("This visualization breaks down the oddsmakers profits by the decisions the bettors made on ATS bets:\
whether they sided with the home team, or the favorite, and so on.\
It should be noted that this is being viewed from the perspective of the oddsmakers; that is, a higher\
bar means more profit for the oddsmakers, and more money lost by the public. You can filter\
the data by season and by team at the bottom of the screen.");
//change necessary data types
data.Season = +data.Season;
data.PtsW = +data.PtsW;
data.PtsL = +data.PtsL;
data.Spread = +data.Spread;
data.ATS = +data.ATS;
data.PublicNetATS = +data.PublicNetATS;
//add filters
d3.select(".filters").remove();
d3.select("#viznavcontainer").append('div').attr('class', 'filters');
d3.select('.filters').append('p').text('Filter by:')
.attr('id', 'filtersectionlabel');
//season filter
var seasonDropDown = d3.select(".filters").append("select")
.attr("name", "Years")
.attr('id', 'seasonfilter');
d3.select('.filters').append("p").text("Season")
.attr('id','seasonfilterlabel')
.style('left', d3.select("#seasonfilter").style("left"));
var seasonOptionsData = d3.map(data, function(d) {return d.Season;}).keys();
seasonOptionsData.unshift("Any");
var seasonOptions = seasonDropDown.selectAll("option")
.data(seasonOptionsData)
.enter()
.append("option");
seasonOptions.text(function(d) { return d;})
.attr("value", function(d) { return d;});
//team filter
var teamDropDown = d3.select(".filters").append("select")
.attr("name", "Teams")
.attr('id', 'teamfilter');
d3.select('.filters').append("p").text("Team Involved")
.attr('id','teamfilterlabel')
.style('left', d3.select("#teamfilter").style("left"));
var teamOptionsData = d3.map(data, function(d) {return d.Home;}).keys();
teamOptionsData.unshift("Any");
var teamOptions = teamDropDown.selectAll("option")
.data(teamOptionsData)
.enter()
.append('option');
teamOptions.text(function(d) {return d;})
.attr('value', function(d) {return d;});
//first construction
updateChart(data);
d3.select("#seasonfilter")
.on('change', function() {
var selectedSeason = d3.select('#seasonfilter').node().value;
var selectedTeam = d3.select("#teamfilter").node().value;
var filtereddata = data.filter(function(d) {
if(selectedSeason==="Any" && selectedTeam==="Any") {
return d;
} else if(selectedSeason==="Any" && selectedTeam!=="Any") {
return (d.Home===selectedTeam || d.Away===selectedTeam);
} else if(selectedSeason!=="Any" && selectedTeam==="Any") {
return d.Season===selectedSeason;
} else {
return (d.Home===selectedTeam || d.Away===selectedTeam) && d.Season===selectedSeason;
}
});
updateChart(filtereddata);
});
d3.select("#teamfilter")
.on('change', function() {
var selectedSeason = d3.select('#seasonfilter').node().value;
var selectedTeam = d3.select("#teamfilter").node().value;
var filtereddata = data.filter(function(d) {
if(selectedSeason==="Any" && selectedTeam==="Any") {
return d;
} else if(selectedSeason==="Any" && selectedTeam!=="Any") {
return (d.Home===selectedTeam || d.Away===selectedTeam);
} else if(selectedSeason!=="Any" && selectedTeam==="Any") {
return d.Season===selectedSeason;
} else {
return (d.Home===selectedTeam || d.Away===selectedTeam) && d.Season===selectedSeason;
}
});
updateChart(filtereddata);
});
//actual chart constructing function
function updateChart(newdata) {
//clear svg
d3.selectAll("svg").remove();
//aggregate data into more usable dataframe (folded)
function getnet(d) {
return -d.PublicNetATS;
}
function getlength_mean(d) {
return {
Val: d3.mean(d, getnet),
N: d.length
};
}
function addBackZeros(splitObj, sortorderObj) {
var newSplitObj = splitObj;
var presentKeys = newSplitObj.map(function(d) {return d.key;});
var missingKeys = sortorderObj.filter(function(d) {return presentKeys.indexOf(d)===-1;});
for(var i=0; i<missingKeys.length; i++) {
var newkey = missingKeys[i];
var newobj = {
key: newkey,
values: {Val: 0, N: 0}
}
newSplitObj.push(newobj);
}
return newSplitObj;
}
var startWeek = 6;
var sortorder1 = ['Away','Home'];
var HRsplit = d3.nest()
.key(function(d) {
if(d.Home===d.ATSteam) {
return 'Home';
} else {
return 'Away';
};})
.sortKeys(function(a,b) {return sortorder1.indexOf(a) - sortorder1.indexOf(b)})
.rollup(getlength_mean)
.entries(newdata);
HRsplit = addBackZeros(HRsplit, sortorder1);
var sortorder2 = ['TakingPts','LayingPts'];
var LayTakeSplit = d3.nest()
.key(function(d) {
if(d.Favorite=="PickEm") {}
if(d.Favorite===d.ATSteam) {
return "LayingPts";
} else {
return "TakingPts";
};})
.sortKeys(function(a,b) {return sortorder2.indexOf(a) - sortorder2.indexOf(b)})
.rollup(getlength_mean)
.entries(newdata);
LayTakeSplit = addBackZeros(LayTakeSplit, sortorder2);
var sortorder3 = ['BetterO','WorseO'];
var OffSplit = d3.nest()
.key(function(d) {
if(d.ATSteam===d.Home) {
if(d.HomePtsFor>=d.AwayPtsFor) {
return "BetterO";
} else {
return "WorseO";
}
} else {
if(d.HomePtsFor<d.AwayPtsFor) {
return "BetterO";
} else {
return "WorseO";
}
}
})
.sortKeys(function(a,b) {return sortorder3.indexOf(a) - sortorder3.indexOf(b)})
.rollup(getlength_mean)
.entries(newdata.filter(function(d) {return d.Week>=startWeek;}));
OffSplit = addBackZeros(OffSplit, sortorder3);
var sortorder4 = ['BetterD','WorseD'];
var DefSplit = d3.nest()
.key(function(d) {
if(d.ATSteam===d.Home) {
if(d.HomePtsAgt<=d.AwayPtsAgt) {
return "BetterD";
} else {
return "WorseD";
}
} else {
if(d.HomePtsAgt>=d.AwayPtsAgt) {
return "BetterD";
} else {
return "WorseD";
}
}
})
.sortKeys(function(a,b) {return sortorder4.indexOf(a) - sortorder4.indexOf(b)})
.rollup(getlength_mean)
.entries(newdata.filter(function(d) {return d.Week>=startWeek;}));
DefSplit = addBackZeros(DefSplit, sortorder4);
var alldata = [];
[HRsplit,LayTakeSplit,OffSplit,DefSplit].forEach(function(d) {
d.forEach(function(k) {
var newObj = {group: k.key, ats: k.values.Val, n: k.values.N};
alldata.push(newObj);
});});
//setup margins and width/height
var margin = 100;
var width = 900 - margin;
var height = 500 - margin;
//construct svg
var svg = d3.select("#vizcontainer")
.append("svg")
.attr("width", width + margin)
.attr("height", height + margin)
.attr('x', 0)
.attr('y', 0)
.append('g');
//y axis
var y_extent = [d3.min(alldata, function(d) {
if(d.ats<0) {
return d.ats-0.02;
} else {
return 0;
}}),
d3.max(alldata, function(d) {return d.ats;})+0.02];
var y_scale = d3.scale.linear()
.range([height, margin])
.domain(y_extent);
var y_axis = d3.svg.axis()
.scale(y_scale)
.orient("left");
svg
.append('g')
.attr('class', 'y axis')
.attr('transform', "translate(" + margin + ",0)")
.call(y_axis);
//if y-axis has 0 on it, put a dotted line there for visual reference
if(0>y_extent[0]) {
svg
.append("line")
.attr("x1", margin)
.attr("y1", y_scale(0))
.attr("x2", width)
.attr("y2", y_scale(0))
.style("stroke-width", 1)
.attr('opacity',0.5)
.attr("stroke", "black")
.style("stroke-dasharray", "3,3");
};
//x "axis" starting points
//domain of 1,2,3,4 because there are 4 stats to be plotted, with even spacing
var x_scale = d3.scale.linear()
.range([margin, width])
.domain([0, 4]);
//data bar width
var bw = 30;
var xs = [0.5, 0.5, 1.5, 1.5, 2.5, 2.5, 3.5, 3.5];
var groupinds = [0,1,0,1,0,1,0,1];
var groupnums = [0,0,1,1,2,2,3,3];
var groupnamescolors = [
['Location', 'blue'],
['Spread', 'green'],
['Offense', 'red'],
['Defense', 'purple']
];
var allbars = svg
.selectAll(".bar")
.data(alldata)
.enter()
.append('rect')
.attr('class', 'bar')
.attr('x',0).attr('y',0)
.attr('transform', function(d,i) {
if(d.ats>=0) {
return 'translate('+
(x_scale(xs[i]) + (groupinds[i]*(bw+3)))
+','+
y_scale(0)
+') rotate(180)';
} else {
return 'translate('+
(x_scale(xs[i]) + (groupinds[i]*(bw+3))-bw)
+','+
y_scale(0)
+')';
}
})
.attr('width',bw)
.attr('height', 0)
.attr('fill', function(d, i) {
return groupnamescolors[groupnums[i]][1];})
.on("mouseover", function(d, i) {
d3.select(this).style("fill", "grey");
tooltip.select('.explain')
.html("Average loss: $" + (Math.round(d.ats*1000)/1000) +
"<br>" + explanations[i] + "<br>" +
"<strong>" + d.n + " observations" + "</strong>");
tooltip.style("left", (d3.event.pageX + bw) + "px")
tooltip.style("top", (d3.event.pageY) + "px")
tooltip.style('display','block');
})
.on("mouseout", function(d,i) {
var color = groupnamescolors[groupnums[i]][1];
d3.select(this).style('fill',color);
tooltip.style('display','none');
});
var trans_scale = d3.scale.linear()
.domain(y_extent)
.range([1000,2500]);
allbars.transition()
.duration(function(d) {return trans_scale(d.ats)})
.delay(100)
.attr("height", function(d) {
if(d.n===0) {
return 0;
} else if(d.ats>=0) {
return y_scale(0)-y_scale(d.ats);
} else {
return y_scale(d.ats)-y_scale(0);
}
});
var singleLabels = svg
.selectAll(".xsinglelabs")
.data(alldata)
.enter()
.append('text')
.attr('class', 'xsinglelabs')
.attr('x',0).attr('y',0)
.attr('transform', function(d,i) {
return 'translate('+
(x_scale(xs[i]) + (groupinds[i]*(bw+3)) - bw)
+', ' +
(y_scale(y_extent[0])+10)
+
') rotate(45)'})
.text(function(d) {return d.group;});
xs = [0.5, 1.5, 2.5, 3.5];
var groupLabels = svg
.selectAll(".xgrouplabs")
.data(groupnamescolors)
.enter()
.append('text')
.attr('class', 'xgrouplabs')
.attr('x', function(d,i) {return x_scale(0.5+i)-bw})
.attr('y', y_scale(y_extent[0])+70)
.attr('color', function(d) {return d[1]})
.text(function(d) {return d[0]});
//add y-axis label
svg
.append('text')
.attr('class','label')
.attr('id','y-label')
.attr('x',0).attr('y',0)
.attr('transform', 'translate(' + x_scale(-0.3) + "," + y_scale((y_extent[0]+y_extent[1])*0.2) + "), rotate(-90)")
.text("Oddsmakers' Profit in Dollars");
//add title
svg
.append('text')
.attr('class', 'heading')
.attr('x', width/2)
.attr('y', margin/2)
.attr('text-anchor', 'middle')
.text("Spread: Oddsmakers' Profit per $1 Bet When Majority Bets On...");
}
}
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//drawViz4 function
function drawViz4(data) {
"use strict";
//clear svg
d3.selectAll("svg").remove();
//add tooltip div
d3.selectAll(".tooltip").remove();
var tooltip = d3.select('#maincontainer')
.append('div')
.attr('class', 'tooltip');
tooltip.append('div').attr('class','explain');
var explainStart = "When the majority of the public (>50%) ";
var ppgMid = " when the total points-per-game between the 2 teams from weeks prior ";
var ppgEnd = " (starting from Week 6)";
var explanations = [
explainStart.concat("takes the Over"),
explainStart.concat("takes the Under"),
explainStart.concat("takes the Over in Prime Time games (the nationally televised nighttime games)"),
explainStart.concat("takes the Under in Prime Time games (the nationally televised nighttime games)"),
explainStart.concat("takes the <strong>Over</strong>").concat(ppgMid)
.concat("is <strong>greater than</strong> the line").concat(ppgEnd),
explainStart.concat("takes the <strong>Under</strong>").concat(ppgMid)
.concat("is <strong>greater than</strong> the line").concat(ppgEnd),
explainStart.concat("takes the <strong>Over</strong>").concat(ppgMid)
.concat("is <strong>less than</strong> the line").concat(ppgEnd),
explainStart.concat("takes the <strong>Under</strong>").concat(ppgMid)
.concat("is <strong>less than</strong> the line").concat(ppgEnd)
];
//build story container
d3.select("#vizstory").remove();
d3.select("#storycontainer")
.append('p')
.attr('id', "vizstory")
.style("font-size", "14.5px")
.text("This final visualization shows a breakdown of the oddsmakers profits on over and under bets in\
all games, primetime games, games where the teams' offenses were better than the line suggested,\
and games where they were worse. As before, the perspective is the oddsmakers', and\
you can filter the data by season and team at the bottom of the screen. Note: you may notice, when\
using both filters, that some bars disappear for the Under group; this is due to the lack of overall\
bets on the under; these subsets simply have 0 observations.");
//change necessary data types
data.Season = +data.Season;
data.PtsW = +data.PtsW;
data.PtsL = +data.PtsL;
data.Total = +data.Total;
data.TOT = +data.TOT;
data.TOTside = +data.TOTside;
data.PublicNetTOT = +data.PublicNetTOT;
data.HomePtsFor = data.HomePtsFor;
data.AwayPtsFor = data.AwayPtsFor;
//add filters
d3.select(".filters").remove();
d3.select("#viznavcontainer").append('div').attr('class', 'filters');
d3.select('.filters').append('p').text('Filter by:')
.attr('id', 'filtersectionlabel');
//season filter
var seasonDropDown = d3.select(".filters").append("select")
.attr("name", "Years")
.attr('id', 'seasonfilter');
d3.select('.filters').append("p").text("Season")
.attr('id','seasonfilterlabel')
.style('left', d3.select("#seasonfilter").style("left"));
var seasonOptionsData = d3.map(data, function(d) {return d.Season;}).keys();
seasonOptionsData.unshift("Any");
var seasonOptions = seasonDropDown.selectAll("option")
.data(seasonOptionsData)
.enter()
.append("option");
seasonOptions.text(function(d) { return d;})
.attr("value", function(d) { return d;});
//team filter
var teamDropDown = d3.select(".filters").append("select")
.attr("name", "Teams")
.attr('id', 'teamfilter');
d3.select('.filters').append("p").text("Team Involved")
.attr('id','teamfilterlabel')
.style('left', d3.select("#teamfilter").style("left"));
var teamOptionsData = d3.map(data, function(d) {return d.Home;}).keys();
teamOptionsData.unshift("Any");
var teamOptions = teamDropDown.selectAll("option")
.data(teamOptionsData)
.enter()
.append('option');
teamOptions.text(function(d) {return d;})
.attr('value', function(d) {return d;});
//first construction
updateChart(data);
//when filter is used, data changes
d3.select("#seasonfilter")
.on('change', function() {
var selectedSeason = d3.select('#seasonfilter').node().value;
var selectedTeam = d3.select("#teamfilter").node().value;
var filtereddata = data.filter(function(d) {
if(selectedSeason==="Any" && selectedTeam==="Any") {
return d;
} else if(selectedSeason==="Any" && selectedTeam!=="Any") {
return (d.Home===selectedTeam || d.Away===selectedTeam);
} else if(selectedSeason!=="Any" && selectedTeam==="Any") {
return d.Season===selectedSeason;
} else {
return (d.Home===selectedTeam || d.Away===selectedTeam) && d.Season===selectedSeason;
}
});
updateChart(filtereddata);
});
d3.select("#teamfilter")
.on('change', function() {
var selectedSeason = d3.select('#seasonfilter').node().value;
var selectedTeam = d3.select("#teamfilter").node().value;
var filtereddata = data.filter(function(d) {
if(selectedSeason==="Any" && selectedTeam==="Any") {
return d;
} else if(selectedSeason==="Any" && selectedTeam!=="Any") {
return (d.Home===selectedTeam || d.Away===selectedTeam);
} else if(selectedSeason!=="Any" && selectedTeam==="Any") {
return d.Season===selectedSeason;
} else {
return (d.Home===selectedTeam || d.Away===selectedTeam) && d.Season===selectedSeason;
}
})
updateChart(filtereddata);
});
//actual chart constructing function
function updateChart(newdata) {
//clear svg
d3.selectAll("svg").remove();
//aggregate data into more usable dataframe (folded)
function getnet(d) {
return -d.PublicNetTOT;
}
function getside(d) {
if(parseInt(d.TOTside)==1) {
return 'Over';
} else {
return 'Under';
}
}
function getlength_mean(d) {
return {
Val: d3.mean(d, getnet),
N: d.length
};
}
function addBackZeros(splitObj, sortorderObj) {
var newSplitObj = splitObj;
var presentKeys = newSplitObj.map(function(d) {return d.key;});
var missingKeys = sortorderObj.filter(function(d) {return presentKeys.indexOf(d)===-1;});
for(var i=0; i<missingKeys.length; i++) {
var newkey = missingKeys[i];
var newobj = {
key: newkey,
values: {Val: 0, N: 0}
}
newSplitObj.push(newobj);
}
return newSplitObj;
}
var startWeek = 6;
var sortorder = ['Over','Under'];
var OUsplit = d3.nest()
.key(getside)
.sortKeys(function(a,b) {return sortorder.indexOf(a) - sortorder.indexOf(b)})
.rollup(getlength_mean)
.entries(newdata);
OUsplit = addBackZeros(OUsplit, sortorder);
var PrimeSplit = d3.nest()
.key(getside)
.sortKeys(function(a,b) {return sortorder.indexOf(a) - sortorder.indexOf(b)})
.rollup(getlength_mean)
.entries(newdata.filter(function(d) {
return parseInt(d.Prime)===1;
}));
PrimeSplit = addBackZeros(PrimeSplit, sortorder);
var PPGoverSplit = d3.nest()
.key(getside)
.sortKeys(function(a,b) {return sortorder.indexOf(a) - sortorder.indexOf(b)})
.rollup(getlength_mean)
.entries(newdata.filter(function(d) {
return d.Week>=startWeek && (parseInt(d.HomePtsFor)+parseInt(d.AwayPtsFor))>=d.Total;
}));
PPGoverSplit = addBackZeros(PPGoverSplit, sortorder);
var PPGunderSplit = d3.nest()
.key(getside)
.sortKeys(function(a,b) {return sortorder.indexOf(a) - sortorder.indexOf(b)})
.rollup(getlength_mean)
.entries(newdata.filter(function(d) {
return d.Week>=startWeek && (parseInt(d.HomePtsFor)+parseInt(d.AwayPtsFor))<d.Total;
}));
PPGunderSplit = addBackZeros(PPGunderSplit, sortorder);
var alldata = [];
[OUsplit,PrimeSplit,PPGoverSplit,PPGunderSplit].forEach(function(d) {
d.forEach(function(k) {
var newObj = {group: k.key, tot: k.values.Val, n: k.values.N};
alldata.push(newObj);
});});
//setup margins and width/height
var margin = 100;
var width = 900 - margin;
var height = 500 - margin;
//construct svg
var svg = d3.select("#vizcontainer")
.append("svg")
.attr("width", width + margin)
.attr("height", height + margin)
.attr('x', 0)
.attr('y', 0)
.append('g');
//y axis
var y_extent = [d3.min(alldata, function(d) {
if(d.tot<0) {
return d.tot-0.02;
} else {
return 0;
}}),
d3.max(alldata, function(d) {return d.tot;})+0.02];
var y_scale = d3.scale.linear()
.range([height, margin])
.domain(y_extent);
var y_axis = d3.svg.axis()
.scale(y_scale)
.orient("left");
svg
.append('g')
.attr('class', 'y axis')
.attr('transform', "translate(" + margin + ",0)")
.call(y_axis);
//x "axis" starting points
//domain of 1,2,3,4 because there are 4 stats to be plotted, with even spacing
var x_scale = d3.scale.linear()
.range([margin, width])
.domain([0, 4]);
//data bar width
var bw = 30;
var xs = [0.5, 0.5, 1.5, 1.5, 2.5, 2.5, 3.5, 3.5];
var groupinds = [0,1,0,1,0,1,0,1];
var groupnums = [0,0,1,1,2,2,3,3];
var groupnamescolors = [
['All Games', 'blue'],
['Prime Time', 'green'],
['PPG Greater', 'red'],
['PPG Less', 'purple']
];
var allbars = svg
.selectAll(".bar")
.data(alldata)
.enter()
.append('rect')
.attr('class', 'bar')
.attr('x',0).attr('y',0)
.attr('transform', function(d,i) {
return 'translate('+
(x_scale(xs[i]) + (groupinds[i]*(bw+3)))
+','+
y_scale(y_extent[0])
+') rotate(180)'})
.attr('width',bw)
.attr('height', 0)
.attr('fill', function(d, i) {
return groupnamescolors[groupnums[i]][1];})
.on("mouseover", function(d,i) {
d3.select(this).style("fill", "grey");
tooltip.select('.explain')
.html("Average loss: $" + (Math.round(d.tot*1000)/1000) +
"<br>" + explanations[i] + "<br>" +
"<strong>"+d.n + " observations"+"</strong>");
tooltip.style("left", (d3.event.pageX + bw) + "px")
tooltip.style("top", (d3.event.pageY) + "px")
tooltip.style('display','block');
})
.on("mouseout", function(d,i) {
var color = groupnamescolors[groupnums[i]][1];
d3.select(this).style('fill',color);
tooltip.style('display','none');
});
var trans_scale = d3.scale.linear()
.domain(y_extent)
.range([1000,2500]);
allbars.transition()
.duration(function(d) {return trans_scale(d.tot)})
.delay(100)
.attr("height", function(d) {
if(d.n===0) {
return 0;
} else {
return y_scale(y_extent[0])-y_scale(d.tot);
}
});
var singleLabels = svg
.selectAll(".xsinglelabs")
.data(alldata)
.enter()
.append('text')
.attr('class', 'xsinglelabs')
.attr('x',0).attr('y',0)
.attr('transform', function(d,i) {
return 'translate('+
(x_scale(xs[i]) + (groupinds[i]*(bw+3)) - bw)
+', ' +
(y_scale(y_extent[0])+10)
+
') rotate(45)'})
.text(function(d,i) {
if(i%2===0) {
return "Over";
} else {
return "Under";
}
});
xs = [0.5, 1.5, 2.5, 3.5];
var groupLabels = svg
.selectAll(".xgrouplabs")
.data(groupnamescolors)
.enter()
.append('text')
.attr('class', 'xgrouplabs')
.attr('x', function(d,i) {return x_scale(0.5+i)-bw})
.attr('y', y_scale(y_extent[0])+70)
.attr('color', function(d) {return d[1]})
.text(function(d) {return d[0]});
//add y-axis label
svg
.append('text')
.attr('class','label')
.attr('id','y-label')
.attr('x',0).attr('y',0)
.attr('transform', 'translate(' + x_scale(-0.3) + "," + y_scale((y_extent[0]+y_extent[1])*0.2) + "), rotate(-90)")
.text("Oddsmakers' Profit in Dollars");
//add title
svg
.append('text')
.attr('class', 'heading')
.attr('x', width/2)
.attr('y', margin/2)
.attr('text-anchor', 'middle')
.text("Over/Under: Oddsmakers' Profit per $1 Bet When Majority Bets On...");
}
}
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
drawAnyViz(1);
var vizNum = 1;
//transition functions
function backButton() {
if(vizNum===4) {
d3.select("#forwardbutton").style("visibility","visible").style("display","initial");
vizNum += -1;
drawAnyViz(vizNum);
} else if(vizNum===3) {
vizNum += -1;
drawAnyViz(vizNum);
} else if(vizNum===2) {
vizNum += -1;
drawAnyViz(vizNum);
d3.select("#backbutton").style("visibility","hidden");
}
}
function forwardButton() {
if(vizNum===1) {
d3.select("#backbutton").style("visibility","visible").style("display","initial");
vizNum += 1;
drawAnyViz(vizNum);
} else if(vizNum===2) {
vizNum += 1;
drawAnyViz(vizNum);
} else if(vizNum===3) {
d3.select("#backbutton").style("visibility","visible").style("display","initial");
vizNum += 1;
drawAnyViz(vizNum);
d3.select("#forwardbutton").style("visibility","hidden");
}
}
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
</script>
</head>
<body>
<div id="maincontainer">
<div id="vizcontainer"></div>
<div id="viznavcontainer"></div>
</div>
<div id="storycontainer">
<p id="storyintro">There are 3 main ways to bet on an NFL game: against the
<a href="http://pregame.com/EN/main/sports-betting-basics/glossary/terms/against-the-spread.html">spread</a>,
on the <a href="http://pregame.com/EN/main/sports-betting-basics/glossary/terms/money-line.html">money line</a>,
or on the <a href="http://pregame.com/EN/main/sports-betting-basics/glossary/terms/over-under-total.html">over/under</a>.
each method is popular in its own right, but let's take a closer look at the outcomes of each over the last few years.
<br><br>
<u>The question is:</u><br>
How can you best win money betting on football? (Or I suppose, how can you lose the least?) <br><br>
TIP: For the 3rd and 4th charts, hover over the bars for an explanation of the groups.
</p>
<p id="navvizsentence">Navigate the 3 visualizations...</p>
<div id="navbuttons">
<input name="backButton"
id="backbutton"
class="navbuttons"
type="button"
value="Previous"
onclick="backButton()" />
<input name="forwardButton"
id="forwardbutton"
class="navbuttons"
type="button"
value="Next"
onclick="forwardButton()" />
</div>
</div>
</body>
</html>
OverallWeek PublicNetATS PublicNetML PublicNetTOT numATS numML numTOT
1 -0.0108522727272727 -0.165046946832983 -0.0466477272727272 1649177 1223262 56402
2 0.002159090909091 -0.393397009964296 -0.0658522727272727 3038782 2174118 109386
3 0.118977272727273 -0.564723828440251 -0.141136363636364 4540035 3259243 159908
4 0.110340909090909 -0.804309101304159 -0.132045454545454 6102183 4423605 202852
5 0.0212499999999999 -1.07207888152394 -0.0902272727272725 7770217 5647948 244772
6 -0.0555681818181819 -1.1538626377077 -0.212045454545454 9475313 6893650 288864
7 0.0678583916083915 -1.32966740440591 -0.211975524475524 10961854 7952008 330581
8 0.00624999999999995 -1.47113360030003 -0.169318181818181 11567677 8177491 369394
9 -0.0671066433566433 -1.67151094027464 -0.302884615384615 13245464 9425299 408720
10 -0.178743006993007 -1.88855394585294 -0.33433916083916 14392074 10147452 451485
11 -0.208686188811189 -2.02536888405938 -0.456157342657342 16217593 11501093 492031
12 -0.289936188811189 -2.2338707417091 -0.543373251748251 17907099 12723205 532178
13 -0.557322552447552 -2.34791480459392 -0.642520979020979 19514819 13920902 572956
14 -0.509708916083916 -2.55578496334957 -0.746441433566433 20749022 14784833 612098
15 -0.673288461538461 -2.6270015869646 -0.789509615384615 21988045 15671807 643754
16 -0.785561188811189 -2.81263281749763 -0.793202797202797 23465774 16752798 677741
17 -0.796413461538462 -3.00501403749127 -0.849395979020979 24680032 17790361 709845
18 -0.798913461538462 -3.30282587626326 -0.860248251748251 26222034 18901427 772652
19 -0.927890734265734 -3.49708377078732 -0.800702797202797 27490126 19792932 827820
20 -1.02345891608392 -3.69691370570589 -0.94280506993007 28827531 20731886 881361
21 -1.11391346153846 -4.01232575141747 -0.962350524475524 30381037 21905699 926018
22 -1.27391346153846 -4.1984122578356 -0.955986888111888 31763352 22929682 970062
23 -1.33164073426573 -4.3975095267274 -0.93871416083916 33343489 24102033 1013205
24 -1.41391346153846 -4.59788774229882 -0.895532342657342 34939952 25275825 1054339
25 -1.46524213286713 -4.93075986843167 -0.996791083916083 36396954 26364531 1093254
26 -1.42992744755245 -5.2914249393762 -0.860147727272726 38014079 27574442 1132544
27 -1.55174562937063 -5.4608771040873 -0.834693181818181 39251362 28492913 1173204
28 -1.44089335664336 -5.61928829973458 -0.889693181818181 40672706 29544095 1217122
29 -1.56271153846154 -5.84245463295536 -0.960204545454544 42121928 30613593 1260035
30 -1.53776835664336 -5.83204276727757 -0.931681818181817 43547486 31681571 1295627
31 -1.60350699300699 -5.99023668597149 -1.00219318181818 44865819 32654018 1335792
32 -1.71458653846154 -6.27713521159652 -0.952193181818181 46102149 33565059 1371657
33 -1.71708653846154 -6.31422686311328 -0.997647727272726 47235681 34385156 1401862
34 -1.78163199300699 -6.49450365645731 -1.14571590909091 48775118 35551473 1434830
35 -1.85095017482517 -6.78848536287094 -1.13747727272727 50239227 36616471 1524813
36 -1.92504108391608 -7.02963815234736 -1.12446590909091 51541898 37557792 1605597
37 -2.08146153846154 -7.2140935931701 -1.13770454545454 52360951 37991611 1682590
38 -2.06845017482517 -7.37715138651556 -1.19151136363636 53656678 38952106 1761159
39 -2.0801284965035 -7.57841816244107 -1.17969318181818 54882832 39839739 1825685
40 -2.08740122377622 -7.76555378210923 -1.32060227272727 56269286 40855350 1894234
41 -2.10495367132867 -7.83530661590053 -1.33374912587412 57494831 41739900 1959327
42 -2.25026835664336 -8.02848589293584 -1.43060227272727 58657003 42577501 2022666
43 -2.22617744755245 -8.04453636731914 -1.55651136363636 59801519 43399130 2087633
44 -2.29191608391608 -8.18184115425341 -1.58645454545454 60939095 44160266 2154216
45 -2.41237062937063 -8.46865177129474 -1.58690909090909 61840073 44759477 2215166
46 -2.53896153846154 -8.69247864224163 -1.661 63028464 45584735 2287238
47 -2.59873426573426 -8.9254062440549 -1.72793181818182 64308983 46514461 2353946
48 -2.63106381118881 -9.08356003942166 -1.70298863636364 65221827 47109239 2415381
49 -2.80657517482517 -9.35849061376944 -1.71622727272727 66278825 47854302 2473287
50 -2.86515472027972 -9.58110861731268 -1.72230681818182 67307184 48578302 2523441
51 -2.91060926573426 -9.75568080825989 -1.71406818181818 67930404 48933146 2574328
52 -2.99663199300699 -9.95792633125541 -1.767875 69523590 50122602 2659225
53 -3.11248426573426 -10.2487939960297 -1.86105681818182 70796016 51093185 2731423
54 -3.2832229020979 -10.4949824914447 -1.982875 71929239 51941612 2797961
55 -3.2472229020979 -10.6449050126789 -1.95705681818182 73122809 52843448 2859742
56 -3.32131381118881 -10.8852512011099 -1.96160227272727 74342024 53751217 2921672
57 -3.45949562937063 -11.1993938284311 -1.93069318181818 75596948 54722973 2980091
58 -3.43446066433566 -11.340695858281 -1.95118269230769 76676244 55539946 3033238
59 -3.47718793706294 -11.5744279283215 -2.05800087412587 77808524 56415332 3089679
60 -3.2458243006993 -11.5935847996612 -2.15390996503496 78140445 56450981 3143504
61 -3.35127884615384 -11.7080135068673 -2.07663723776224 78487477 56486319 3198363
62 -3.37355157342657 -11.6384049105347 -2.1152736013986 78790466 56538191 3254442
63 -3.4595743006993 -11.8299823843976 -2.24425087412587 80124436 57548726 3403898
64 -3.59451748251748 -12.0946241649581 -2.37322814685315 81274073 58428796 3554023
65 -3.58985839160839 -12.3012866514593 -2.38169405594405 82367452 59273045 3703524
66 -3.6114493006993 -12.5246754150784 -2.54408041958042 83443964 60099055 3821575
67 -3.50656293706294 -12.6491075169309 -2.58834178321678 84554416 60949124 3949328
68 -3.55559702797203 -12.8999637636594 -2.63140996503496 85663981 61805043 4090339
69 -3.67980157342657 -13.1860780104904 -2.44538723776224 86856495 62714987 4205816
70 -3.7526993006993 -13.4141990614105 -2.34765996503496 87859096 63482734 4345856
71 -3.93179020979021 -13.7341486415949 -2.56135314685315 88857933 64237501 4447064
72 -3.89451748251748 -13.9855551564047 -2.45662587412587 89729811 64898864 4573437
73 -3.99179020979021 -14.1686612659589 -2.59617132867133 90609480 65565750 4667747
74 -4.14288111888112 -14.4171104760081 -2.65180769230769 91538808 66277995 4830484
75 -4.18451748251748 -14.7236716799428 -2.60308041958042 92475812 66986518 4941679
76 -4.10955244755245 -14.9254058607947 -2.46790559440559 93267390 67582720 5068335
77 -4.31360839160839 -15.1565407614483 -2.5441993006993 94074058 68188677 5189807
78 -4.38224475524475 -15.2040174516125 -2.54192657342657 94771880 68717805 5298027
79 -4.54860839160839 -15.4545527347101 -2.60774475524475 95770332 69482954 5420506
80 -4.63088111888112 -15.5042563763066 -2.81956293706294 96627255 70131526 5534140
81 -4.68468793706294 -15.7951756257693 -2.97359702797203 97610510 70884124 5661969
82 -4.74446066433566 -16.0390631255611 -2.99399475524475 98328821 71430125 5798048
83 -4.88298339160839 -16.2336684219475 -2.93325611888112 98864926 71749042 5907664
84 -4.92485839160839 -16.3974772429574 -3.0944493006993 99042656 71764689 5949358
85 -4.84741520979021 -16.6360021834671 -3.18763111888112 99777163 72329711 6116824
86 -4.98713111888112 -17.0121682858231 -3.19371066433566 100529818 72903701 6216442
87 -5.15906293706293 -17.2846290409584 -3.24274475524475 101215803 73426166 6321796
88 -5.08281293706293 -17.4463031329102 -3.28581293706293 101928032 73970460 6435519
89 -5.11945629370629 -17.7209083945459 -3.16091783216783 102462556 74368900 6524454
90 -5.10127447552447 -17.9707557686092 -3.29037237762238 103024212 74794742 6660502
91 -5.00927447552447 -18.166225867258 -3.26837237762237 103690188 75295629 6806333
92 -5.0725472027972 -18.4184086192881 -3.31128146853147 104340694 75789121 6910014
93 -5.19309265734266 -18.7244170556303 -3.33000874125874 104942081 76236387 7033227
94 -5.25176398601398 -18.8592637988715 -3.3901486013986 105567483 76705908 7147446
95 -5.09602972027972 -19.0646188656635 -3.40916958041958 106220519 77191194 7244253
96 -5.21648426573426 -19.29524361532 -3.58280594405594 106634156 77301200 7369203
97 -5.32430244755245 -19.5373091492064 -3.63589685314685 107094255 77422535 7498022
98 -5.43060926573426 -19.8568293933075 -3.71118094405594 107335497 77457955 7562674
99 -5.43310926573426 -19.9047191779982 -3.8341923076923 107736025 77565375 7718866
100 -5.43680244755245 -20.100619355374 -3.9548173076923 108128424 77669301 7871997
101 -5.54788199300699 -20.2454974291198 -4.11004458041958 108518235 77773612 8030211
102 -5.63151835664335 -20.520194469801 -4.12566958041958 108840377 77861746 8158941
103 -5.61373426573426 -20.6888777755635 -4.18424912587412 109386752 78016401 8308957
104 -5.82623426573426 -21.0256732416832 -4.29652185314685 109739749 78105523 8447757
105 -5.67958653846154 -21.3199895665504 -4.2894763986014 110112935 78198139 8594742
106 -5.77976835664335 -21.4357593641331 -4.34765821678321 110413471 78275588 8709676
107 -5.86340472027972 -21.5554900441223 -4.54174912587412 110733242 78357182 8828838
108 -6.0152229020979 -21.7189074562015 -4.56402185314685 111078987 78450246 8966131
109 -6.16704108391608 -21.9796958877231 -4.56993094405594 111351964 78518858 9071931
110 -6.22204108391608 -22.2946975992114 -4.6494763986014 111643160 78591163 9178956
111 -6.31889423076923 -22.5481569216095 -4.62150437062937 111930775 78666983 9292923
112 -6.47889423076923 -22.7292423807932 -4.87150437062937 112172829 78724778 9378723
113 -6.52571241258741 -23.0695440307154 -5.00695891608391 112406993 78783334 9468679
114 -6.55804195804196 -23.2429643251295 -5.11445891608391 112693091 78845944 9571841
115 -6.60946241258741 -23.4959085939336 -5.15633391608391 112930650 78909170 9678585
116 -6.6059965034965 -23.6524820347471 -5.30440209790209 113148916 78971463 9782846
117 -6.52020104895105 -23.8737649100223 -5.28423164335664 113322424 79010333 9856514
118 -6.68497377622377 -24.0052966175176 -5.32968618881119 113633083 79094224 9958877
Line Wins Games WinP ImpliedWinP
-120 37 73 0.506849315068493 0.545454545454545
100 36 73 0.493150684931507 0.5
-145 30 62 0.483870967741935 0.591836734693878
125 32 62 0.516129032258065 0.444444444444444
-140 32 61 0.524590163934426 0.583333333333333
-125 29 61 0.475409836065574 0.555555555555556
105 32 61 0.524590163934426 0.48780487804878
120 29 61 0.475409836065574 0.454545454545455
-150 37 58 0.637931034482759 0.6
170 20 58 0.344827586206897 0.37037037037037
130 21 56 0.375 0.434782608695652
155 26 52 0.5 0.392156862745098
260 16 52 0.307692307692308 0.277777777777778
-175 26 51 0.509803921568627 0.636363636363636
-155 29 49 0.591836734693878 0.607843137254902
135 20 49 0.408163265306122 0.425531914893617
165 21 46 0.456521739130435 0.377358490566038
-130 26 45 0.577777777777778 0.565217391304348
110 19 45 0.422222222222222 0.476190476190476
160 15 44 0.340909090909091 0.384615384615385
-180 27 43 0.627906976744186 0.642857142857143
180 13 42 0.30952380952381 0.357142857142857
250 10 41 0.24390243902439 0.285714285714286
-185 23 39 0.58974358974359 0.649122807017544
-170 24 38 0.631578947368421 0.62962962962963
150 14 38 0.368421052631579 0.4
400 7 38 0.184210526315789 0.2
-200 22 36 0.611111111111111 0.666666666666667
-165 20 36 0.555555555555556 0.622641509433962
145 16 36 0.444444444444444 0.408163265306122
-300 27 35 0.771428571428571 0.75
-135 20 35 0.571428571428571 0.574468085106383
115 15 35 0.428571428571429 0.465116279069767
-250 26 34 0.764705882352941 0.714285714285714
175 10 34 0.294117647058824 0.363636363636364
140 15 33 0.454545454545455 0.416666666666667
185 8 33 0.242424242424242 0.350877192982456
210 8 33 0.242424242424242 0.32258064516129
220 12 33 0.363636363636364 0.3125
-350 25 32 0.78125 0.777777777777778
-240 17 32 0.53125 0.705882352941177
200 14 32 0.4375 0.333333333333333
-260 20 31 0.645161290322581 0.722222222222222
-160 16 31 0.516129032258065 0.615384615384615
290 6 31 0.193548387096774 0.256410256410256
-210 19 30 0.633333333333333 0.67741935483871
450 2 30 0.0666666666666667 0.181818181818182
-320 19 29 0.655172413793103 0.761904761904762
240 12 29 0.413793103448276 0.294117647058823
425 7 28 0.25 0.19047619047619
-600 25 27 0.925925925925926 0.857142857142857
190 6 27 0.222222222222222 0.344827586206897
280 4 27 0.148148148148148 0.263157894736842
-330 18 25 0.72 0.767441860465116
350 4 25 0.16 0.222222222222222
-270 20 24 0.833333333333333 0.72972972972973
-220 18 24 0.75 0.6875
-500 18 23 0.782608695652174 0.833333333333333
-310 16 23 0.695652173913043 0.75609756097561
-265 14 23 0.608695652173913 0.726027397260274
-230 15 23 0.652173913043478 0.696969696969697
-195 15 23 0.652173913043478 0.661016949152542
270 8 23 0.347826086956522 0.27027027027027
330 5 23 0.217391304347826 0.232558139534884
-550 15 22 0.681818181818182 0.846153846153846
-340 19 22 0.863636363636364 0.772727272727273
225 9 22 0.409090909090909 0.307692307692308
-400 16 21 0.761904761904762 0.8
195 8 21 0.380952380952381 0.338983050847458
230 3 21 0.142857142857143 0.303030303030303
310 7 21 0.333333333333333 0.24390243902439
-450 14 19 0.736842105263158 0.818181818181818
-290 11 19 0.578947368421053 0.743589743589744
600 1 19 0.0526315789473684 0.142857142857143
-215 15 18 0.833333333333333 0.682539682539683
-205 14 18 0.777777777777778 0.672131147540984
-190 11 18 0.611111111111111 0.655172413793103
-235 13 17 0.764705882352941 0.701492537313433
475 2 17 0.117647058823529 0.173913043478261
-370 12 16 0.75 0.787234042553192
-360 16 16 1 0.782608695652174
-280 9 16 0.5625 0.736842105263158
-225 12 16 0.75 0.692307692307692
-245 11 15 0.733333333333333 0.710144927536232
-110 4 15 0.266666666666667 0.523809523809524
-110 11 15 0.733333333333333 0.523809523809524
205 4 15 0.266666666666667 0.327868852459016
320 2 15 0.133333333333333 0.238095238095238
300 0 14 0 0.25
375 5 14 0.357142857142857 0.210526315789474
550 1 14 0.0714285714285714 0.153846153846154
-380 10 13 0.769230769230769 0.791666666666667
-475 8 12 0.666666666666667 0.826086956521739
245 4 12 0.333333333333333 0.289855072463768
-800 11 11 1 0.888888888888889
-700 9 11 0.818181818181818 0.875
500 2 11 0.181818181818182 0.166666666666667
-900 10 10 1 0.9
-650 9 10 0.9 0.866666666666667
-575 7 10 0.7 0.851851851851852
-525 10 10 1 0.84
-325 6 10 0.6 0.764705882352941
235 2 10 0.2 0.298507462686567
360 2 10 0.2 0.217391304347826
700 3 10 0.3 0.125
-1000 7 9 0.777777777777778 0.909090909090909
-750 8 9 0.888888888888889 0.882352941176471
-675 8 9 0.888888888888889 0.870967741935484
-115 4 9 0.444444444444444 0.534883720930233
-105 5 9 0.555555555555556 0.51219512195122
215 1 9 0.111111111111111 0.317460317460317
265 4 9 0.444444444444444 0.273972602739726
800 1 9 0.111111111111111 0.111111111111111
-1300 7 8 0.875 0.928571428571429
-390 6 8 0.75 0.795918367346939
650 1 8 0.125 0.133333333333333
-1100 6 7 0.857142857142857 0.916666666666667
-850 5 7 0.714285714285714 0.894736842105263
-625 7 7 1 0.862068965517241
-440 6 7 0.857142857142857 0.814814814814815
-420 6 7 0.857142857142857 0.807692307692308
-275 6 7 0.857142857142857 0.733333333333333
-255 6 7 0.857142857142857 0.71830985915493
325 3 7 0.428571428571429 0.235294117647059
340 2 7 0.285714285714286 0.227272727272727
-1050 6 6 1 0.91304347826087
-460 5 6 0.833333333333333 0.821428571428571
-315 3 6 0.5 0.759036144578313
-775 5 5 1 0.885714285714286
-410 4 5 0.8 0.803921568627451
-345 4 5 0.8 0.775280898876405
-295 4 5 0.8 0.746835443037975
255 1 5 0.2 0.28169014084507
370 1 5 0.2 0.212765957446808
525 2 5 0.4 0.16
575 0 5 0 0.148148148148148
750 0 5 0 0.117647058823529
900 0 5 0 0.1
GameID Season Week Home Away Winner Loser PtsW PtsL Spread Favorite ATSteam ATS PublicWinATS PublicNetATS HomePtsFor HomePtsAgt AwayPtsFor AwayPtsAgt
100 2009 1 Pittsburgh Steelers Tennessee Titans Pittsburgh Steelers Tennessee Titans 13 10 -6.5 Pittsburgh Steelers Pittsburgh Steelers 0.56 FALSE -0.16 13 10 10 13
103 2009 1 Houston Texans New York Jets New York Jets Houston Texans 24 7 -4.5 Houston Texans Houston Texans 0.68 FALSE -0.389090909090909 7 24 24 7
106 2009 1 New York Giants Washington Redskins New York Giants Washington Redskins 23 17 -6.5 New York Giants New York Giants 0.6 FALSE -0.236363636363636 23 17 17 23
109 2009 1 Arizona Cardinals San Francisco 49ers San Francisco 49ers Arizona Cardinals 20 16 -5 Arizona Cardinals Arizona Cardinals 0.58 FALSE -0.198181818181818 16 20 20 16
112 2009 1 Seattle Seahawks St. Louis Rams Seattle Seahawks St. Louis Rams 28 0 -7.5 Seattle Seahawks Seattle Seahawks 0.73 TRUE 0.393636363636364 28 0 0 28
115 2009 1 Carolina Panthers Philadelphia Eagles Philadelphia Eagles Carolina Panthers 38 10 -2.5 Philadelphia Eagles Philadelphia Eagles 0.59 TRUE 0.126363636363636 10 38 38 10
118 2009 1 Cleveland Browns Minnesota Vikings Minnesota Vikings Cleveland Browns 34 20 -4 Minnesota Vikings Minnesota Vikings 0.83 TRUE 0.584545454545454 20 34 34 20
121 2009 1 Atlanta Falcons Miami Dolphins Atlanta Falcons Miami Dolphins 19 7 -4 Atlanta Falcons Atlanta Falcons 0.57 TRUE 0.0881818181818181 19 7 7 19
124 2009 1 Baltimore Ravens Kansas City Chiefs Baltimore Ravens Kansas City Chiefs 38 24 -13 Baltimore Ravens Baltimore Ravens 0.75 TRUE 0.431818181818182 38 24 24 38
127 2009 1 Green Bay Packers Chicago Bears Green Bay Packers Chicago Bears 21 15 -4.5 Green Bay Packers Green Bay Packers 0.61 TRUE 0.164545454545455 21 15 15 21
130 2009 1 Indianapolis Colts Jacksonville Jaguars Indianapolis Colts Jacksonville Jaguars 14 12 -6.5 Indianapolis Colts Indianapolis Colts 0.59 FALSE -0.217272727272727 14 12 12 14
133 2009 1 New Orleans Saints Detroit Lions New Orleans Saints Detroit Lions 45 27 -14 New Orleans Saints New Orleans Saints 0.74 TRUE 0.412727272727273 45 27 27 45
136 2009 1 Cincinnati Bengals Denver Broncos Denver Broncos Cincinnati Bengals 12 7 -4.5 Cincinnati Bengals Cincinnati Bengals 0.78 FALSE -0.58 7 12 12 7
139 2009 1 Tampa Bay Buccaneers Dallas Cowboys Dallas Cowboys Tampa Bay Buccaneers 34 21 -5.5 Dallas Cowboys Dallas Cowboys 0.78 TRUE 0.489090909090909 21 34 34 21
142 2009 1 Oakland Raiders San Diego Chargers San Diego Chargers Oakland Raiders 24 20 -10.5 San Diego Chargers San Diego Chargers 0.74 FALSE -0.503636363636364 20 24 24 20
145 2009 1 New England Patriots Buffalo Bills New England Patriots Buffalo Bills 25 24 -13 New England Patriots New England Patriots 0.78 FALSE -0.58 25 24 24 25
148 2009 2 Dallas Cowboys New York Giants New York Giants Dallas Cowboys 33 31 -3 Dallas Cowboys New York Giants 0.54 TRUE 0.030909090909091 32.5 27 28 24
151 2009 2 Chicago Bears Pittsburgh Steelers Chicago Bears Pittsburgh Steelers 17 14 -3 Pittsburgh Steelers Pittsburgh Steelers 0.77 FALSE -0.560909090909091 16 17.5 13.5 13.5
154 2009 2 Kansas City Chiefs Oakland Raiders Oakland Raiders Kansas City Chiefs 13 10 -2.5 Kansas City Chiefs Oakland Raiders 0.72 TRUE 0.374545454545455 17 25.5 16.5 17
157 2009 2 Washington Redskins St. Louis Rams Washington Redskins St. Louis Rams 9 7 -9.5 Washington Redskins Washington Redskins 0.7 FALSE -0.427272727272727 13 15 3.5 18.5
160 2009 2 San Diego Chargers Baltimore Ravens Baltimore Ravens San Diego Chargers 31 26 -1 San Diego Chargers Baltimore Ravens 0.72 TRUE 0.374545454545455 25 25.5 34.5 25
163 2009 2 San Francisco 49ers Seattle Seahawks San Francisco 49ers Seattle Seahawks 23 10 -1 San Francisco 49ers Seattle Seahawks 0.53 FALSE -0.102727272727273 21.5 13 19 11.5
166 2009 2 Buffalo Bills Tampa Bay Buccaneers Buffalo Bills Tampa Bay Buccaneers 33 20 -4 Buffalo Bills Buffalo Bills 0.71 TRUE 0.355454545454545 28.5 22.5 20.5 33.5
169 2009 2 New York Jets New England Patriots New York Jets New England Patriots 16 9 -3.5 New England Patriots New England Patriots 0.69 FALSE -0.408181818181818 20 8 17 20
172 2009 2 Philadelphia Eagles New Orleans Saints New Orleans Saints Philadelphia Eagles 48 22 -3 New Orleans Saints New Orleans Saints 0.78 TRUE 0.489090909090909 30 29 46.5 24.5
175 2009 2 Atlanta Falcons Carolina Panthers Atlanta Falcons Carolina Panthers 28 20 -6 Atlanta Falcons Atlanta Falcons 0.6 TRUE 0.145454545454546 23.5 13.5 15 33
178 2009 2 Green Bay Packers Cincinnati Bengals Cincinnati Bengals Green Bay Packers 31 24 -7.5 Green Bay Packers Green Bay Packers 0.64 FALSE -0.312727272727273 22.5 23 19 18
181 2009 2 Denver Broncos Cleveland Browns Denver Broncos Cleveland Browns 27 6 -3 Denver Broncos Denver Broncos 0.58 TRUE 0.107272727272727 19.5 6.5 13 30.5
184 2009 2 Jacksonville Jaguars Arizona Cardinals Arizona Cardinals Jacksonville Jaguars 31 17 -3 Jacksonville Jaguars Arizona Cardinals 0.51 TRUE -0.0263636363636363 14.5 22.5 23.5 18.5
187 2009 2 Tennessee Titans Houston Texans Houston Texans Tennessee Titans 34 31 -7 Tennessee Titans Tennessee Titans 0.79 FALSE -0.599090909090909 20.5 23.5 20.5 27.5
190 2009 2 Detroit Lions Minnesota Vikings Minnesota Vikings Detroit Lions 27 13 -10 Minnesota Vikings Minnesota Vikings 0.77 TRUE 0.47 20 36 30.5 16.5
193 2009 2 Miami Dolphins Indianapolis Colts Indianapolis Colts Miami Dolphins 27 23 -3 Indianapolis Colts Indianapolis Colts 0.68 TRUE 0.298181818181818 15 23 20.5 17.5
196 2009 3 San Diego Chargers Miami Dolphins San Diego Chargers Miami Dolphins 23 13 -5 San Diego Chargers San Diego Chargers 0.55 TRUE 0.05 24.3333333333333 21.3333333333333 14.3333333333333 23
199 2009 3 Buffalo Bills New Orleans Saints New Orleans Saints Buffalo Bills 27 7 -6 New Orleans Saints New Orleans Saints 0.68 TRUE 0.298181818181818 21.3333333333333 24 40 18.6666666666667
202 2009 3 Tampa Bay Buccaneers New York Giants New York Giants Tampa Bay Buccaneers 24 0 -6.5 New York Giants New York Giants 0.82 TRUE 0.565454545454545 13.6666666666667 30.3333333333333 26.6666666666667 16
205 2009 3 New York Jets Tennessee Titans New York Jets Tennessee Titans 24 17 -1 New York Jets Tennessee Titans 0.68 FALSE -0.389090909090909 21.3333333333333 11 19.3333333333333 23.6666666666667
208 2009 3 Cincinnati Bengals Pittsburgh Steelers Cincinnati Bengals Pittsburgh Steelers 23 20 -3.5 Pittsburgh Steelers Pittsburgh Steelers 0.62 FALSE -0.274545454545455 20.3333333333333 18.6666666666667 15.6666666666667 16.6666666666667
211 2009 3 Minnesota Vikings San Francisco 49ers Minnesota Vikings San Francisco 49ers 27 24 -6.5 Minnesota Vikings San Francisco 49ers 0.55 TRUE 0.05 29.3333333333333 19 22.3333333333333 17.6666666666667
214 2009 3 Detroit Lions Washington Redskins Detroit Lions Washington Redskins 19 14 -6 Washington Redskins Detroit Lions 0.68 TRUE 0.298181818181818 19.6666666666667 28.6666666666667 13.3333333333333 16.3333333333333
217 2009 3 Philadelphia Eagles Kansas City Chiefs Philadelphia Eagles Kansas City Chiefs 34 14 -7.5 Philadelphia Eagles Philadelphia Eagles 0.68 TRUE 0.298181818181818 31.3333333333333 24 16 28.3333333333333
220 2009 3 Houston Texans Jacksonville Jaguars Jacksonville Jaguars Houston Texans 31 24 -4 Houston Texans Houston Texans 0.75 FALSE -0.522727272727273 21.6666666666667 28.6666666666667 20 23
223 2009 3 New England Patriots Atlanta Falcons New England Patriots Atlanta Falcons 26 10 -4.5 New England Patriots New England Patriots 0.52 TRUE -0.00727272727272721 20 16.6666666666667 19 17.6666666666667
226 2009 3 Seattle Seahawks Chicago Bears Chicago Bears Seattle Seahawks 25 19 -3 Chicago Bears Chicago Bears 0.81 TRUE 0.546363636363637 19 16 19 18
229 2009 3 Baltimore Ravens Cleveland Browns Baltimore Ravens Cleveland Browns 34 3 -13.5 Baltimore Ravens Baltimore Ravens 0.69 TRUE 0.317272727272727 34.3333333333333 17.6666666666667 9.66666666666667 31.6666666666667
232 2009 3 Arizona Cardinals Indianapolis Colts Indianapolis Colts Arizona Cardinals 31 10 -3 Arizona Cardinals Indianapolis Colts 0.54 TRUE 0.030909090909091 19 22.6666666666667 24 15
235 2009 3 Oakland Raiders Denver Broncos Denver Broncos Oakland Raiders 23 3 -2.5 Denver Broncos Denver Broncos 0.53 TRUE 0.0118181818181819 12 19 20.6666666666667 5.33333333333333
238 2009 3 St. Louis Rams Green Bay Packers Green Bay Packers St. Louis Rams 36 17 -6.5 Green Bay Packers Green Bay Packers 0.81 TRUE 0.546363636363637 8 24.3333333333333 27 21
241 2009 3 Dallas Cowboys Carolina Panthers Dallas Cowboys Carolina Panthers 21 7 -8.5 Dallas Cowboys Dallas Cowboys 0.55 TRUE 0.05 28.6666666666667 20.3333333333333 12.3333333333333 29
244 2009 4 Jacksonville Jaguars Tennessee Titans Jacksonville Jaguars Tennessee Titans 37 17 -3 Tennessee Titans Tennessee Titans 0.78 FALSE -0.58 24.25 21.5 18.75 27
247 2009 4 Houston Texans Oakland Raiders Houston Texans Oakland Raiders 29 6 -8.5 Houston Texans Houston Texans 0.59 TRUE 0.126363636363636 23.5 23 10.5 21.5
250 2009 4 San Francisco 49ers St. Louis Rams San Francisco 49ers St. Louis Rams 35 0 -9.5 San Francisco 49ers San Francisco 49ers 0.76 TRUE 0.450909090909091 25.5 13.25 6 27
253 2009 4 New England Patriots Baltimore Ravens New England Patriots Baltimore Ravens 27 21 -2 New England Patriots Baltimore Ravens 0.53 FALSE -0.102727272727273 21.75 17.75 31 20
256 2009 4 Pittsburgh Steelers San Diego Chargers Pittsburgh Steelers San Diego Chargers 38 28 -5.5 Pittsburgh Steelers San Diego Chargers 0.58 FALSE -0.198181818181818 21.25 19.5 25.25 25.5
259 2009 4 Washington Redskins Tampa Bay Buccaneers Washington Redskins Tampa Bay Buccaneers 16 13 -9 Washington Redskins Tampa Bay Buccaneers 0.5 TRUE -0.0454545454545454 14 15.5 13.5 26.75
262 2009 4 New Orleans Saints New York Jets New Orleans Saints New York Jets 24 10 -7.5 New Orleans Saints New Orleans Saints 0.59 TRUE 0.126363636363636 36 16.5 18.5 14.25
265 2009 4 Kansas City Chiefs New York Giants New York Giants Kansas City Chiefs 27 16 -9 New York Giants New York Giants 0.83 TRUE 0.584545454545454 16 28 26.75 16
268 2009 4 Indianapolis Colts Seattle Seahawks Indianapolis Colts Seattle Seahawks 34 17 -10 Indianapolis Colts Indianapolis Colts 0.79 TRUE 0.508181818181818 26.5 15.5 18.5 20.5
271 2009 4 Chicago Bears Detroit Lions Chicago Bears Detroit Lions 48 24 -10 Chicago Bears Chicago Bears 0.52 TRUE -0.00727272727272721 26.25 19.5 20.75 33.5
274 2009 4 Denver Broncos Dallas Cowboys Denver Broncos Dallas Cowboys 17 10 -2.5 Dallas Cowboys Dallas Cowboys 0.66 FALSE -0.350909090909091 19.75 6.5 24 19.5
277 2009 4 Cleveland Browns Cincinnati Bengals Cincinnati Bengals Cleveland Browns 23 20 -6.5 Cincinnati Bengals Cincinnati Bengals 0.79 FALSE -0.599090909090909 12.25 29.5 21 19
280 2009 4 Miami Dolphins Buffalo Bills Miami Dolphins Buffalo Bills 38 10 -1 Miami Dolphins Buffalo Bills 0.59 FALSE -0.217272727272727 20.25 19.75 18.5 27.5
283 2009 4 Minnesota Vikings Green Bay Packers Minnesota Vikings Green Bay Packers 30 23 -4.5 Minnesota Vikings Minnesota Vikings 0.62 TRUE 0.183636363636364 29.5 20 26 23.25
286 2009 5 Arizona Cardinals Houston Texans Arizona Cardinals Houston Texans 28 21 -6 Arizona Cardinals Arizona Cardinals 0.57 TRUE 0.0881818181818181 21.25 22.25 23 24
289 2009 5 Carolina Panthers Washington Redskins Carolina Panthers Washington Redskins 20 17 -5 Carolina Panthers Carolina Panthers 0.74 FALSE -0.503636363636364 14.25 26 14.6 16.4
292 2009 5 Philadelphia Eagles Tampa Bay Buccaneers Philadelphia Eagles Tampa Bay Buccaneers 33 14 -15.5 Philadelphia Eagles Philadelphia Eagles 0.69 TRUE 0.317272727272727 31.75 21.5 13.6 28
295 2009 5 San Francisco 49ers Atlanta Falcons Atlanta Falcons San Francisco 49ers 45 10 -1 San Francisco 49ers San Francisco 49ers 0.6 FALSE -0.236363636363636 22.4 19.6 25.5 15.75
298 2009 5 New York Giants Oakland Raiders New York Giants Oakland Raiders 44 7 -15.5 New York Giants New York Giants 0.7 TRUE 0.336363636363636 30.2 14.2 9.8 26
301 2009 5 Detroit Lions Pittsburgh Steelers Pittsburgh Steelers Detroit Lions 28 20 -11 Pittsburgh Steelers Pittsburgh Steelers 0.81 FALSE -0.637272727272727 20.6 32.4 22.6 19.6
304 2009 5 Denver Broncos New England Patriots Denver Broncos New England Patriots 20 17 -3 New England Patriots New England Patriots 0.74 FALSE -0.503636363636364 19.8 8.6 20.8 18.2
307 2009 5 St. Louis Rams Minnesota Vikings Minnesota Vikings St. Louis Rams 38 10 -10.5 Minnesota Vikings Minnesota Vikings 0.83 TRUE 0.584545454545454 6.8 29.2 31.2 18
310 2009 5 Seattle Seahawks Jacksonville Jaguars Seattle Seahawks Jacksonville Jaguars 41 0 -1.5 Seattle Seahawks Jacksonville Jaguars 0.53 FALSE -0.102727272727273 23 16.4 19.4 25.4
313 2009 5 Kansas City Chiefs Dallas Cowboys Dallas Cowboys Kansas City Chiefs 26 20 -7 Dallas Cowboys Dallas Cowboys 0.66 FALSE -0.350909090909091 16.8 27.6 24.4 19.6
316 2009 5 Tennessee Titans Indianapolis Colts Indianapolis Colts Tennessee Titans 31 9 -4 Indianapolis Colts Indianapolis Colts 0.76 TRUE 0.450909090909091 16.8 27.8 27.4 14.2
319 2009 5 Buffalo Bills Cleveland Browns Cleveland Browns Buffalo Bills 6 3 -5.5 Buffalo Bills Buffalo Bills 0.6 FALSE -0.236363636363636 15.4 23.2 11 24.2
322 2009 5 Baltimore Ravens Cincinnati Bengals Cincinnati Bengals Baltimore Ravens 17 14 -9 Baltimore Ravens Baltimore Ravens 0.52 FALSE -0.0836363636363636 27.6 19.4 20.2 18
325 2009 5 Miami Dolphins New York Jets Miami Dolphins New York Jets 31 27 -3 New York Jets New York Jets 0.67 FALSE -0.37 22.4 21.2 20.2 17.6
328 2009 6 Seattle Seahawks Arizona Cardinals Arizona Cardinals Seattle Seahawks 27 3 -3 Seattle Seahawks Seattle Seahawks 0.53 FALSE -0.102727272727273 19.6666666666667 18.1666666666667 22.4 18.4
331 2009 6 Tampa Bay Buccaneers Carolina Panthers Carolina Panthers Tampa Bay Buccaneers 28 21 -3 Carolina Panthers Carolina Panthers 0.73 TRUE 0.393636363636364 14.8333333333333 28 17 25
334 2009 6 Atlanta Falcons Chicago Bears Atlanta Falcons Chicago Bears 21 14 -4 Atlanta Falcons Atlanta Falcons 0.67 TRUE 0.279090909090909 24.6 15.4 23.8 19.8
337 2009 6 Oakland Raiders Philadelphia Eagles Oakland Raiders Philadelphia Eagles 13 9 -14.5 Philadelphia Eagles Philadelphia Eagles 0.84 FALSE -0.694545454545454 10.3333333333333 23.1666666666667 27.2 19.8
340 2009 6 New Orleans Saints New York Giants New Orleans Saints New York Giants 48 27 -3 New Orleans Saints New York Giants 0.62 FALSE -0.274545454545455 38.4 18.6 29.6666666666667 19.8333333333333
343 2009 6 Minnesota Vikings Baltimore Ravens Minnesota Vikings Baltimore Ravens 33 31 -3 Minnesota Vikings Minnesota Vikings 0.6 FALSE -0.236363636363636 31.5 20.1666666666667 28.1666666666667 21.6666666666667
346 2009 6 Jacksonville Jaguars St. Louis Rams Jacksonville Jaguars St. Louis Rams 23 20 -9.5 Jacksonville Jaguars Jacksonville Jaguars 0.64 FALSE -0.312727272727273 20 24.5 9 28.1666666666667
349 2009 6 New England Patriots Tennessee Titans New England Patriots Tennessee Titans 59 0 -9 New England Patriots New England Patriots 0.7 TRUE 0.336363636363636 27.1666666666667 15.1666666666667 14 33
352 2009 6 Washington Redskins Kansas City Chiefs Kansas City Chiefs Washington Redskins 14 6 -6 Washington Redskins Kansas City Chiefs 0.69 TRUE 0.317272727272727 13.1666666666667 16 16.3333333333333 24
355 2009 6 Cincinnati Bengals Houston Texans Houston Texans Cincinnati Bengals 28 17 -4 Cincinnati Bengals Houston Texans 0.5 TRUE -0.0454545454545454 19.6666666666667 19.6666666666667 23.8333333333333 22.8333333333333
358 2009 6 Green Bay Packers Detroit Lions Green Bay Packers Detroit Lions 26 0 -14 Green Bay Packers Green Bay Packers 0.65 TRUE 0.240909090909091 26 18.6 17.1666666666667 31.3333333333333
361 2009 6 New York Jets Buffalo Bills Buffalo Bills New York Jets 16 13 -9.5 New York Jets New York Jets 0.7 FALSE -0.427272727272727 19 17.3333333333333 15.5 21.5
364 2009 6 Pittsburgh Steelers Cleveland Browns Pittsburgh Steelers Cleveland Browns 27 14 -14 Pittsburgh Steelers Pittsburgh Steelers 0.75 FALSE -0.522727272727273 23.3333333333333 18.6666666666667 11.5 24.6666666666667
367 2009 6 San Diego Chargers Denver Broncos Denver Broncos San Diego Chargers 34 23 -3.5 San Diego Chargers Denver Broncos 0.51 TRUE -0.0263636363636363 24.8 27.2 22.1666666666667 11
370 2009 7 Dallas Cowboys Atlanta Falcons Dallas Cowboys Atlanta Falcons 37 21 -5 Dallas Cowboys Atlanta Falcons 0.71 FALSE -0.446363636363636 26.5 19.8333333333333 24 19
373 2009 7 Cincinnati Bengals Chicago Bears Cincinnati Bengals Chicago Bears 45 10 -1.5 Chicago Bears Chicago Bears 0.59 FALSE -0.217272727272727 23.2857142857143 18.2857142857143 21.5 24
376 2009 7 Miami Dolphins New Orleans Saints New Orleans Saints Miami Dolphins 46 34 -6.5 New Orleans Saints New Orleans Saints 0.74 TRUE 0.412727272727273 24.3333333333333 25.3333333333333 39.6666666666667 21.1666666666667
379 2009 7 St. Louis Rams Indianapolis Colts Indianapolis Colts St. Louis Rams 42 6 -14 Indianapolis Colts Indianapolis Colts 0.91 TRUE 0.737272727272727 8.57142857142857 30.1428571428571 29.8333333333333 12.8333333333333
382 2009 7 New York Giants Arizona Cardinals Arizona Cardinals New York Giants 24 17 -8 New York Giants New York Giants 0.66 FALSE -0.350909090909091 27.8571428571429 20.4285714285714 22.6666666666667 18.1666666666667
385 2009 7 Oakland Raiders New York Jets New York Jets Oakland Raiders 38 0 -6 New York Jets New York Jets 0.57 TRUE 0.0881818181818181 8.85714285714286 25.2857142857143 21.7142857142857 14.8571428571429
388 2009 7 Cleveland Browns Green Bay Packers Green Bay Packers Cleveland Browns 31 3 -9 Green Bay Packers Green Bay Packers 0.83 TRUE 0.584545454545454 10.2857142857143 25.5714285714286 26.8333333333333 16
391 2009 7 Kansas City Chiefs San Diego Chargers San Diego Chargers Kansas City Chiefs 37 7 -5.5 San Diego Chargers San Diego Chargers 0.73 TRUE 0.393636363636364 15 25.8571428571429 26.8333333333333 23.8333333333333
394 2009 7 Houston Texans San Francisco 49ers Houston Texans San Francisco 49ers 24 21 -3 Houston Texans Houston Texans 0.54 FALSE -0.121818181818182 23.8571428571429 22.5714285714286 22.1666666666667 20.3333333333333
397 2009 7 Carolina Panthers Buffalo Bills Buffalo Bills Carolina Panthers 20 9 -7 Carolina Panthers Carolina Panthers 0.6 FALSE -0.236363636363636 15.6666666666667 24.1666666666667 16.1428571428571 19.7142857142857
400 2009 7 Pittsburgh Steelers Minnesota Vikings Pittsburgh Steelers Minnesota Vikings 27 17 -6 Pittsburgh Steelers Minnesota Vikings 0.63 FALSE -0.293636363636364 23.8571428571429 18.4285714285714 29.4285714285714 21.1428571428571
403 2009 7 Tampa Bay Buccaneers New England Patriots New England Patriots Tampa Bay Buccaneers 35 7 -15.5 New England Patriots New England Patriots 0.86 TRUE 0.641818181818182 13.7142857142857 29 28.2857142857143 14
406 2009 7 Washington Redskins Philadelphia Eagles Philadelphia Eagles Washington Redskins 27 17 -8.5 Philadelphia Eagles Philadelphia Eagles 0.74 TRUE 0.412727272727273 13.7142857142857 17.5714285714286 27.1666666666667 19.3333333333333
409 2009 8 Dallas Cowboys Seattle Seahawks Dallas Cowboys Seattle Seahawks 38 17 -10 Dallas Cowboys Dallas Cowboys 0.78 TRUE 0.489090909090909 28.1428571428571 19.4285714285714 19.2857142857143 21
412 2009 8 Detroit Lions St. Louis Rams St. Louis Rams Detroit Lions 17 10 -3 Detroit Lions Detroit Lions 0.52 FALSE -0.0836363636363636 16.1428571428571 29.2857142857143 9.625 27.625
415 2009 8 Green Bay Packers Minnesota Vikings Minnesota Vikings Green Bay Packers 38 26 -3.5 Green Bay Packers Minnesota Vikings 0.67 TRUE 0.279090909090909 26.7142857142857 19.1428571428571 30.5 21.75
418 2009 8 Indianapolis Colts San Francisco 49ers Indianapolis Colts San Francisco 49ers 18 14 -13 Indianapolis Colts Indianapolis Colts 0.76 FALSE -0.541818181818182 28.1428571428571 13 21 20
421 2009 8 Arizona Cardinals Carolina Panthers Carolina Panthers Arizona Cardinals 34 21 -10 Arizona Cardinals Arizona Cardinals 0.77 FALSE -0.560909090909091 22.4285714285714 20.4285714285714 18.2857142857143 23.7142857142857
424 2009 8 Chicago Bears Cleveland Browns Chicago Bears Cleveland Browns 30 6 -12 Chicago Bears Chicago Bears 0.76 TRUE 0.450909090909091 22.7142857142857 21.4285714285714 9.75 26.125
427 2009 8 Baltimore Ravens Denver Broncos Baltimore Ravens Denver Broncos 30 7 -4.5 Baltimore Ravens Denver Broncos 0.51 FALSE -0.0645454545454546 28.4285714285714 19.5714285714286 20 13.7142857142857
430 2009 8 Tennessee Titans Jacksonville Jaguars Tennessee Titans Jacksonville Jaguars 30 13 -3 Tennessee Titans Jacksonville Jaguars 0.52 FALSE -0.0836363636363636 16.2857142857143 30.1428571428571 19 25.2857142857143
433 2009 8 New York Jets Miami Dolphins Miami Dolphins New York Jets 30 25 -3.5 New York Jets Miami Dolphins 0.55 TRUE 0.05 22.125 16.75 25.1428571428571 25.2857142857143
436 2009 8 Buffalo Bills Houston Texans Houston Texans Buffalo Bills 31 10 -3.5 Houston Texans Houston Texans 0.69 TRUE 0.317272727272727 15.375 21.125 24.75 21
439 2009 8 Philadelphia Eagles New York Giants Philadelphia Eagles New York Giants 40 17 -2.5 New York Giants New York Giants 0.71 FALSE -0.446363636363636 29 19 26.5 22.875
442 2009 8 San Diego Chargers Oakland Raiders San Diego Chargers Oakland Raiders 24 16 -16 San Diego Chargers San Diego Chargers 0.71 FALSE -0.446363636363636 26.4285714285714 22.7142857142857 9.75 25.125
445 2009 8 New Orleans Saints Atlanta Falcons New Orleans Saints Atlanta Falcons 35 27 -11 New Orleans Saints New Orleans Saints 0.56 FALSE -0.16 39 22 24.4285714285714 21.2857142857143
448 2009 9 San Francisco 49ers Tennessee Titans Tennessee Titans San Francisco 49ers 34 27 -4.5 San Francisco 49ers San Francisco 49ers 0.63 FALSE -0.293636363636364 21.75 21.75 18.5 29.75
451 2009 9 Cincinnati Bengals Baltimore Ravens Cincinnati Bengals Baltimore Ravens 17 7 -3 Baltimore Ravens Baltimore Ravens 0.59 FALSE -0.217272727272727 22.5 16.875 25.75 19.25
454 2009 9 Atlanta Falcons Washington Redskins Atlanta Falcons Washington Redskins 31 17 -8.5 Atlanta Falcons Atlanta Falcons 0.75 TRUE 0.431818181818182 25.25 20.75 14.125 19.25
457 2009 9 New England Patriots Miami Dolphins New England Patriots Miami Dolphins 27 17 -11 New England Patriots New England Patriots 0.59 FALSE -0.217272727272727 28.125 14.375 24.125 25.5
460 2009 9 Jacksonville Jaguars Kansas City Chiefs Jacksonville Jaguars Kansas City Chiefs 24 21 -7 Jacksonville Jaguars Jacksonville Jaguars 0.65 FALSE -0.331818181818182 19.625 24.75 15.75 25.625
463 2009 9 Indianapolis Colts Houston Texans Indianapolis Colts Houston Texans 20 17 -7.5 Indianapolis Colts Houston Texans 0.6 TRUE 0.145454545454546 27.125 13.5 23.8888888888889 20.8888888888889
466 2009 9 New Orleans Saints Carolina Panthers New Orleans Saints Carolina Panthers 30 20 -11.5 New Orleans Saints New Orleans Saints 0.61 FALSE -0.255454545454545 37.875 21.75 18.5 24.5
469 2009 9 Chicago Bears Arizona Cardinals Arizona Cardinals Chicago Bears 41 21 -2 Chicago Bears Arizona Cardinals 0.64 TRUE 0.221818181818182 22.5 23.875 24.75 20.5
472 2009 9 Philadelphia Eagles Dallas Cowboys Dallas Cowboys Philadelphia Eagles 20 16 -3 Philadelphia Eagles Philadelphia Eagles 0.63 FALSE -0.293636363636364 27.375 19.125 27.125 19
475 2009 9 Seattle Seahawks Detroit Lions Seattle Seahawks Detroit Lions 32 20 -11 Seattle Seahawks Seattle Seahawks 0.69 TRUE 0.317272727272727 20.875 20.875 16.625 29.625
478 2009 9 Tampa Bay Buccaneers Green Bay Packers Tampa Bay Buccaneers Green Bay Packers 38 28 -10 Green Bay Packers Green Bay Packers 0.78 FALSE -0.58 16.75 28.875 26.875 21.5
481 2009 9 New York Giants San Diego Chargers San Diego Chargers New York Giants 21 20 -5 New York Giants New York Giants 0.52 FALSE -0.0836363636363636 25.7777777777778 22.6666666666667 25.75 22.375
484 2009 9 Denver Broncos Pittsburgh Steelers Pittsburgh Steelers Denver Broncos 28 10 -3 Pittsburgh Steelers Pittsburgh Steelers 0.63 TRUE 0.202727272727273 18.75 15.5 24.375 17.375
487 2009 10 San Francisco 49ers Chicago Bears San Francisco 49ers Chicago Bears 10 6 -3 San Francisco 49ers San Francisco 49ers 0.56 TRUE 0.0690909090909093 20.4444444444444 20 20.6666666666667 22.3333333333333
490 2009 10 St. Louis Rams New Orleans Saints New Orleans Saints St. Louis Rams 28 23 -14 New Orleans Saints New Orleans Saints 0.87 FALSE -0.751818181818182 11.1111111111111 27.6666666666667 36.7777777777778 21.8888888888889
493 2009 10 Indianapolis Colts New England Patriots Indianapolis Colts New England Patriots 35 34 -2 Indianapolis Colts New England Patriots 0.65 TRUE 0.240909090909091 28 15.7777777777778 28.7777777777778 16.6666666666667
496 2009 10 San Diego Chargers Philadelphia Eagles San Diego Chargers Philadelphia Eagles 31 23 -1 San Diego Chargers San Diego Chargers 0.57 TRUE 0.0881818181818181 26.3333333333333 22.4444444444444 26.8888888888889 20.4444444444444
499 2009 10 Arizona Cardinals Seattle Seahawks Arizona Cardinals Seattle Seahawks 31 20 -8.5 Arizona Cardinals Arizona Cardinals 0.72 TRUE 0.374545454545455 25.4444444444444 20.4444444444444 20.7777777777778 22
502 2009 10 Miami Dolphins Tampa Bay Buccaneers Miami Dolphins Tampa Bay Buccaneers 25 23 -10 Miami Dolphins Miami Dolphins 0.68 FALSE -0.389090909090909 24.2222222222222 25.2222222222222 17.4444444444444 28.4444444444444
505 2009 10 Oakland Raiders Kansas City Chiefs Kansas City Chiefs Oakland Raiders 16 10 -2.5 Oakland Raiders Kansas City Chiefs 0.58 TRUE 0.107272727272727 9.77777777777778 24.1111111111111 15.7777777777778 23.8888888888889
508 2009 10 New York Jets Jacksonville Jaguars Jacksonville Jaguars New York Jets 24 22 -6.5 New York Jets New York Jets 0.63 FALSE -0.293636363636364 22.1111111111111 17.5555555555556 20.1111111111111 24.4444444444444
511 2009 10 Carolina Panthers Atlanta Falcons Carolina Panthers Atlanta Falcons 28 19 -1.5 Atlanta Falcons Atlanta Falcons 0.73 FALSE -0.484545454545455 19.5555555555556 23.8888888888889 24.5555555555556 21.5555555555556
514 2009 10 Tennessee Titans Buffalo Bills Tennessee Titans Buffalo Bills 41 17 -7.5 Tennessee Titans Tennessee Titans 0.67 TRUE 0.279090909090909 21 28.3333333333333 15.5555555555556 23.3333333333333
517 2009 10 Pittsburgh Steelers Cincinnati Bengals Cincinnati Bengals Pittsburgh Steelers 18 12 -7 Pittsburgh Steelers Cincinnati Bengals 0.57 TRUE 0.0881818181818181 23 17.4444444444444 22 16.3333333333333
520 2009 10 Green Bay Packers Dallas Cowboys Green Bay Packers Dallas Cowboys 17 7 -3 Dallas Cowboys Dallas Cowboys 0.71 FALSE -0.446363636363636 25.7777777777778 19.8888888888889 24.8888888888889 18.7777777777778
523 2009 10 Washington Redskins Denver Broncos Washington Redskins Denver Broncos 27 17 -3.5 Denver Broncos Denver Broncos 0.82 FALSE -0.656363636363636 15.5555555555556 19 18.5555555555556 16.7777777777778
526 2009 10 Minnesota Vikings Detroit Lions Minnesota Vikings Detroit Lions 27 10 -17 Minnesota Vikings Minnesota Vikings 0.68 FALSE -0.389090909090909 30.1111111111111 20.4444444444444 15.8888888888889 29.3333333333333
529 2009 10 Cleveland Browns Baltimore Ravens Baltimore Ravens Cleveland Browns 16 0 -11 Baltimore Ravens Baltimore Ravens 0.78 TRUE 0.489090909090909 8.66666666666667 25 24.6666666666667 17.1111111111111
532 2009 11 Carolina Panthers Miami Dolphins Miami Dolphins Carolina Panthers 24 17 -3.5 Carolina Panthers Carolina Panthers 0.64 FALSE -0.312727272727273 19.3 23.9 24.2 24.4
535 2009 11 Chicago Bears Philadelphia Eagles Philadelphia Eagles Chicago Bears 24 20 -3.5 Philadelphia Eagles Philadelphia Eagles 0.7 TRUE 0.336363636363636 20.6 22.5 26.6 20.4
538 2009 11 Kansas City Chiefs Pittsburgh Steelers Kansas City Chiefs Pittsburgh Steelers 27 24 -11.5 Pittsburgh Steelers Pittsburgh Steelers 0.81 FALSE -0.637272727272727 16.9 23.9 23.1 18.4
541 2009 11 Denver Broncos San Diego Chargers San Diego Chargers Denver Broncos 32 3 -6 San Diego Chargers San Diego Chargers 0.7 TRUE 0.336363636363636 17 18.3 26.9 20.5
544 2009 11 Minnesota Vikings Seattle Seahawks Minnesota Vikings Seattle Seahawks 35 9 -10.5 Minnesota Vikings Minnesota Vikings 0.77 TRUE 0.47 30.6 19.3 19.6 23.3
547 2009 11 Green Bay Packers San Francisco 49ers Green Bay Packers San Francisco 49ers 30 24 -6 Green Bay Packers Green Bay Packers 0.59 FALSE -0.217272727272727 26.2 20.3 20.8 21
550 2009 11 Dallas Cowboys Washington Redskins Dallas Cowboys Washington Redskins 7 6 -10.5 Dallas Cowboys Dallas Cowboys 0.53 FALSE -0.102727272727273 23.1 17.5 14.6 17.8
553 2009 11 New England Patriots New York Jets New England Patriots New York Jets 31 14 -11 New England Patriots New England Patriots 0.77 TRUE 0.47 29 16.4 21.3 18.9
556 2009 11 Tampa Bay Buccaneers New Orleans Saints New Orleans Saints Tampa Bay Buccaneers 38 7 -10.5 New Orleans Saints New Orleans Saints 0.67 TRUE 0.279090909090909 16.4 29.4 36.9 20.4
559 2009 11 New York Giants Atlanta Falcons New York Giants Atlanta Falcons 34 31 -7 New York Giants New York Giants 0.59 FALSE -0.217272727272727 26.6 23.5 25.2 22.8
562 2009 11 Jacksonville Jaguars Buffalo Bills Jacksonville Jaguars Buffalo Bills 18 15 -8.5 Jacksonville Jaguars Jacksonville Jaguars 0.53 FALSE -0.102727272727273 19.9 23.5 15.5 22.8
565 2009 11 Oakland Raiders Cincinnati Bengals Oakland Raiders Cincinnati Bengals 20 17 -8.5 Cincinnati Bengals Cincinnati Bengals 0.75 FALSE -0.522727272727273 10.8 23.4 21.5 16.7
568 2009 11 Detroit Lions Cleveland Browns Detroit Lions Cleveland Browns 38 37 -3 Detroit Lions Detroit Lions 0.7 FALSE -0.427272727272727 18.1 30.1 11.5 26.3
571 2009 11 Baltimore Ravens Indianapolis Colts Indianapolis Colts Baltimore Ravens 17 15 -1.5 Indianapolis Colts Indianapolis Colts 0.79 TRUE 0.508181818181818 23.7 17.1 26.9 15.7
574 2009 11 St. Louis Rams Arizona Cardinals Arizona Cardinals St. Louis Rams 21 13 -9 Arizona Cardinals Arizona Cardinals 0.71 FALSE -0.446363636363636 11.3 27 25 19.7
577 2009 11 Houston Texans Tennessee Titans Tennessee Titans Houston Texans 20 17 -3.5 Houston Texans Tennessee Titans 0.58 TRUE 0.107272727272727 23.2 20.8 20.9 27.2
580 2009 12 Denver Broncos New York Giants Denver Broncos New York Giants 26 6 -4.5 New York Giants New York Giants 0.55 FALSE -0.140909090909091 17.8181818181818 17.1818181818182 24.7272727272727 23.7272727272727
583 2009 12 Detroit Lions Green Bay Packers Green Bay Packers Detroit Lions 34 12 -11.5 Green Bay Packers Green Bay Packers 0.73 TRUE 0.393636363636364 17.5454545454545 30.4545454545455 26.9090909090909 19.5454545454545
586 2009 12 Dallas Cowboys Oakland Raiders Dallas Cowboys Oakland Raiders 24 7 -13.5 Dallas Cowboys Dallas Cowboys 0.51 TRUE -0.0263636363636363 23.1818181818182 16.5454545454545 10.4545454545455 23.4545454545455
589 2009 12 Baltimore Ravens Pittsburgh Steelers Baltimore Ravens Pittsburgh Steelers 20 17 -7.5 Baltimore Ravens Baltimore Ravens 0.55 FALSE -0.140909090909091 23.3636363636364 17.0909090909091 22.5454545454545 18.5454545454545
592 2009 12 St. Louis Rams Seattle Seahawks Seattle Seahawks St. Louis Rams 27 17 -3.5 Seattle Seahawks Seattle Seahawks 0.55 TRUE 0.05 11.8181818181818 27 20.2727272727273 22.7272727272727
595 2009 12 Atlanta Falcons Tampa Bay Buccaneers Atlanta Falcons Tampa Bay Buccaneers 20 17 -12.5 Atlanta Falcons Atlanta Falcons 0.73 FALSE -0.484545454545455 24.7272727272727 22.2727272727273 16.4545454545455 28.5454545454545
598 2009 12 Philadelphia Eagles Washington Redskins Philadelphia Eagles Washington Redskins 27 24 -10 Philadelphia Eagles Philadelphia Eagles 0.64 FALSE -0.312727272727273 26.6363636363636 20.7272727272727 15.4545454545455 18.6363636363636
601 2009 12 Buffalo Bills Miami Dolphins Buffalo Bills Miami Dolphins 31 14 -3.5 Miami Dolphins Miami Dolphins 0.68 FALSE -0.389090909090909 16.9090909090909 22 23.2727272727273 25
604 2009 12 San Diego Chargers Kansas City Chiefs San Diego Chargers Kansas City Chiefs 43 14 -13.5 San Diego Chargers San Diego Chargers 0.64 TRUE 0.221818181818182 28.3636363636364 19.9090909090909 16.6363636363636 25.6363636363636
607 2009 12 San Francisco 49ers Jacksonville Jaguars San Francisco 49ers Jacksonville Jaguars 20 3 -3 San Francisco 49ers Jacksonville Jaguars 0.52 FALSE -0.0836363636363636 20.7272727272727 19.3636363636364 18.3636363636364 23.1818181818182
610 2009 12 Tennessee Titans Arizona Cardinals Tennessee Titans Arizona Cardinals 20 17 -3.5 Tennessee Titans Tennessee Titans 0.57 FALSE -0.179090909090909 20.8181818181818 26.2727272727273 24.2727272727273 19.7272727272727
613 2009 12 Houston Texans Indianapolis Colts Indianapolis Colts Houston Texans 35 27 -3 Indianapolis Colts Indianapolis Colts 0.62 TRUE 0.183636363636364 23.5454545454545 22.0909090909091 27.6363636363636 16.7272727272727
616 2009 12 Cincinnati Bengals Cleveland Browns Cincinnati Bengals Cleveland Browns 16 7 -12.5 Cincinnati Bengals Cincinnati Bengals 0.69 FALSE -0.408181818181818 21 15.8181818181818 11.0909090909091 25.3636363636364
619 2009 12 Minnesota Vikings Chicago Bears Minnesota Vikings Chicago Bears 36 10 -10.5 Minnesota Vikings Minnesota Vikings 0.74 TRUE 0.412727272727273 31.0909090909091 18.4545454545455 19.6363636363636 23.7272727272727
622 2009 12 New York Jets Carolina Panthers New York Jets Carolina Panthers 17 6 -3.5 New York Jets Carolina Panthers 0.62 FALSE -0.274545454545455 20.9090909090909 17.7272727272727 18.0909090909091 23.2727272727273
625 2009 12 New Orleans Saints New England Patriots New Orleans Saints New England Patriots 38 17 -2 New Orleans Saints New England Patriots 0.54 FALSE -0.121818181818182 37 20.0909090909091 27.9090909090909 18.3636363636364
628 2009 13 Buffalo Bills New York Jets New York Jets Buffalo Bills 19 13 -3.5 New York Jets New York Jets 0.52 TRUE -0.00727272727272721 16.5833333333333 21.75 20.75 17.3333333333333
631 2009 13 Seattle Seahawks San Francisco 49ers Seattle Seahawks San Francisco 49ers 20 17 -1 San Francisco 49ers San Francisco 49ers 0.6 FALSE -0.236363636363636 20.25 22.25 20.4166666666667 19.4166666666667
634 2009 13 Cleveland Browns San Diego Chargers San Diego Chargers Cleveland Browns 30 23 -14 San Diego Chargers San Diego Chargers 0.81 FALSE -0.637272727272727 12.0833333333333 25.75 28.5 20.1666666666667
637 2009 13 Chicago Bears St. Louis Rams Chicago Bears St. Louis Rams 17 9 -9 Chicago Bears Chicago Bears 0.63 FALSE -0.293636363636364 19.4166666666667 22.5 11.5833333333333 26.1666666666667
640 2009 13 Pittsburgh Steelers Oakland Raiders Oakland Raiders Pittsburgh Steelers 27 24 -15 Pittsburgh Steelers Pittsburgh Steelers 0.69 FALSE -0.408181818181818 22.6666666666667 19.25 11.8333333333333 23.5
643 2009 13 Atlanta Falcons Philadelphia Eagles Philadelphia Eagles Atlanta Falcons 34 7 -4.5 Philadelphia Eagles Philadelphia Eagles 0.67 TRUE 0.279090909090909 23.25 23.25 27.25 19.5833333333333
646 2009 13 Indianapolis Colts Tennessee Titans Indianapolis Colts Tennessee Titans 27 17 -6 Indianapolis Colts Tennessee Titans 0.56 FALSE -0.16 27.5833333333333 16.75 20.5 26.3333333333333
649 2009 13 Carolina Panthers Tampa Bay Buccaneers Carolina Panthers Tampa Bay Buccaneers 16 6 -4 Carolina Panthers Tampa Bay Buccaneers 0.58 FALSE -0.198181818181818 17.9166666666667 21.8333333333333 15.5833333333333 27.5
652 2009 13 Miami Dolphins New England Patriots Miami Dolphins New England Patriots 22 21 -5.5 New England Patriots New England Patriots 0.82 FALSE -0.656363636363636 23.1666666666667 24.6666666666667 27.3333333333333 18.6666666666667
655 2009 13 New York Giants Dallas Cowboys New York Giants Dallas Cowboys 31 24 -1.5 Dallas Cowboys Dallas Cowboys 0.57 FALSE -0.179090909090909 25.25 23.75 23.25 17.75
658 2009 13 Kansas City Chiefs Denver Broncos Denver Broncos Kansas City Chiefs 44 13 -6 Denver Broncos Denver Broncos 0.61 TRUE 0.164545454545455 16.3333333333333 27.1666666666667 20 16.8333333333333
661 2009 13 Cincinnati Bengals Detroit Lions Cincinnati Bengals Detroit Lions 23 13 -13.5 Cincinnati Bengals Cincinnati Bengals 0.75 FALSE -0.522727272727273 21.1666666666667 15.5833333333333 17.1666666666667 29.8333333333333
664 2009 13 Jacksonville Jaguars Houston Texans Jacksonville Jaguars Houston Texans 23 18 -1.5 Houston Texans Houston Texans 0.72 FALSE -0.465454545454545 18.75 22.75 23.0833333333333 22.1666666666667
667 2009 13 Arizona Cardinals Minnesota Vikings Arizona Cardinals Minnesota Vikings 30 17 -3.5 Minnesota Vikings Minnesota Vikings 0.75 FALSE -0.522727272727273 24.75 19.5 29.9166666666667 19.4166666666667
670 2009 13 Washington Redskins New Orleans Saints New Orleans Saints Washington Redskins 33 30 -9 New Orleans Saints New Orleans Saints 0.72 FALSE -0.465454545454545 16.6666666666667 19.8333333333333 36.6666666666667 20.9166666666667
673 2009 13 Green Bay Packers Baltimore Ravens Green Bay Packers Baltimore Ravens 27 14 -3.5 Green Bay Packers Green Bay Packers 0.54 TRUE 0.030909090909091 26.9166666666667 19.0833333333333 22.5833333333333 17.9166666666667
676 2009 14 Cleveland Browns Pittsburgh Steelers Cleveland Browns Pittsburgh Steelers 13 6 -9.5 Pittsburgh Steelers Pittsburgh Steelers 0.55 FALSE -0.140909090909091 12.1538461538462 24.2307692307692 21.3846153846154 18.7692307692308
679 2009 14 Tampa Bay Buccaneers New York Jets New York Jets Tampa Bay Buccaneers 26 3 -3.5 New York Jets New York Jets 0.64 TRUE 0.221818181818182 14.6153846153846 27.3846153846154 21.1538461538462 16.2307692307692
682 2009 14 New York Giants Philadelphia Eagles Philadelphia Eagles New York Giants 45 38 -1 Philadelphia Eagles Philadelphia Eagles 0.59 TRUE 0.126363636363636 26.2307692307692 25.3846153846154 28.6153846153846 21
685 2009 14 Tennessee Titans St. Louis Rams Tennessee Titans St. Louis Rams 47 7 -14 Tennessee Titans Tennessee Titans 0.67 TRUE 0.279090909090909 22.5384615384615 24.8461538461538 11.2307692307692 27.7692307692308
688 2009 14 Dallas Cowboys San Diego Chargers San Diego Chargers Dallas Cowboys 20 17 -3.5 Dallas Cowboys San Diego Chargers 0.73 TRUE 0.393636363636364 22.7692307692308 17.9230769230769 27.8461538461538 19.9230769230769
691 2009 14 Houston Texans Seattle Seahawks Houston Texans Seattle Seahawks 34 7 -7 Houston Texans Houston Texans 0.68 TRUE 0.298181818181818 23.9230769230769 21 19.2307692307692 23.1538461538462
694 2009 14 Oakland Raiders Washington Redskins Washington Redskins Oakland Raiders 34 13 -2 Washington Redskins Washington Redskins 0.58 TRUE 0.107272727272727 11.9230769230769 24.3076923076923 18 19.3076923076923
697 2009 14 Atlanta Falcons New Orleans Saints New Orleans Saints Atlanta Falcons 26 23 -10 New Orleans Saints New Orleans Saints 0.75 FALSE -0.522727272727273 23.2307692307692 23.4615384615385 35.8461538461538 21.0769230769231
700 2009 14 Jacksonville Jaguars Miami Dolphins Miami Dolphins Jacksonville Jaguars 14 10 -2 Jacksonville Jaguars Miami Dolphins 0.63 TRUE 0.202727272727273 18.0769230769231 22.0769230769231 22.4615384615385 23.5384615384615
703 2009 14 Kansas City Chiefs Buffalo Bills Buffalo Bills Kansas City Chiefs 16 10 -2.5 Buffalo Bills Kansas City Chiefs 0.51 FALSE -0.0645454545454546 15.8461538461538 26.3076923076923 16.5384615384615 20.8461538461538
706 2009 14 New England Patriots Carolina Panthers New England Patriots Carolina Panthers 20 10 -12.5 New England Patriots New England Patriots 0.62 FALSE -0.274545454545455 26.7692307692308 18 17.3076923076923 21.6923076923077
709 2009 14 Minnesota Vikings Cincinnati Bengals Minnesota Vikings Cincinnati Bengals 30 10 -6 Minnesota Vikings Cincinnati Bengals 0.52 FALSE -0.0836363636363636 29.9230769230769 18.6923076923077 20.3076923076923 16.6923076923077
712 2009 14 Indianapolis Colts Denver Broncos Indianapolis Colts Denver Broncos 28 16 -6.5 Indianapolis Colts Indianapolis Colts 0.62 TRUE 0.183636363636364 27.6153846153846 16.6923076923077 19.6923076923077 17.6923076923077
715 2009 14 Baltimore Ravens Detroit Lions Baltimore Ravens Detroit Lions 48 3 -14 Baltimore Ravens Baltimore Ravens 0.59 TRUE 0.126363636363636 24.5384615384615 16.7692307692308 16.0769230769231 31.2307692307692
718 2009 14 Chicago Bears Green Bay Packers Green Bay Packers Chicago Bears 21 14 -4 Green Bay Packers Green Bay Packers 0.77 TRUE 0.47 19 22.3846153846154 26.4615384615385 18.6923076923077
721 2009 14 San Francisco 49ers Arizona Cardinals San Francisco 49ers Arizona Cardinals 24 9 -4 Arizona Cardinals Arizona Cardinals 0.77 FALSE -0.560909090909091 20.6923076923077 18.6153846153846 23.5384615384615 19.8461538461538
724 2009 15 Jacksonville Jaguars Indianapolis Colts Indianapolis Colts Jacksonville Jaguars 35 31 -3 Indianapolis Colts Indianapolis Colts 0.71 TRUE 0.355454545454545 19 23 28.1428571428571 17.7142857142857
727 2009 15 New Orleans Saints Dallas Cowboys Dallas Cowboys New Orleans Saints 24 17 -7.5 New Orleans Saints New Orleans Saints 0.61 FALSE -0.255454545454545 34.5 21.2857142857143 22.8571428571429 17.8571428571429
730 2009 15 Carolina Panthers Minnesota Vikings Carolina Panthers Minnesota Vikings 26 7 -8.5 Minnesota Vikings Minnesota Vikings 0.67 FALSE -0.37 17.9285714285714 20.6428571428571 28.2857142857143 19.2142857142857
733 2009 15 Buffalo Bills New England Patriots New England Patriots Buffalo Bills 17 10 -7 New England Patriots New England Patriots 0.73 FALSE -0.484545454545455 16.0714285714286 20.5714285714286 26.0714285714286 17.4285714285714
736 2009 15 Denver Broncos Oakland Raiders Oakland Raiders Denver Broncos 20 19 -14 Denver Broncos Denver Broncos 0.57 FALSE -0.179090909090909 19.6428571428571 17.8571428571429 12.5 23.9285714285714
739 2009 15 Philadelphia Eagles San Francisco 49ers Philadelphia Eagles San Francisco 49ers 27 13 -7.5 Philadelphia Eagles Philadelphia Eagles 0.61 TRUE 0.164545454545455 28.5 20.4285714285714 20.1428571428571 19.2142857142857
742 2009 15 Seattle Seahawks Tampa Bay Buccaneers Tampa Bay Buccaneers Seattle Seahawks 24 7 -6.5 Seattle Seahawks Seattle Seahawks 0.79 FALSE -0.599090909090909 18.3571428571429 23.2142857142857 15.2857142857143 25.9285714285714
745 2009 15 Tennessee Titans Miami Dolphins Tennessee Titans Miami Dolphins 27 24 -5 Tennessee Titans Miami Dolphins 0.57 TRUE 0.0881818181818181 22.8571428571429 24.7857142857143 22.5714285714286 23.7857142857143
748 2009 15 St. Louis Rams Houston Texans Houston Texans St. Louis Rams 16 13 -14 Houston Texans Houston Texans 0.75 FALSE -0.522727272727273 11.3571428571429 26.9285714285714 23.3571428571429 20.4285714285714
751 2009 15 Pittsburgh Steelers Green Bay Packers Pittsburgh Steelers Green Bay Packers 37 36 -3 Pittsburgh Steelers Green Bay Packers 0.59 TRUE 0.126363636363636 22.5 20 27.1428571428571 20
754 2009 15 New York Jets Atlanta Falcons Atlanta Falcons New York Jets 10 7 -5.5 New York Jets New York Jets 0.51 FALSE -0.0645454545454546 20.1428571428571 15.7857142857143 22.2857142857143 22.2857142857143
757 2009 15 Baltimore Ravens Chicago Bears Baltimore Ravens Chicago Bears 31 7 -11 Baltimore Ravens Baltimore Ravens 0.6 TRUE 0.145454545454546 25 16.0714285714286 18.1428571428571 23
760 2009 15 San Diego Chargers Cincinnati Bengals San Diego Chargers Cincinnati Bengals 27 24 -7 San Diego Chargers San Diego Chargers 0.61 FALSE -0.255454545454545 27.7857142857143 20.2142857142857 20.5714285714286 17.4285714285714
763 2009 15 Kansas City Chiefs Cleveland Browns Cleveland Browns Kansas City Chiefs 41 34 -2.5 Kansas City Chiefs Kansas City Chiefs 0.65 FALSE -0.331818181818182 17.1428571428571 27.3571428571429 14.2142857142857 24.9285714285714
766 2009 15 Detroit Lions Arizona Cardinals Arizona Cardinals Detroit Lions 31 24 -14 Arizona Cardinals Arizona Cardinals 0.81 FALSE -0.637272727272727 16.6428571428571 31.2142857142857 24.0714285714286 20.1428571428571
769 2009 15 Washington Redskins New York Giants New York Giants Washington Redskins 45 12 -3 New York Giants New York Giants 0.63 TRUE 0.202727272727273 17.5714285714286 21.1428571428571 27.5714285714286 24.4285714285714
772 2009 16 Tennessee Titans San Diego Chargers San Diego Chargers Tennessee Titans 42 17 -1.5 Tennessee Titans San Diego Chargers 0.71 TRUE 0.355454545454545 22.4666666666667 25.9333333333333 28.7333333333333 20
775 2009 16 Cleveland Browns Oakland Raiders Cleveland Browns Oakland Raiders 23 9 -3 Cleveland Browns Oakland Raiders 0.5 FALSE -0.0454545454545454 14.8 23.8666666666667 12.2666666666667 23.8666666666667
778 2009 16 Arizona Cardinals St. Louis Rams Arizona Cardinals St. Louis Rams 31 10 -16.5 Arizona Cardinals Arizona Cardinals 0.64 TRUE 0.221818181818182 24.5333333333333 19.4666666666667 11.2666666666667 27.2
781 2009 16 Pittsburgh Steelers Baltimore Ravens Pittsburgh Steelers Baltimore Ravens 23 20 -3 Pittsburgh Steelers Baltimore Ravens 0.53 TRUE 0.0118181818181819 22.5333333333333 20 24.6666666666667 16.5333333333333
784 2009 16 Green Bay Packers Seattle Seahawks Green Bay Packers Seattle Seahawks 48 10 -13.5 Green Bay Packers Green Bay Packers 0.71 TRUE 0.355454545454545 28.5333333333333 19.3333333333333 17.8 24.8666666666667
787 2009 16 New Orleans Saints Tampa Bay Buccaneers Tampa Bay Buccaneers New Orleans Saints 20 17 -14 New Orleans Saints New Orleans Saints 0.75 FALSE -0.522727272727273 33.3333333333333 21.2 15.6 25.3333333333333
790 2009 16 Indianapolis Colts New York Jets New York Jets Indianapolis Colts 29 15 -3 Indianapolis Colts Indianapolis Colts 0.74 FALSE -0.503636363636364 27.2666666666667 18.4666666666667 20.7333333333333 15.7333333333333
793 2009 16 Cincinnati Bengals Kansas City Chiefs Cincinnati Bengals Kansas City Chiefs 17 10 -13.5 Cincinnati Bengals Cincinnati Bengals 0.64 FALSE -0.312727272727273 20.3333333333333 16.9333333333333 16.6666666666667 26.6666666666667
796 2009 16 Washington Redskins Dallas Cowboys Dallas Cowboys Washington Redskins 17 0 -7 Dallas Cowboys Dallas Cowboys 0.71 TRUE 0.355454545454545 16.4 20.8666666666667 22.4666666666667 16.6666666666667
799 2009 16 New England Patriots Jacksonville Jaguars New England Patriots Jacksonville Jaguars 35 7 -9.5 New England Patriots Jacksonville Jaguars 0.51 FALSE -0.0645454545454546 26.6666666666667 16.7333333333333 18.2 23.8
802 2009 16 Miami Dolphins Houston Texans Houston Texans Miami Dolphins 27 20 -1.5 Miami Dolphins Miami Dolphins 0.56 FALSE -0.16 22.4 24 23.6 20.4
805 2009 16 San Francisco 49ers Detroit Lions San Francisco 49ers Detroit Lions 20 6 -14 San Francisco 49ers San Francisco 49ers 0.55 FALSE -0.140909090909091 20.1333333333333 18.3333333333333 15.9333333333333 30.4666666666667
808 2009 16 Philadelphia Eagles Denver Broncos Philadelphia Eagles Denver Broncos 30 27 -7 Philadelphia Eagles Philadelphia Eagles 0.7 FALSE -0.427272727272727 28.6 20.8666666666667 20.1333333333333 18.6666666666667
811 2009 16 Atlanta Falcons Buffalo Bills Atlanta Falcons Buffalo Bills 31 3 -8 Atlanta Falcons Atlanta Falcons 0.53 TRUE 0.0118181818181819 22.8666666666667 21 15.2 21.2666666666667
814 2009 16 New York Giants Carolina Panthers Carolina Panthers New York Giants 41 9 -8.5 New York Giants New York Giants 0.75 FALSE -0.522727272727273 26.3333333333333 25.5333333333333 19.4666666666667 19.8666666666667
817 2009 16 Chicago Bears Minnesota Vikings Chicago Bears Minnesota Vikings 36 30 -8.5 Minnesota Vikings Minnesota Vikings 0.69 FALSE -0.408181818181818 19.3333333333333 23.4666666666667 28.4 20.3333333333333
820 2009 17 Minnesota Vikings New York Giants Minnesota Vikings New York Giants 44 7 -8 Minnesota Vikings New York Giants 0.54 FALSE -0.121818181818182 29.375 19.5 25.125 26.6875
823 2009 17 Seattle Seahawks Tennessee Titans Tennessee Titans Seattle Seahawks 17 13 -6 Tennessee Titans Tennessee Titans 0.82 FALSE -0.656363636363636 17.5 24.375 22.125 25.125
826 2009 17 Dallas Cowboys Philadelphia Eagles Dallas Cowboys Philadelphia Eagles 24 0 -3 Dallas Cowboys Philadelphia Eagles 0.57 FALSE -0.179090909090909 22.5625 15.625 26.8125 21.0625
829 2009 17 Miami Dolphins Pittsburgh Steelers Pittsburgh Steelers Miami Dolphins 30 24 -3 Pittsburgh Steelers Pittsburgh Steelers 0.71 TRUE 0.355454545454545 22.5 24.375 23 20.25
832 2009 17 Oakland Raiders Baltimore Ravens Baltimore Ravens Oakland Raiders 21 13 -10 Baltimore Ravens Baltimore Ravens 0.65 FALSE -0.331818181818182 12.3125 23.6875 24.4375 16.3125
835 2009 17 St. Louis Rams San Francisco 49ers San Francisco 49ers St. Louis Rams 28 6 -7 San Francisco 49ers San Francisco 49ers 0.75 TRUE 0.431818181818182 10.9375 27.25 20.625 17.5625
838 2009 17 San Diego Chargers Washington Redskins San Diego Chargers Washington Redskins 23 20 -3 San Diego Chargers San Diego Chargers 0.83 FALSE -0.675454545454545 28.375 20 16.625 21
841 2009 17 Houston Texans New England Patriots Houston Texans New England Patriots 34 27 -8 Houston Texans New England Patriots 0.56 TRUE 0.0690909090909093 24.25 20.8125 26.6875 17.8125
844 2009 17 Carolina Panthers New Orleans Saints Carolina Panthers New Orleans Saints 23 10 -10 Carolina Panthers Carolina Panthers 0.59 TRUE 0.126363636363636 19.6875 19.25 31.875 21.3125
847 2009 17 Denver Broncos Kansas City Chiefs Kansas City Chiefs Denver Broncos 44 24 -9 Denver Broncos Kansas City Chiefs 0.56 TRUE 0.0690909090909093 20.375 20.25 18.375 26.5
850 2009 17 Cleveland Browns Jacksonville Jaguars Cleveland Browns Jacksonville Jaguars 23 17 -2 Cleveland Browns Jacksonville Jaguars 0.55 FALSE -0.140909090909091 15.3125 23.4375 18.125 23.75
853 2009 17 Arizona Cardinals Green Bay Packers Green Bay Packers Arizona Cardinals 33 7 -3 Arizona Cardinals Green Bay Packers 0.69 TRUE 0.317272727272727 23.4375 20.3125 28.8125 18.5625
856 2009 17 Buffalo Bills Indianapolis Colts Buffalo Bills Indianapolis Colts 30 7 -8 Buffalo Bills Indianapolis Colts 0.65 FALSE -0.331818181818182 16.125 20.375 26 19.1875
859 2009 17 New York Jets Cincinnati Bengals New York Jets Cincinnati Bengals 37 0 -10 New York Jets Cincinnati Bengals 0.54 FALSE -0.121818181818182 21.75 14.75 19.0625 18.1875
862 2009 17 Detroit Lions Chicago Bears Chicago Bears Detroit Lions 37 23 -4.5 Chicago Bears Chicago Bears 0.83 TRUE 0.584545454545454 16.375 30.875 20.4375 23.4375
865 2009 17 Tampa Bay Buccaneers Atlanta Falcons Atlanta Falcons Tampa Bay Buccaneers 20 10 -3 Atlanta Falcons Atlanta Falcons 0.75 TRUE 0.431818181818182 15.25 25 22.6875 20.3125
868 2010 1 New Orleans Saints Minnesota Vikings New Orleans Saints Minnesota Vikings 14 9 -5 New Orleans Saints New Orleans Saints 0.65 FALSE -0.331818181818182 14 9 9 14
871 2010 1 Pittsburgh Steelers Atlanta Falcons Pittsburgh Steelers Atlanta Falcons 15 9 -1 Atlanta Falcons Atlanta Falcons 0.59 FALSE -0.217272727272727 15 9 9 15
874 2010 1 Seattle Seahawks San Francisco 49ers Seattle Seahawks San Francisco 49ers 31 6 -3 San Francisco 49ers San Francisco 49ers 0.86 FALSE -0.732727272727273 31 6 6 31
877 2010 1 Tennessee Titans Oakland Raiders Tennessee Titans Oakland Raiders 38 13 -6.5 Tennessee Titans Tennessee Titans 0.75 TRUE 0.431818181818182 38 13 13 38
880 2010 1 Buffalo Bills Miami Dolphins Miami Dolphins Buffalo Bills 15 10 -3 Miami Dolphins Miami Dolphins 0.78 TRUE 0.489090909090909 10 15 15 10
883 2010 1 Philadelphia Eagles Green Bay Packers Green Bay Packers Philadelphia Eagles 27 20 -3 Green Bay Packers Green Bay Packers 0.83 TRUE 0.584545454545454 20 27 27 20
886 2010 1 Chicago Bears Detroit Lions Chicago Bears Detroit Lions 19 14 -6.5 Chicago Bears Detroit Lions 0.59 TRUE 0.126363636363636 19 14 14 19
889 2010 1 Jacksonville Jaguars Denver Broncos Jacksonville Jaguars Denver Broncos 24 17 -3 Jacksonville Jaguars Jacksonville Jaguars 0.57 TRUE 0.0881818181818181 24 17 17 24
892 2010 1 Washington Redskins Dallas Cowboys Washington Redskins Dallas Cowboys 13 7 -3.5 Dallas Cowboys Dallas Cowboys 0.68 FALSE -0.389090909090909 13 7 7 13
895 2010 1 St. Louis Rams Arizona Cardinals Arizona Cardinals St. Louis Rams 17 13 -3 Arizona Cardinals Arizona Cardinals 0.56 TRUE 0.0690909090909093 13 17 17 13
898 2010 1 Houston Texans Indianapolis Colts Houston Texans Indianapolis Colts 34 24 -1.5 Indianapolis Colts Indianapolis Colts 0.69 FALSE -0.408181818181818 34 24 24 34
901 2010 1 Tampa Bay Buccaneers Cleveland Browns Tampa Bay Buccaneers Cleveland Browns 17 14 -3 Tampa Bay Buccaneers Cleveland Browns 0.68 TRUE 0.298181818181818 17 14 14 17
904 2010 1 New England Patriots Cincinnati Bengals New England Patriots Cincinnati Bengals 38 24 -5 New England Patriots Cincinnati Bengals 0.51 FALSE -0.0645454545454546 38 24 24 38
907 2010 1 New York Giants Carolina Panthers New York Giants Carolina Panthers 31 18 -5.5 New York Giants New York Giants 0.65 TRUE 0.240909090909091 31 18 18 31
910 2010 1 Kansas City Chiefs San Diego Chargers Kansas City Chiefs San Diego Chargers 21 14 -4 San Diego Chargers San Diego Chargers 0.73 FALSE -0.484545454545455 21 14 14 21
913 2010 1 New York Jets Baltimore Ravens Baltimore Ravens New York Jets 10 9 -1 New York Jets Baltimore Ravens 0.66 TRUE 0.26 9 10 10 9
916 2010 2 Indianapolis Colts New York Giants Indianapolis Colts New York Giants 38 14 -4.5 Indianapolis Colts Indianapolis Colts 0.64 TRUE 0.221818181818182 31 24 22.5 28
919 2010 2 Detroit Lions Philadelphia Eagles Philadelphia Eagles Detroit Lions 35 32 -6.5 Philadelphia Eagles Philadelphia Eagles 0.81 FALSE -0.637272727272727 23 27 27.5 29.5
922 2010 2 Tennessee Titans Pittsburgh Steelers Pittsburgh Steelers Tennessee Titans 19 11 -6 Tennessee Titans Tennessee Titans 0.72 FALSE -0.465454545454545 24.5 16 17 10
925 2010 2 Oakland Raiders St. Louis Rams Oakland Raiders St. Louis Rams 16 14 -3.5 Oakland Raiders Oakland Raiders 0.61 FALSE -0.255454545454545 14.5 26 13.5 16.5
928 2010 2 Cincinnati Bengals Baltimore Ravens Cincinnati Bengals Baltimore Ravens 15 10 -3 Baltimore Ravens Baltimore Ravens 0.56 FALSE -0.16 19.5 24 10 12
931 2010 2 Denver Broncos Seattle Seahawks Denver Broncos Seattle Seahawks 31 14 -3 Denver Broncos Denver Broncos 0.53 TRUE 0.0118181818181819 24 19 22.5 18.5
934 2010 2 Carolina Panthers Tampa Bay Buccaneers Tampa Bay Buccaneers Carolina Panthers 20 7 -4 Carolina Panthers Carolina Panthers 0.74 FALSE -0.503636363636364 12.5 25.5 18.5 10.5
937 2010 2 New York Jets New England Patriots New York Jets New England Patriots 28 14 -3 New England Patriots New England Patriots 0.8 FALSE -0.618181818181818 18.5 12 26 26
940 2010 2 Atlanta Falcons Arizona Cardinals Atlanta Falcons Arizona Cardinals 41 7 -7 Atlanta Falcons Atlanta Falcons 0.77 TRUE 0.47 25 11 12 27
943 2010 2 Minnesota Vikings Miami Dolphins Miami Dolphins Minnesota Vikings 14 10 -5.5 Minnesota Vikings Minnesota Vikings 0.77 FALSE -0.560909090909091 9.5 14 14.5 10
946 2010 2 Cleveland Browns Kansas City Chiefs Kansas City Chiefs Cleveland Browns 16 14 -3 Cleveland Browns Kansas City Chiefs 0.66 TRUE 0.26 14 16.5 18.5 14
949 2010 2 San Diego Chargers Jacksonville Jaguars San Diego Chargers Jacksonville Jaguars 38 13 -7 San Diego Chargers San Diego Chargers 0.64 TRUE 0.221818181818182 26 17 18.5 27.5
952 2010 2 Washington Redskins Houston Texans Houston Texans Washington Redskins 30 27 -2.5 Houston Texans Houston Texans 0.68 TRUE 0.298181818181818 20 18.5 32 25.5
955 2010 2 Green Bay Packers Buffalo Bills Green Bay Packers Buffalo Bills 34 7 -12.5 Green Bay Packers Green Bay Packers 0.85 TRUE 0.622727272727273 30.5 13.5 8.5 24.5
958 2010 2 Dallas Cowboys Chicago Bears Chicago Bears Dallas Cowboys 27 20 -7 Dallas Cowboys Dallas Cowboys 0.74 FALSE -0.503636363636364 13.5 20 23 17
961 2010 2 San Francisco 49ers New Orleans Saints New Orleans Saints San Francisco 49ers 25 22 -4.5 New Orleans Saints New Orleans Saints 0.72 FALSE -0.465454545454545 14 28 19.5 15.5
964 2010 3 New York Giants Tennessee Titans Tennessee Titans New York Giants 29 10 -3 New York Giants New York Giants 0.5 FALSE -0.0454545454545454 18.3333333333333 28.3333333333333 26 14
967 2010 3 Jacksonville Jaguars Philadelphia Eagles Philadelphia Eagles Jacksonville Jaguars 28 3 -2.5 Philadelphia Eagles Philadelphia Eagles 0.73 TRUE 0.393636363636364 13.3333333333333 27.6666666666667 27.6666666666667 20.6666666666667
970 2010 3 Tampa Bay Buccaneers Pittsburgh Steelers Pittsburgh Steelers Tampa Bay Buccaneers 38 13 -2.5 Pittsburgh Steelers Pittsburgh Steelers 0.73 TRUE 0.393636363636364 16.6666666666667 19.6666666666667 24 11
973 2010 3 Arizona Cardinals Oakland Raiders Arizona Cardinals Oakland Raiders 24 23 -5.5 Arizona Cardinals Oakland Raiders 0.58 TRUE 0.107272727272727 16 25.6666666666667 17.3333333333333 25.3333333333333
976 2010 3 Seattle Seahawks San Diego Chargers Seattle Seahawks San Diego Chargers 27 20 -3.5 San Diego Chargers San Diego Chargers 0.66 FALSE -0.350909090909091 24 19 24 20.3333333333333
979 2010 3 Kansas City Chiefs San Francisco 49ers Kansas City Chiefs San Francisco 49ers 31 10 -3 San Francisco 49ers San Francisco 49ers 0.63 FALSE -0.293636363636364 22.6666666666667 12.6666666666667 12.6666666666667 29
982 2010 3 St. Louis Rams Washington Redskins St. Louis Rams Washington Redskins 30 16 -5 Washington Redskins Washington Redskins 0.8 FALSE -0.618181818181818 19 16.3333333333333 18.6666666666667 22.3333333333333
985 2010 3 Miami Dolphins New York Jets New York Jets Miami Dolphins 31 23 -2.5 Miami Dolphins Miami Dolphins 0.52 FALSE -0.0836363636363636 17.3333333333333 17 22.6666666666667 15.6666666666667
988 2010 3 New Orleans Saints Atlanta Falcons Atlanta Falcons New Orleans Saints 27 24 -3 New Orleans Saints New Orleans Saints 0.6 FALSE -0.236363636363636 21 19.3333333333333 25.6666666666667 15.3333333333333
991 2010 3 Minnesota Vikings Detroit Lions Minnesota Vikings Detroit Lions 24 10 -13 Minnesota Vikings Detroit Lions 0.53 FALSE -0.102727272727273 14.3333333333333 12.6666666666667 18.6666666666667 26
994 2010 3 Houston Texans Dallas Cowboys Dallas Cowboys Houston Texans 27 13 -2.5 Houston Texans Houston Texans 0.53 FALSE -0.102727272727273 25.6666666666667 26 18 17.6666666666667
997 2010 3 Denver Broncos Indianapolis Colts Indianapolis Colts Denver Broncos 27 13 -6 Indianapolis Colts Indianapolis Colts 0.79 TRUE 0.508181818181818 20.3333333333333 21.6666666666667 29.6666666666667 20.3333333333333
1000 2010 3 Baltimore Ravens Cleveland Browns Baltimore Ravens Cleveland Browns 24 17 -12.5 Baltimore Ravens Baltimore Ravens 0.8 FALSE -0.618181818181818 14.6666666666667 13.6666666666667 15 19
1003 2010 3 Carolina Panthers Cincinnati Bengals Cincinnati Bengals Carolina Panthers 20 7 -3.5 Cincinnati Bengals Cincinnati Bengals 0.83 TRUE 0.584545454545454 10.6666666666667 23.6666666666667 19.6666666666667 18.3333333333333
1006 2010 3 New England Patriots Buffalo Bills New England Patriots Buffalo Bills 38 30 -14.5 New England Patriots New England Patriots 0.8 FALSE -0.618181818181818 30 27.3333333333333 15.6666666666667 29
1009 2010 3 Chicago Bears Green Bay Packers Chicago Bears Green Bay Packers 20 17 -3 Green Bay Packers Green Bay Packers 0.71 FALSE -0.446363636363636 22 17 26 15.6666666666667
1012 2010 4 Philadelphia Eagles Washington Redskins Washington Redskins Philadelphia Eagles 17 12 -5 Philadelphia Eagles Philadelphia Eagles 0.58 FALSE -0.198181818181818 23.75 19.75 18.25 19.75
1015 2010 4 Atlanta Falcons San Francisco 49ers Atlanta Falcons San Francisco 49ers 16 14 -7 Atlanta Falcons Atlanta Falcons 0.66 FALSE -0.350909090909091 23.25 15 13 25.75
1018 2010 4 St. Louis Rams Seattle Seahawks St. Louis Rams Seattle Seahawks 20 3 -2 Seattle Seahawks Seattle Seahawks 0.55 FALSE -0.140909090909091 19.25 13 18.75 19.25
1021 2010 4 Pittsburgh Steelers Baltimore Ravens Baltimore Ravens Pittsburgh Steelers 17 14 -2.5 Pittsburgh Steelers Baltimore Ravens 0.56 TRUE 0.0690909090909093 21.5 12.5 15.25 13.75
1024 2010 4 Buffalo Bills New York Jets New York Jets Buffalo Bills 38 14 -5.5 New York Jets New York Jets 0.73 TRUE 0.393636363636364 15.25 31.25 26.5 15.25
1027 2010 4 Oakland Raiders Houston Texans Houston Texans Oakland Raiders 31 24 -3 Houston Texans Houston Texans 0.74 TRUE 0.412727272727273 19 26.75 27 25.5
1030 2010 4 Green Bay Packers Detroit Lions Green Bay Packers Detroit Lions 28 26 -14.5 Green Bay Packers Green Bay Packers 0.62 FALSE -0.274545454545455 26.5 18.25 20.5 26.5
1033 2010 4 Tennessee Titans Denver Broncos Denver Broncos Tennessee Titans 26 20 -6.5 Tennessee Titans Tennessee Titans 0.59 FALSE -0.217272727272727 24.5 17 21.75 21.25
1036 2010 4 New Orleans Saints Carolina Panthers New Orleans Saints Carolina Panthers 16 14 -12.5 New Orleans Saints New Orleans Saints 0.67 FALSE -0.37 19.75 18 11.5 21.75
1039 2010 4 New York Giants Chicago Bears New York Giants Chicago Bears 17 3 -3.5 New York Giants Chicago Bears 0.55 FALSE -0.140909090909091 18 22 17.25 17
1042 2010 4 Cleveland Browns Cincinnati Bengals Cleveland Browns Cincinnati Bengals 23 20 -2 Cincinnati Bengals Cincinnati Bengals 0.7 FALSE -0.427272727272727 17 19.25 19.75 19.5
1045 2010 4 Jacksonville Jaguars Indianapolis Colts Jacksonville Jaguars Indianapolis Colts 31 28 -7 Indianapolis Colts Indianapolis Colts 0.8 FALSE -0.618181818181818 17.75 27.75 29.25 23
1048 2010 4 San Diego Chargers Arizona Cardinals San Diego Chargers Arizona Cardinals 41 10 -10 San Diego Chargers San Diego Chargers 0.74 TRUE 0.412727272727273 28.25 17.75 14.5 29.5
1051 2010 4 Miami Dolphins New England Patriots New England Patriots Miami Dolphins 41 14 0 PickEm New England Patriots 0.62 TRUE 0.183636363636364 16.5 23 32.75 24
1054 2010 5 Dallas Cowboys Tennessee Titans Tennessee Titans Dallas Cowboys 34 27 -7 Dallas Cowboys Dallas Cowboys 0.53 FALSE -0.102727272727273 20.25 21.75 26.4 19
1057 2010 5 Arizona Cardinals New Orleans Saints Arizona Cardinals New Orleans Saints 30 20 -7 New Orleans Saints New Orleans Saints 0.83 FALSE -0.675454545454545 17.6 27.6 19.8 20.4
1060 2010 5 Houston Texans New York Giants New York Giants Houston Texans 34 10 -3 Houston Texans Houston Texans 0.67 FALSE -0.37 23.6 27.2 21.2 19.6
1063 2010 5 San Francisco 49ers Philadelphia Eagles Philadelphia Eagles San Francisco 49ers 27 24 -3.5 San Francisco 49ers San Francisco 49ers 0.64 FALSE -0.312727272727273 15.2 26 24.4 20.6
1066 2010 5 Detroit Lions St. Louis Rams Detroit Lions St. Louis Rams 44 6 -3 Detroit Lions St. Louis Rams 0.5 FALSE -0.0454545454545454 25.2 22.4 16.6 19.2
1069 2010 5 Oakland Raiders San Diego Chargers Oakland Raiders San Diego Chargers 35 27 -7 San Diego Chargers San Diego Chargers 0.77 FALSE -0.560909090909091 22.2 26.8 28 21.2
1072 2010 5 Cincinnati Bengals Tampa Bay Buccaneers Tampa Bay Buccaneers Cincinnati Bengals 24 21 -6.5 Cincinnati Bengals Cincinnati Bengals 0.7 FALSE -0.427272727272727 20 20.4 18.5 20
1075 2010 5 Indianapolis Colts Kansas City Chiefs Indianapolis Colts Kansas City Chiefs 19 9 -7.5 Indianapolis Colts Indianapolis Colts 0.64 TRUE 0.221818181818182 27.2 20.2 19.25 14.25
1078 2010 5 Buffalo Bills Jacksonville Jaguars Jacksonville Jaguars Buffalo Bills 36 26 -2.5 Buffalo Bills Jacksonville Jaguars 0.6 TRUE 0.145454545454546 17.4 32.2 21.4 27.4
1081 2010 5 Washington Redskins Green Bay Packers Washington Redskins Green Bay Packers 16 13 -3 Green Bay Packers Green Bay Packers 0.78 FALSE -0.58 17.8 18.4 23.8 17.8
1084 2010 5 Baltimore Ravens Denver Broncos Baltimore Ravens Denver Broncos 31 17 -8 Baltimore Ravens Baltimore Ravens 0.56 TRUE 0.0690909090909093 18.4 14.4 20.8 23.2
1087 2010 5 Carolina Panthers Chicago Bears Chicago Bears Carolina Panthers 23 6 -3 Carolina Panthers Chicago Bears 0.58 TRUE 0.107272727272727 10.4 22 18.4 14.8
1090 2010 5 Cleveland Browns Atlanta Falcons Atlanta Falcons Cleveland Browns 20 10 -3 Atlanta Falcons Atlanta Falcons 0.76 TRUE 0.450909090909091 15.6 19.4 22.6 14
1093 2010 5 New York Jets Minnesota Vikings New York Jets Minnesota Vikings 29 20 -4 New York Jets Minnesota Vikings 0.56 FALSE -0.16 27 16.2 15.75 16.75
1096 2010 6 New England Patriots Baltimore Ravens New England Patriots Baltimore Ravens 23 20 -3 New England Patriots Baltimore Ravens 0.63 TRUE 0.202727272727273 30.8 23.2 18.6666666666667 15.8333333333333
1099 2010 6 Minnesota Vikings Dallas Cowboys Minnesota Vikings Dallas Cowboys 24 21 -1.5 Minnesota Vikings Dallas Cowboys 0.5 FALSE -0.0454545454545454 17.4 17.6 20.4 22.2
1102 2010 6 Chicago Bears Seattle Seahawks Seattle Seahawks Chicago Bears 23 20 -6 Chicago Bears Chicago Bears 0.68 FALSE -0.389090909090909 18.6666666666667 16.1666666666667 19.6 19.4
1105 2010 6 St. Louis Rams San Diego Chargers St. Louis Rams San Diego Chargers 20 17 -8.5 San Diego Chargers San Diego Chargers 0.54 FALSE -0.121818181818182 17.1666666666667 18.8333333333333 26.1666666666667 21
1108 2010 6 San Francisco 49ers Oakland Raiders San Francisco 49ers Oakland Raiders 17 9 -7.5 San Francisco 49ers Oakland Raiders 0.6 FALSE -0.236363636363636 15.5 23.1666666666667 20 25.1666666666667
1111 2010 6 Denver Broncos New York Jets New York Jets Denver Broncos 24 20 -3.5 New York Jets New York Jets 0.6 TRUE 0.145454545454546 20.6666666666667 23.3333333333333 26.5 16.8333333333333
1114 2010 6 Tampa Bay Buccaneers New Orleans Saints New Orleans Saints Tampa Bay Buccaneers 31 6 -5 New Orleans Saints New Orleans Saints 0.63 TRUE 0.202727272727273 16 22.2 21.6666666666667 18
1117 2010 6 Green Bay Packers Miami Dolphins Miami Dolphins Green Bay Packers 23 20 -3 Green Bay Packers Miami Dolphins 0.57 TRUE 0.0881818181818181 23.1666666666667 18.6666666666667 17.8 22.4
1120 2010 6 Houston Texans Kansas City Chiefs Houston Texans Kansas City Chiefs 35 31 -4.5 Houston Texans Kansas City Chiefs 0.52 TRUE -0.00727272727272721 25.5 27.8333333333333 21.6 18.4
1123 2010 6 New York Giants Detroit Lions New York Giants Detroit Lions 28 20 -10 New York Giants New York Giants 0.52 FALSE -0.0836363636363636 22.3333333333333 19.6666666666667 24.3333333333333 23.3333333333333
1126 2010 6 Philadelphia Eagles Atlanta Falcons Philadelphia Eagles Atlanta Falcons 31 17 -2 Philadelphia Eagles Atlanta Falcons 0.73 FALSE -0.484545454545455 25.5 20 21.6666666666667 16.8333333333333
1129 2010 6 Pittsburgh Steelers Cleveland Browns Pittsburgh Steelers Cleveland Browns 28 10 -14 Pittsburgh Steelers Pittsburgh Steelers 0.63 TRUE 0.202727272727273 22.8 12 14.6666666666667 20.8333333333333
1132 2010 6 Washington Redskins Indianapolis Colts Indianapolis Colts Washington Redskins 27 24 -3 Indianapolis Colts Indianapolis Colts 0.7 FALSE -0.427272727272727 18.8333333333333 19.8333333333333 27.1666666666667 20.8333333333333
1135 2010 6 Jacksonville Jaguars Tennessee Titans Tennessee Titans Jacksonville Jaguars 30 3 -3 Tennessee Titans Tennessee Titans 0.6 TRUE 0.145454545454546 18.3333333333333 27.8333333333333 27 16.3333333333333
1138 2010 7 Seattle Seahawks Arizona Cardinals Seattle Seahawks Arizona Cardinals 22 10 -6.5 Seattle Seahawks Seattle Seahawks 0.66 TRUE 0.26 20 17.8333333333333 16.3333333333333 26.6666666666667
1141 2010 7 Miami Dolphins Pittsburgh Steelers Pittsburgh Steelers Miami Dolphins 23 22 -3 Pittsburgh Steelers Pittsburgh Steelers 0.67 FALSE -0.37 18.5 22.5 22.8333333333333 13.6666666666667
1144 2010 7 San Diego Chargers New England Patriots New England Patriots San Diego Chargers 23 20 -2.5 San Diego Chargers New England Patriots 0.64 TRUE 0.221818181818182 25.2857142857143 21.2857142857143 29.5 22.6666666666667
1147 2010 7 Baltimore Ravens Buffalo Bills Baltimore Ravens Buffalo Bills 37 34 -12.5 Baltimore Ravens Baltimore Ravens 0.78 FALSE -0.58 21.2857142857143 18.4285714285714 20.1666666666667 33
1150 2010 7 Carolina Panthers San Francisco 49ers Carolina Panthers San Francisco 49ers 23 20 -2 San Francisco 49ers San Francisco 49ers 0.61 FALSE -0.255454545454545 12.5 21.6666666666667 16.1428571428571 23.1428571428571
1153 2010 7 Tampa Bay Buccaneers St. Louis Rams Tampa Bay Buccaneers St. Louis Rams 18 17 -3 Tampa Bay Buccaneers Tampa Bay Buccaneers 0.59 FALSE -0.217272727272727 16.3333333333333 21.3333333333333 17.1428571428571 18.7142857142857
1156 2010 7 Denver Broncos Oakland Raiders Oakland Raiders Denver Broncos 59 14 -7 Denver Broncos Denver Broncos 0.6 FALSE -0.236363636363636 19.7142857142857 28.4285714285714 25.5714285714286 23.5714285714286
1159 2010 7 Green Bay Packers Minnesota Vikings Green Bay Packers Minnesota Vikings 28 24 -2.5 Green Bay Packers Minnesota Vikings 0.57 FALSE -0.179090909090909 23.8571428571429 19.4285714285714 18.5 19.3333333333333
1162 2010 7 Kansas City Chiefs Jacksonville Jaguars Kansas City Chiefs Jacksonville Jaguars 42 20 -9 Kansas City Chiefs Kansas City Chiefs 0.71 TRUE 0.355454545454545 25 18.6666666666667 18.5714285714286 29.8571428571429
1165 2010 7 New Orleans Saints Cleveland Browns Cleveland Browns New Orleans Saints 30 17 -12.5 New Orleans Saints New Orleans Saints 0.7 FALSE -0.427272727272727 21 19.7142857142857 16.8571428571429 20.2857142857143
1168 2010 7 Atlanta Falcons Cincinnati Bengals Atlanta Falcons Cincinnati Bengals 39 32 -3.5 Atlanta Falcons Atlanta Falcons 0.64 TRUE 0.221818181818182 24.1428571428571 19 22 23.5
1171 2010 7 Chicago Bears Washington Redskins Washington Redskins Chicago Bears 17 14 -3 Chicago Bears Washington Redskins 0.58 TRUE 0.107272727272727 18 16.2857142857143 18.5714285714286 19
1174 2010 7 Tennessee Titans Philadelphia Eagles Tennessee Titans Philadelphia Eagles 37 19 -3 Tennessee Titans Tennessee Titans 0.54 TRUE 0.030909090909091 28.4285714285714 16.7142857142857 24.5714285714286 22.4285714285714
1177 2010 7 Dallas Cowboys New York Giants New York Giants Dallas Cowboys 41 35 -3.5 Dallas Cowboys Dallas Cowboys 0.52 FALSE -0.0836363636363636 22.8333333333333 25.3333333333333 25 21.8571428571429
1180 2010 8 Arizona Cardinals Tampa Bay Buccaneers Tampa Bay Buccaneers Arizona Cardinals 38 35 -3 Arizona Cardinals Tampa Bay Buccaneers 0.68 TRUE 0.298181818181818 19 28.2857142857143 19.4285714285714 23.2857142857143
1183 2010 8 Detroit Lions Washington Redskins Detroit Lions Washington Redskins 37 25 -2.5 Detroit Lions Washington Redskins 0.65 FALSE -0.331818181818182 26.1428571428571 23.5714285714286 19.375 21.25
1186 2010 8 New England Patriots Minnesota Vikings New England Patriots Minnesota Vikings 28 18 -5 New England Patriots New England Patriots 0.63 TRUE 0.202727272727273 29.2857142857143 22 18.4285714285714 20.5714285714286
1189 2010 8 Cincinnati Bengals Miami Dolphins Miami Dolphins Cincinnati Bengals 22 14 0 PickEm Miami Dolphins 0.68 TRUE 0.298181818181818 20.8571428571429 23.2857142857143 19 21.2857142857143
1192 2010 8 Dallas Cowboys Jacksonville Jaguars Jacksonville Jaguars Dallas Cowboys 35 17 -6.5 Dallas Cowboys Dallas Cowboys 0.53 FALSE -0.102727272727273 22 26.7142857142857 20.625 28.25
1195 2010 8 St. Louis Rams Carolina Panthers St. Louis Rams Carolina Panthers 20 10 -2.5 St. Louis Rams St. Louis Rams 0.7 TRUE 0.336363636363636 17.5 17.625 12.1428571428571 21.4285714285714
1198 2010 8 Kansas City Chiefs Buffalo Bills Kansas City Chiefs Buffalo Bills 13 10 -7 Kansas City Chiefs Kansas City Chiefs 0.53 FALSE -0.102727272727273 23.2857142857143 17.4285714285714 18.7142857142857 30.1428571428571
1201 2010 8 San Diego Chargers Tennessee Titans San Diego Chargers Tennessee Titans 33 25 -5.5 San Diego Chargers Tennessee Titans 0.68 FALSE -0.389090909090909 26.25 21.75 28 18.75
1204 2010 8 New York Jets Green Bay Packers Green Bay Packers New York Jets 9 0 -6.5 New York Jets New York Jets 0.59 FALSE -0.217272727272727 22.7142857142857 15.7142857142857 22 17
1207 2010 8 San Francisco 49ers Denver Broncos San Francisco 49ers Denver Broncos 24 16 -2 San Francisco 49ers Denver Broncos 0.66 FALSE -0.350909090909091 17.125 22.25 19.25 27.875
1210 2010 8 New Orleans Saints Pittsburgh Steelers New Orleans Saints Pittsburgh Steelers 20 10 -1.5 New Orleans Saints Pittsburgh Steelers 0.67 FALSE -0.37 20.875 18.5 21 14.5714285714286
1213 2010 8 Oakland Raiders Seattle Seahawks Oakland Raiders Seattle Seahawks 33 3 -2 Oakland Raiders Oakland Raiders 0.53 TRUE 0.0118181818181819 26.5 21 17.5714285714286 20
1216 2010 8 Indianapolis Colts Houston Texans Indianapolis Colts Houston Texans 30 17 -5.5 Indianapolis Colts Indianapolis Colts 0.55 TRUE 0.05 27.5714285714286 20.2857142857143 24.2857142857143 28.1428571428571
1219 2010 9 Houston Texans San Diego Chargers San Diego Chargers Houston Texans 29 23 -3 San Diego Chargers Houston Texans 0.52 FALSE -0.0836363636363636 24.125 28.25 26.5555555555556 21.8888888888889
1222 2010 9 Atlanta Falcons Tampa Bay Buccaneers Atlanta Falcons Tampa Bay Buccaneers 27 21 -10 Atlanta Falcons Tampa Bay Buccaneers 0.56 TRUE 0.0690909090909093 24.5 19.25 19.625 23.75
1225 2010 9 Detroit Lions New York Jets New York Jets Detroit Lions 23 20 -5.5 New York Jets New York Jets 0.64 FALSE -0.312727272727273 25.375 23.5 22.75 16.25
1228 2010 9 Seattle Seahawks New York Giants New York Giants Seattle Seahawks 41 7 -7 New York Giants New York Giants 0.74 TRUE 0.412727272727273 16.25 22.625 27 20
1231 2010 9 Cleveland Browns New England Patriots Cleveland Browns New England Patriots 34 14 -4 New England Patriots New England Patriots 0.8 FALSE -0.618181818181818 19 19.5 27.375 23.5
1234 2010 9 Carolina Panthers New Orleans Saints New Orleans Saints Carolina Panthers 34 3 -6 New Orleans Saints New Orleans Saints 0.78 TRUE 0.489090909090909 11 23 22.3333333333333 16.7777777777778
1237 2010 9 Buffalo Bills Chicago Bears Chicago Bears Buffalo Bills 22 19 -3 Chicago Bears Buffalo Bills 0.57 TRUE 0.0881818181818181 18.75 29.125 18.5 16.625
1240 2010 9 Philadelphia Eagles Indianapolis Colts Philadelphia Eagles Indianapolis Colts 26 24 -3 Philadelphia Eagles Indianapolis Colts 0.67 TRUE 0.279090909090909 24.75 22.625 27.125 21
1243 2010 9 Minnesota Vikings Arizona Cardinals Minnesota Vikings Arizona Cardinals 27 24 -7.5 Minnesota Vikings Minnesota Vikings 0.62 FALSE -0.274545454545455 19.5 21 19.625 28.125
1246 2010 9 Green Bay Packers Dallas Cowboys Green Bay Packers Dallas Cowboys 45 7 -7.5 Green Bay Packers Green Bay Packers 0.69 TRUE 0.317272727272727 24.5555555555556 15.8888888888889 20.125 29
1249 2010 9 Oakland Raiders Kansas City Chiefs Oakland Raiders Kansas City Chiefs 23 20 -1 Kansas City Chiefs Kansas City Chiefs 0.53 FALSE -0.102727272727273 26.1111111111111 20.8888888888889 22.875 18.125
1252 2010 9 Baltimore Ravens Miami Dolphins Baltimore Ravens Miami Dolphins 26 10 -5.5 Baltimore Ravens Baltimore Ravens 0.53 TRUE 0.0118181818181819 21.875 17.375 17.875 21.875
1255 2010 9 Cincinnati Bengals Pittsburgh Steelers Pittsburgh Steelers Cincinnati Bengals 27 21 -5 Pittsburgh Steelers Pittsburgh Steelers 0.62 TRUE 0.183636363636364 20.875 23.75 21.75 15.375
1258 2010 10 Atlanta Falcons Baltimore Ravens Atlanta Falcons Baltimore Ravens 26 21 -1 Atlanta Falcons Baltimore Ravens 0.61 FALSE -0.255454545454545 24.6666666666667 19.4444444444444 21.7777777777778 18.3333333333333
1261 2010 10 Arizona Cardinals Seattle Seahawks Seattle Seahawks Arizona Cardinals 36 18 -3.5 Arizona Cardinals Arizona Cardinals 0.64 FALSE -0.312727272727273 19.4444444444444 29 18.4444444444444 22.1111111111111
1264 2010 10 San Francisco 49ers St. Louis Rams San Francisco 49ers St. Louis Rams 23 20 -5 San Francisco 49ers St. Louis Rams 0.61 TRUE 0.164545454545455 17.7777777777778 22 17.7777777777778 18.2222222222222
1267 2010 10 Miami Dolphins Tennessee Titans Miami Dolphins Tennessee Titans 29 17 -1 Miami Dolphins Tennessee Titans 0.71 FALSE -0.446363636363636 19.1111111111111 21.3333333333333 26.7777777777778 19.8888888888889
1270 2010 10 Cleveland Browns New York Jets New York Jets Cleveland Browns 26 20 -3 New York Jets New York Jets 0.66 TRUE 0.26 19.1111111111111 20.2222222222222 23.1111111111111 16.6666666666667
1273 2010 10 Pittsburgh Steelers New England Patriots New England Patriots Pittsburgh Steelers 39 26 -4.5 Pittsburgh Steelers New England Patriots 0.57 TRUE 0.0881818181818181 22.2222222222222 18 28.6666666666667 23.7777777777778
1276 2010 10 Chicago Bears Minnesota Vikings Chicago Bears Minnesota Vikings 27 13 -1 Minnesota Vikings Minnesota Vikings 0.68 FALSE -0.389090909090909 19.4444444444444 16.2222222222222 18.7777777777778 21.6666666666667
1279 2010 10 Denver Broncos Kansas City Chiefs Denver Broncos Kansas City Chiefs 49 29 -1 Kansas City Chiefs Kansas City Chiefs 0.69 FALSE -0.408181818181818 22.5555555555556 28 23.5555555555556 21.5555555555556
1282 2010 10 Tampa Bay Buccaneers Carolina Panthers Tampa Bay Buccaneers Carolina Panthers 31 16 -7 Tampa Bay Buccaneers Tampa Bay Buccaneers 0.79 TRUE 0.508181818181818 20.8888888888889 22.8888888888889 11.5555555555556 23.8888888888889
1285 2010 10 Indianapolis Colts Cincinnati Bengals Indianapolis Colts Cincinnati Bengals 23 17 -7 Indianapolis Colts Indianapolis Colts 0.69 FALSE -0.408181818181818 26.6666666666667 20.5555555555556 20.4444444444444 23.6666666666667
1288 2010 10 New York Giants Dallas Cowboys Dallas Cowboys New York Giants 33 20 -12 New York Giants New York Giants 0.61 FALSE -0.255454545454545 26.2222222222222 21.4444444444444 21.5555555555556 28
1291 2010 10 Buffalo Bills Detroit Lions Buffalo Bills Detroit Lions 14 12 -1.5 Buffalo Bills Detroit Lions 0.54 FALSE -0.121818181818182 18.2222222222222 27.2222222222222 23.8888888888889 22.4444444444444
1294 2010 10 Jacksonville Jaguars Houston Texans Jacksonville Jaguars Houston Texans 31 24 -1 Jacksonville Jaguars Houston Texans 0.74 FALSE -0.503636363636364 21.7777777777778 27.7777777777778 24.1111111111111 28.5555555555556
1297 2010 10 Washington Redskins Philadelphia Eagles Philadelphia Eagles Washington Redskins 59 28 -3 Philadelphia Eagles Philadelphia Eagles 0.72 TRUE 0.374545454545455 20.3333333333333 25.4444444444444 28.5555555555556 23.2222222222222
1300 2010 11 Miami Dolphins Chicago Bears Chicago Bears Miami Dolphins 16 0 -2.5 Miami Dolphins Chicago Bears 0.53 TRUE 0.0118181818181819 17.2 20.8 19.1 14.6
1303 2010 11 Philadelphia Eagles New York Giants Philadelphia Eagles New York Giants 27 17 -3.5 Philadelphia Eagles Philadelphia Eagles 0.65 TRUE 0.240909090909091 28.4 22.6 25.3 22
1306 2010 11 Pittsburgh Steelers Oakland Raiders Pittsburgh Steelers Oakland Raiders 35 3 -7 Pittsburgh Steelers Pittsburgh Steelers 0.54 TRUE 0.030909090909091 23.5 16.5 23.8 22.3
1309 2010 11 Carolina Panthers Baltimore Ravens Baltimore Ravens Carolina Panthers 37 13 -13 Baltimore Ravens Baltimore Ravens 0.81 TRUE 0.546363636363637 11.7 25.2 23.3 17.8
1312 2010 11 New Orleans Saints Seattle Seahawks New Orleans Saints Seattle Seahawks 34 19 -11 New Orleans Saints New Orleans Saints 0.64 TRUE 0.221818181818182 23.5 17 18.5 23.3
1315 2010 11 San Francisco 49ers Tampa Bay Buccaneers Tampa Bay Buccaneers San Francisco 49ers 21 0 -3.5 San Francisco 49ers Tampa Bay Buccaneers 0.66 TRUE 0.26 16 21.9 20.9 20.6
1318 2010 11 Tennessee Titans Washington Redskins Washington Redskins Tennessee Titans 19 16 -7 Tennessee Titans Tennessee Titans 0.55 FALSE -0.140909090909091 25.7 19.8 20.2 24.5
1321 2010 11 New York Jets Houston Texans New York Jets Houston Texans 30 27 -6.5 New York Jets New York Jets 0.51 FALSE -0.0645454545454546 23.8 17.7 24.4 28.7
1324 2010 11 Minnesota Vikings Green Bay Packers Green Bay Packers Minnesota Vikings 31 3 -3 Green Bay Packers Green Bay Packers 0.63 TRUE 0.202727272727273 17.2 22.6 25.2 14.6
1327 2010 11 Dallas Cowboys Detroit Lions Dallas Cowboys Detroit Lions 35 19 -5.5 Dallas Cowboys Dallas Cowboys 0.65 TRUE 0.240909090909091 22.9 27.1 23.4 23.7
1330 2010 11 Kansas City Chiefs Arizona Cardinals Kansas City Chiefs Arizona Cardinals 31 13 -7 Kansas City Chiefs Kansas City Chiefs 0.61 TRUE 0.164545454545455 24.3 20.7 18.8 29.2
1333 2010 11 New England Patriots Indianapolis Colts New England Patriots Indianapolis Colts 31 28 -4.5 New England Patriots New England Patriots 0.52 FALSE -0.0836363636363636 28.9 24.2 26.8 21.6
1336 2010 11 Jacksonville Jaguars Cleveland Browns Jacksonville Jaguars Cleveland Browns 24 20 -2.5 Jacksonville Jaguars Cleveland Browns 0.56 FALSE -0.16 22 27 19.2 20.6
1339 2010 11 Cincinnati Bengals Buffalo Bills Buffalo Bills Cincinnati Bengals 49 31 -4.5 Cincinnati Bengals Cincinnati Bengals 0.54 FALSE -0.121818181818182 21.5 26.2 21.3 27.6
1342 2010 11 St. Louis Rams Atlanta Falcons Atlanta Falcons St. Louis Rams 34 17 -3.5 Atlanta Falcons Atlanta Falcons 0.75 TRUE 0.431818181818182 17.7 19.8 25.6 19.2
1345 2010 11 San Diego Chargers Denver Broncos San Diego Chargers Denver Broncos 35 14 -9 San Diego Chargers San Diego Chargers 0.52 TRUE -0.00727272727272721 27.4 21.1 21.7 28.7
1348 2010 12 Detroit Lions New England Patriots New England Patriots Detroit Lions 45 24 -6 New England Patriots New England Patriots 0.76 TRUE 0.450909090909091 23.4545454545455 25.6363636363636 30.3636363636364 24.1818181818182
1351 2010 12 Dallas Cowboys New Orleans Saints New Orleans Saints Dallas Cowboys 30 27 -4.5 New Orleans Saints New Orleans Saints 0.65 FALSE -0.331818181818182 23.2727272727273 27.3636363636364 24.0909090909091 17.9090909090909
1354 2010 12 New York Jets Cincinnati Bengals New York Jets Cincinnati Bengals 26 10 -10 New York Jets New York Jets 0.57 TRUE 0.0881818181818181 24 17 20.4545454545455 26.1818181818182
1357 2010 12 Atlanta Falcons Green Bay Packers Atlanta Falcons Green Bay Packers 20 17 -2 Atlanta Falcons Green Bay Packers 0.55 FALSE -0.140909090909091 25.0909090909091 19 24.4545454545455 15.0909090909091
1360 2010 12 Baltimore Ravens Tampa Bay Buccaneers Baltimore Ravens Tampa Bay Buccaneers 17 10 -7.5 Baltimore Ravens Baltimore Ravens 0.57 FALSE -0.179090909090909 22.7272727272727 17.0909090909091 19.9090909090909 20.2727272727273
1363 2010 12 Indianapolis Colts San Diego Chargers San Diego Chargers Indianapolis Colts 36 14 -2 Indianapolis Colts Indianapolis Colts 0.56 FALSE -0.16 25.6363636363636 22.9090909090909 28.1818181818182 20.4545454545455
1366 2010 12 Denver Broncos St. Louis Rams St. Louis Rams Denver Broncos 36 33 -3 Denver Broncos Denver Broncos 0.53 FALSE -0.102727272727273 22.7272727272727 29.3636363636364 19.3636363636364 21
1369 2010 12 Buffalo Bills Pittsburgh Steelers Pittsburgh Steelers Buffalo Bills 19 16 -6.5 Pittsburgh Steelers Pittsburgh Steelers 0.84 FALSE -0.694545454545454 20.8181818181818 26.8181818181818 23.0909090909091 16.4545454545455
1372 2010 12 Chicago Bears Philadelphia Eagles Chicago Bears Philadelphia Eagles 31 26 -3 Philadelphia Eagles Philadelphia Eagles 0.74 FALSE -0.503636363636364 20.1818181818182 15.6363636363636 28.1818181818182 23.3636363636364
1375 2010 12 Houston Texans Tennessee Titans Houston Texans Tennessee Titans 20 0 -5 Houston Texans Houston Texans 0.63 TRUE 0.202727272727273 24 26.0909090909091 23.3636363636364 19.8181818181818
1378 2010 12 Cleveland Browns Carolina Panthers Cleveland Browns Carolina Panthers 24 23 -8 Cleveland Browns Cleveland Browns 0.62 FALSE -0.274545454545455 19.6363636363636 20.8181818181818 12.7272727272727 25.0909090909091
1381 2010 12 Washington Redskins Minnesota Vikings Minnesota Vikings Washington Redskins 17 13 -2 Minnesota Vikings Minnesota Vikings 0.56 TRUE 0.0690909090909093 19.5454545454545 23.8181818181818 17.1818181818182 21.7272727272727
1384 2010 12 Oakland Raiders Miami Dolphins Miami Dolphins Oakland Raiders 33 17 -3 Oakland Raiders Oakland Raiders 0.73 FALSE -0.484545454545455 23.1818181818182 23.2727272727273 18.6363636363636 20.4545454545455
1387 2010 12 Seattle Seahawks Kansas City Chiefs Kansas City Chiefs Seattle Seahawks 42 24 -1.5 Kansas City Chiefs Kansas City Chiefs 0.64 TRUE 0.221818181818182 19 25 25.9090909090909 21
1390 2010 12 New York Giants Jacksonville Jaguars New York Giants Jacksonville Jaguars 24 20 -7.5 New York Giants New York Giants 0.62 FALSE -0.274545454545455 25.1818181818182 21.8181818181818 21.8181818181818 26.7272727272727
1393 2010 12 Arizona Cardinals San Francisco 49ers San Francisco 49ers Arizona Cardinals 27 6 -2 San Francisco 49ers San Francisco 49ers 0.61 TRUE 0.164545454545455 17.6363636363636 29 17 20.4545454545455
1396 2010 13 Philadelphia Eagles Houston Texans Philadelphia Eagles Houston Texans 34 24 -8 Philadelphia Eagles Philadelphia Eagles 0.63 TRUE 0.202727272727273 28.6666666666667 23.4166666666667 24 26.75
1399 2010 13 New York Giants Washington Redskins New York Giants Washington Redskins 31 7 -7.5 New York Giants New York Giants 0.7 TRUE 0.336363636363636 25.6666666666667 20.5833333333333 18.5 24.4166666666667
1402 2010 13 Arizona Cardinals St. Louis Rams St. Louis Rams Arizona Cardinals 19 6 -3 St. Louis Rams St. Louis Rams 0.76 TRUE 0.450909090909091 16.6666666666667 28.1666666666667 19.3333333333333 19.75
1405 2010 13 San Diego Chargers Oakland Raiders Oakland Raiders San Diego Chargers 28 13 -13 San Diego Chargers San Diego Chargers 0.71 FALSE -0.446363636363636 26.9166666666667 21.0833333333333 23.5833333333333 22.4166666666667
1408 2010 13 Baltimore Ravens Pittsburgh Steelers Pittsburgh Steelers Baltimore Ravens 13 10 -3 Baltimore Ravens Baltimore Ravens 0.59 FALSE -0.217272727272727 21.6666666666667 16.75 22.25 15.9166666666667
1411 2010 13 Cincinnati Bengals New Orleans Saints New Orleans Saints Cincinnati Bengals 34 30 -6.5 New Orleans Saints New Orleans Saints 0.83 FALSE -0.675454545454545 21.25 26.8333333333333 24.9166666666667 18.9166666666667
1414 2010 13 Tennessee Titans Jacksonville Jaguars Jacksonville Jaguars Tennessee Titans 17 6 -3 Tennessee Titans Jacksonville Jaguars 0.65 TRUE 0.240909090909091 21.9166666666667 19.5833333333333 21.4166666666667 25
1417 2010 13 Green Bay Packers San Francisco 49ers Green Bay Packers San Francisco 49ers 34 16 -9 Green Bay Packers Green Bay Packers 0.81 TRUE 0.546363636363637 25.25 15.1666666666667 16.9166666666667 21.5833333333333
1420 2010 13 Kansas City Chiefs Denver Broncos Kansas City Chiefs Denver Broncos 10 6 -8 Kansas City Chiefs Kansas City Chiefs 0.65 FALSE -0.331818181818182 24.5833333333333 19.75 21.3333333333333 27.75
1423 2010 13 Tampa Bay Buccaneers Atlanta Falcons Atlanta Falcons Tampa Bay Buccaneers 28 24 -3 Atlanta Falcons Atlanta Falcons 0.72 TRUE 0.374545454545455 20.25 20.9166666666667 25.3333333333333 19.4166666666667
1426 2010 13 Minnesota Vikings Buffalo Bills Minnesota Vikings Buffalo Bills 38 14 -5.5 Minnesota Vikings Minnesota Vikings 0.58 TRUE 0.107272727272727 18.9166666666667 21.0833333333333 20.25 27.75
1429 2010 13 Seattle Seahawks Carolina Panthers Seattle Seahawks Carolina Panthers 31 14 -5 Seattle Seahawks Seattle Seahawks 0.8 TRUE 0.527272727272727 20 24.0833333333333 12.8333333333333 25.5833333333333
1432 2010 13 Detroit Lions Chicago Bears Chicago Bears Detroit Lions 24 20 -5.5 Chicago Bears Chicago Bears 0.76 FALSE -0.541818181818182 23.1666666666667 25.5 20.5 16
1435 2010 13 Miami Dolphins Cleveland Browns Cleveland Browns Miami Dolphins 13 10 -5.5 Miami Dolphins Miami Dolphins 0.51 FALSE -0.0645454545454546 17.9166666666667 19.8333333333333 19.0833333333333 19.9166666666667
1438 2010 13 Indianapolis Colts Dallas Cowboys Dallas Cowboys Indianapolis Colts 38 35 -6 Indianapolis Colts Indianapolis Colts 0.63 FALSE -0.293636363636364 26.4166666666667 24.1666666666667 24.5 28
1441 2010 13 New England Patriots New York Jets New England Patriots New York Jets 45 3 -4 New England Patriots New England Patriots 0.62 TRUE 0.183636363636364 31.5833333333333 22.4166666666667 22.25 19.3333333333333
1444 2010 14 Tennessee Titans Indianapolis Colts Indianapolis Colts Tennessee Titans 30 28 -3.5 Indianapolis Colts Indianapolis Colts 0.84 FALSE -0.694545454545454 22.3846153846154 20.3846153846154 26.6923076923077 24.4615384615385
1447 2010 14 Dallas Cowboys Philadelphia Eagles Philadelphia Eagles Dallas Cowboys 30 27 -4.5 Philadelphia Eagles Philadelphia Eagles 0.65 FALSE -0.331818181818182 24.6923076923077 28.1538461538462 28.7692307692308 23.6923076923077
1450 2010 14 Jacksonville Jaguars Oakland Raiders Jacksonville Jaguars Oakland Raiders 38 31 -3.5 Jacksonville Jaguars Jacksonville Jaguars 0.66 TRUE 0.26 22.6923076923077 25.4615384615385 24.1538461538462 23.6153846153846
1453 2010 14 New Orleans Saints St. Louis Rams New Orleans Saints St. Louis Rams 31 13 -9.5 New Orleans Saints New Orleans Saints 0.57 TRUE 0.0881818181818181 25.3846153846154 18.4615384615385 18.8461538461538 20.6153846153846
1456 2010 14 San Francisco 49ers Seattle Seahawks San Francisco 49ers Seattle Seahawks 40 21 -4.5 San Francisco 49ers Seattle Seahawks 0.61 FALSE -0.255454545454545 18.6923076923077 21.5384615384615 20.0769230769231 25.3076923076923
1459 2010 14 Washington Redskins Tampa Bay Buccaneers Tampa Bay Buccaneers Washington Redskins 17 16 -1.5 Tampa Bay Buccaneers Tampa Bay Buccaneers 0.68 FALSE -0.389090909090909 18.3076923076923 23.8461538461538 20 20.5384615384615
1462 2010 14 Chicago Bears New England Patriots New England Patriots Chicago Bears 36 7 -3 New England Patriots New England Patriots 0.66 TRUE 0.26 19.4615384615385 17.5384615384615 31.9230769230769 21.2307692307692
1465 2010 14 New York Jets Miami Dolphins Miami Dolphins New York Jets 10 6 -5 New York Jets New York Jets 0.68 FALSE -0.389090909090909 21 18.6153846153846 17.3076923076923 18.7692307692308
1468 2010 14 San Diego Chargers Kansas City Chiefs San Diego Chargers Kansas City Chiefs 31 0 -10 San Diego Chargers San Diego Chargers 0.64 TRUE 0.221818181818182 27.2307692307692 19.4615384615385 22.6923076923077 20.6153846153846
1471 2010 14 Carolina Panthers Atlanta Falcons Atlanta Falcons Carolina Panthers 31 10 -7.5 Atlanta Falcons Atlanta Falcons 0.83 TRUE 0.584545454545454 12.6153846153846 26 25.7692307692308 18.6923076923077
1474 2010 14 Pittsburgh Steelers Cincinnati Bengals Pittsburgh Steelers Cincinnati Bengals 23 7 -8.5 Pittsburgh Steelers Pittsburgh Steelers 0.63 TRUE 0.202727272727273 22.3076923076923 15.2307692307692 20.1538461538462 26.5384615384615
1477 2010 14 Buffalo Bills Cleveland Browns Buffalo Bills Cleveland Browns 13 6 0 PickEm Cleveland Browns 0.72 FALSE -0.465454545454545 19.6923076923077 26.0769230769231 18.0769230769231 19.3846153846154
1480 2010 14 Arizona Cardinals Denver Broncos Arizona Cardinals Denver Broncos 43 13 -4 Denver Broncos Denver Broncos 0.73 FALSE -0.484545454545455 18.6923076923077 27 20.6923076923077 28.9230769230769
1483 2010 14 Detroit Lions Green Bay Packers Detroit Lions Green Bay Packers 7 3 -7 Green Bay Packers Green Bay Packers 0.81 FALSE -0.637272727272727 21.9230769230769 23.7692307692308 23.5384615384615 14.5384615384615
1486 2010 14 Houston Texans Baltimore Ravens Baltimore Ravens Houston Texans 34 28 -3 Baltimore Ravens Baltimore Ravens 0.78 TRUE 0.489090909090909 24.3076923076923 27.3076923076923 22.6153846153846 17.6153846153846
1489 2010 14 Minnesota Vikings New York Giants New York Giants Minnesota Vikings 21 3 -5 New York Giants New York Giants 0.78 TRUE 0.489090909090909 17.6923076923077 21.0769230769231 25.3076923076923 19.2307692307692
1492 2010 15 San Diego Chargers San Francisco 49ers San Diego Chargers San Francisco 49ers 34 7 -10 San Diego Chargers San Diego Chargers 0.62 TRUE 0.183636363636364 27.7142857142857 18.5714285714286 17.8571428571429 22.4285714285714
1495 2010 15 Indianapolis Colts Jacksonville Jaguars Indianapolis Colts Jacksonville Jaguars 34 24 -4.5 Indianapolis Colts Indianapolis Colts 0.52 TRUE -0.00727272727272721 27.2142857142857 24.4285714285714 22.7857142857143 26.0714285714286
1498 2010 15 St. Louis Rams Kansas City Chiefs Kansas City Chiefs St. Louis Rams 27 13 -3 St. Louis Rams St. Louis Rams 0.55 FALSE -0.140909090909091 18.4285714285714 21.0714285714286 23 20.0714285714286
1501 2010 15 Baltimore Ravens New Orleans Saints Baltimore Ravens New Orleans Saints 30 24 -2 Baltimore Ravens New Orleans Saints 0.7 FALSE -0.427272727272727 23.1428571428571 18.0714285714286 25.2857142857143 19.2857142857143
1504 2010 15 Pittsburgh Steelers New York Jets New York Jets Pittsburgh Steelers 22 17 -3.5 Pittsburgh Steelers Pittsburgh Steelers 0.61 FALSE -0.255454545454545 21.9285714285714 15.7142857142857 21.0714285714286 18.5
1507 2010 15 New York Giants Philadelphia Eagles Philadelphia Eagles New York Giants 38 31 -3 New York Giants Philadelphia Eagles 0.65 TRUE 0.240909090909091 25.7142857142857 20.5714285714286 29.4285714285714 24.2142857142857
1510 2010 15 Dallas Cowboys Washington Redskins Dallas Cowboys Washington Redskins 33 30 -9.5 Dallas Cowboys Dallas Cowboys 0.83 FALSE -0.675454545454545 25.2857142857143 28.2857142857143 19.1428571428571 24.5
1513 2010 15 Tennessee Titans Houston Texans Tennessee Titans Houston Texans 31 17 -1.5 Tennessee Titans Houston Texans 0.77 FALSE -0.560909090909091 23 20.1428571428571 23.7857142857143 27.5714285714286
1516 2010 15 New England Patriots Green Bay Packers New England Patriots Green Bay Packers 31 27 -14.5 New England Patriots New England Patriots 0.77 FALSE -0.560909090909091 31.8571428571429 21.6428571428571 23.7857142857143 15.7142857142857
1519 2010 15 Tampa Bay Buccaneers Detroit Lions Detroit Lions Tampa Bay Buccaneers 23 20 -4 Tampa Bay Buccaneers Tampa Bay Buccaneers 0.65 FALSE -0.331818181818182 20 20.7142857142857 22 23.5
1522 2010 15 Oakland Raiders Denver Broncos Oakland Raiders Denver Broncos 39 23 -8 Oakland Raiders Oakland Raiders 0.78 TRUE 0.489090909090909 25.2142857142857 23.5714285714286 20.8571428571429 29.6428571428571
1525 2010 15 Carolina Panthers Arizona Cardinals Carolina Panthers Arizona Cardinals 19 12 -2.5 Carolina Panthers Arizona Cardinals 0.55 FALSE -0.140909090909091 13.0714285714286 25 18.2142857142857 26.4285714285714
1528 2010 15 Cincinnati Bengals Cleveland Browns Cincinnati Bengals Cleveland Browns 19 17 0 PickEm Cleveland Browns 0.56 FALSE -0.16 20.0714285714286 25.8571428571429 18 19.3571428571429
1531 2010 15 Miami Dolphins Buffalo Bills Buffalo Bills Miami Dolphins 17 14 -5.5 Miami Dolphins Buffalo Bills 0.5 TRUE -0.0454545454545454 17.0714285714286 18.6428571428571 19.5 25.2142857142857
1534 2010 15 Seattle Seahawks Atlanta Falcons Atlanta Falcons Seattle Seahawks 34 18 -5.5 Atlanta Falcons Atlanta Falcons 0.79 TRUE 0.508181818181818 19.9285714285714 25.9285714285714 26.3571428571429 18.6428571428571
1537 2010 15 Minnesota Vikings Chicago Bears Chicago Bears Minnesota Vikings 40 14 -5.5 Chicago Bears Chicago Bears 0.58 TRUE 0.107272727272727 17.4285714285714 22.4285714285714 20.9285714285714 17.2857142857143
1540 2010 16 Pittsburgh Steelers Carolina Panthers Pittsburgh Steelers Carolina Panthers 27 3 -14 Pittsburgh Steelers Pittsburgh Steelers 0.76 TRUE 0.450909090909091 22.2666666666667 14.8666666666667 12.4 25.1333333333333
1543 2010 16 Arizona Cardinals Dallas Cowboys Arizona Cardinals Dallas Cowboys 27 26 -7 Dallas Cowboys Dallas Cowboys 0.83 FALSE -0.675454545454545 18.8 26.4 25.3333333333333 28.2
1546 2010 16 Jacksonville Jaguars Washington Redskins Washington Redskins Jacksonville Jaguars 20 17 -7 Jacksonville Jaguars Jacksonville Jaguars 0.57 FALSE -0.179090909090909 22.4 25.6666666666667 19.2 24
1549 2010 16 St. Louis Rams San Francisco 49ers St. Louis Rams San Francisco 49ers 25 17 -2.5 St. Louis Rams St. Louis Rams 0.62 TRUE 0.183636363636364 18.8666666666667 20.8 17.8 22.6
1552 2010 16 Tampa Bay Buccaneers Seattle Seahawks Tampa Bay Buccaneers Seattle Seahawks 38 15 -5.5 Tampa Bay Buccaneers Tampa Bay Buccaneers 0.69 TRUE 0.317272727272727 21.2 20.3333333333333 19.6 26.7333333333333
1555 2010 16 Cincinnati Bengals San Diego Chargers Cincinnati Bengals San Diego Chargers 34 20 -8 San Diego Chargers San Diego Chargers 0.8 FALSE -0.618181818181818 21 25.4666666666667 27.2 19.6
1558 2010 16 Cleveland Browns Baltimore Ravens Baltimore Ravens Cleveland Browns 20 10 -3.5 Baltimore Ravens Baltimore Ravens 0.82 TRUE 0.565454545454545 17.4666666666667 19.4 22.9333333333333 17.5333333333333
1561 2010 16 Kansas City Chiefs Tennessee Titans Kansas City Chiefs Tennessee Titans 34 14 -4 Kansas City Chiefs Kansas City Chiefs 0.69 TRUE 0.317272727272727 23.7333333333333 19.6666666666667 22.4 21.0666666666667
1564 2010 16 Chicago Bears New York Jets Chicago Bears New York Jets 38 34 -2.5 Chicago Bears Chicago Bears 0.51 TRUE -0.0263636363636363 22.0666666666667 18.4 21.9333333333333 19.8
1567 2010 16 Green Bay Packers New York Giants Green Bay Packers New York Giants 45 17 -3 Green Bay Packers New York Giants 0.59 FALSE -0.217272727272727 25.2 15.8 25.1333333333333 22.2
1570 2010 16 Oakland Raiders Indianapolis Colts Indianapolis Colts Oakland Raiders 31 26 -2 Indianapolis Colts Indianapolis Colts 0.73 TRUE 0.393636363636364 25.2666666666667 24.0666666666667 27.4666666666667 24.5333333333333
1573 2010 16 Miami Dolphins Detroit Lions Detroit Lions Miami Dolphins 34 27 -3.5 Miami Dolphins Detroit Lions 0.55 TRUE 0.05 17.7333333333333 19.6666666666667 22.8 23.7333333333333
1576 2010 16 Denver Broncos Houston Texans Denver Broncos Houston Texans 24 23 -2 Houston Texans Houston Texans 0.67 FALSE -0.37 21.0666666666667 29.2 23.7333333333333 27.3333333333333
1579 2010 16 Buffalo Bills New England Patriots New England Patriots Buffalo Bills 34 3 -7 New England Patriots New England Patriots 0.75 TRUE 0.431818181818182 18.4 25.8 32 20.4
1582 2010 16 Atlanta Falcons New Orleans Saints New Orleans Saints Atlanta Falcons 17 14 -2 Atlanta Falcons Atlanta Falcons 0.53 FALSE -0.102727272727273 25.5333333333333 18.5333333333333 24.7333333333333 18.9333333333333
1585 2010 16 Philadelphia Eagles Minnesota Vikings Minnesota Vikings Philadelphia Eagles 24 14 -14 Philadelphia Eagles Philadelphia Eagles 0.77 FALSE -0.560909090909091 28.4 24.2 17.8666666666667 21.8666666666667
1588 2010 17 Washington Redskins New York Giants New York Giants Washington Redskins 17 14 -4.5 New York Giants New York Giants 0.74 FALSE -0.503636363636364 18.875 23.5625 24.625 21.6875
1591 2010 17 Indianapolis Colts Tennessee Titans Indianapolis Colts Tennessee Titans 23 20 -8.5 Indianapolis Colts Indianapolis Colts 0.73 FALSE -0.484545454545455 27.1875 24.25 22.25 21.1875
1594 2010 17 Cleveland Browns Pittsburgh Steelers Pittsburgh Steelers Cleveland Browns 41 9 -6.5 Pittsburgh Steelers Pittsburgh Steelers 0.74 TRUE 0.412727272727273 16.9375 20.75 23.4375 14.5
1597 2010 17 Kansas City Chiefs Oakland Raiders Oakland Raiders Kansas City Chiefs 31 10 -4.5 Kansas City Chiefs Kansas City Chiefs 0.6 FALSE -0.236363636363636 22.875 20.375 25.625 23.1875
1600 2010 17 Seattle Seahawks St. Louis Rams Seattle Seahawks St. Louis Rams 16 6 -3 St. Louis Rams St. Louis Rams 0.67 FALSE -0.37 19.375 25.4375 18.0625 20.5
1603 2010 17 Denver Broncos San Diego Chargers San Diego Chargers Denver Broncos 33 28 -5 San Diego Chargers San Diego Chargers 0.56 FALSE -0.16 21.5 29.4375 27.5625 20.125
1606 2010 17 New Orleans Saints Tampa Bay Buccaneers Tampa Bay Buccaneers New Orleans Saints 23 13 -7 New Orleans Saints New Orleans Saints 0.53 FALSE -0.102727272727273 24 19.1875 21.3125 19.875
1609 2010 17 Detroit Lions Minnesota Vikings Detroit Lions Minnesota Vikings 20 13 -3.5 Detroit Lions Detroit Lions 0.58 TRUE 0.107272727272727 22.625 23.0625 17.5625 21.75
1612 2010 17 New England Patriots Miami Dolphins New England Patriots Miami Dolphins 38 7 -4.5 New England Patriots New England Patriots 0.65 TRUE 0.240909090909091 32.375 19.5625 17.0625 20.8125
1615 2010 17 New York Jets Buffalo Bills New York Jets Buffalo Bills 38 7 -1 New York Jets New York Jets 0.64 TRUE 0.221818181818182 22.9375 19 17.6875 26.5625
1618 2010 17 Atlanta Falcons Carolina Panthers Atlanta Falcons Carolina Panthers 31 10 -14.5 Atlanta Falcons Atlanta Falcons 0.7 TRUE 0.336363636363636 25.875 18 12.25 25.5
1621 2010 17 Green Bay Packers Chicago Bears Green Bay Packers Chicago Bears 10 3 -11.5 Green Bay Packers Green Bay Packers 0.64 FALSE -0.312727272727273 24.25 15 20.875 17.875
1624 2010 17 Baltimore Ravens Cincinnati Bengals Baltimore Ravens Cincinnati Bengals 13 7 -9.5 Baltimore Ravens Baltimore Ravens 0.57 FALSE -0.179090909090909 22.3125 16.875 20.125 24.6875
1627 2010 17 San Francisco 49ers Arizona Cardinals San Francisco 49ers Arizona Cardinals 38 7 -6 San Francisco 49ers Arizona Cardinals 0.57 FALSE -0.179090909090909 19.0625 21.625 18.0625 27.125
1630 2010 17 Philadelphia Eagles Dallas Cowboys Dallas Cowboys Philadelphia Eagles 14 13 -2 Dallas Cowboys Dallas Cowboys 0.54 FALSE -0.121818181818182 27.4375 23.5625 24.625 27.25
1633 2010 17 Houston Texans Jacksonville Jaguars Houston Texans Jacksonville Jaguars 34 17 -4.5 Houston Texans Houston Texans 0.68 TRUE 0.298181818181818 24.375 26.6875 22.0625 26.1875
1636 2011 1 Green Bay Packers New Orleans Saints Green Bay Packers New Orleans Saints 42 34 -5 Green Bay Packers Green Bay Packers 0.55 TRUE 0.05 42 34 34 42
1639 2011 1 Cleveland Browns Cincinnati Bengals Cincinnati Bengals Cleveland Browns 27 17 -7 Cleveland Browns Cleveland Browns 0.79 FALSE -0.599090909090909 17 27 27 17
1642 2011 1 Arizona Cardinals Carolina Panthers Arizona Cardinals Carolina Panthers 28 21 -6.5 Arizona Cardinals Arizona Cardinals 0.77 TRUE 0.47 28 21 21 28
1645 2011 1 St. Louis Rams Philadelphia Eagles Philadelphia Eagles St. Louis Rams 31 13 -4 Philadelphia Eagles Philadelphia Eagles 0.7 TRUE 0.336363636363636 13 31 31 13
1648 2011 1 San Francisco 49ers Seattle Seahawks San Francisco 49ers Seattle Seahawks 33 17 -6 San Francisco 49ers San Francisco 49ers 0.55 TRUE 0.05 33 17 17 33
1651 2011 1 Washington Redskins New York Giants Washington Redskins New York Giants 28 14 -1 New York Giants New York Giants 0.58 FALSE -0.198181818181818 28 14 14 28
1654 2011 1 New York Jets Dallas Cowboys New York Jets Dallas Cowboys 27 24 -6.5 New York Jets New York Jets 0.53 FALSE -0.102727272727273 27 24 24 27
1657 2011 1 San Diego Chargers Minnesota Vikings San Diego Chargers Minnesota Vikings 24 17 -9 San Diego Chargers San Diego Chargers 0.61 FALSE -0.255454545454545 24 17 17 24
1660 2011 1 Chicago Bears Atlanta Falcons Chicago Bears Atlanta Falcons 30 12 -2 Atlanta Falcons Atlanta Falcons 0.74 FALSE -0.503636363636364 30 12 12 30
1663 2011 1 Houston Texans Indianapolis Colts Houston Texans Indianapolis Colts 34 7 -8.5 Houston Texans Houston Texans 0.57 TRUE 0.0881818181818181 34 7 7 34
1666 2011 1 Baltimore Ravens Pittsburgh Steelers Baltimore Ravens Pittsburgh Steelers 35 7 -1 Baltimore Ravens Pittsburgh Steelers 0.68 FALSE -0.389090909090909 35 7 7 35
1669 2011 1 Kansas City Chiefs Buffalo Bills Buffalo Bills Kansas City Chiefs 41 7 -4 Kansas City Chiefs Kansas City Chiefs 0.55 FALSE -0.140909090909091 7 41 41 7
1672 2011 1 Tampa Bay Buccaneers Detroit Lions Detroit Lions Tampa Bay Buccaneers 27 20 -1.5 Tampa Bay Buccaneers Detroit Lions 0.68 TRUE 0.298181818181818 20 27 27 20
1675 2011 1 Jacksonville Jaguars Tennessee Titans Jacksonville Jaguars Tennessee Titans 16 14 -1 Tennessee Titans Tennessee Titans 0.78 FALSE -0.58 16 14 14 16
1678 2011 1 Miami Dolphins New England Patriots New England Patriots Miami Dolphins 38 24 -7 New England Patriots New England Patriots 0.82 TRUE 0.565454545454545 24 38 38 24
1681 2011 1 Denver Broncos Oakland Raiders Oakland Raiders Denver Broncos 23 20 -3 Denver Broncos Denver Broncos 0.58 FALSE -0.198181818181818 20 23 23 20
1684 2011 2 Buffalo Bills Oakland Raiders Buffalo Bills Oakland Raiders 38 35 -3.5 Buffalo Bills Buffalo Bills 0.6 FALSE -0.236363636363636 39.5 21 29 29
1687 2011 2 San Francisco 49ers Dallas Cowboys Dallas Cowboys San Francisco 49ers 27 24 -3 Dallas Cowboys Dallas Cowboys 0.86 FALSE -0.732727272727273 28.5 22 25.5 25.5
1690 2011 2 Atlanta Falcons Philadelphia Eagles Atlanta Falcons Philadelphia Eagles 35 31 -2.5 Philadelphia Eagles Philadelphia Eagles 0.63 FALSE -0.293636363636364 23.5 30.5 31 24
1693 2011 2 Pittsburgh Steelers Seattle Seahawks Pittsburgh Steelers Seattle Seahawks 24 0 -14 Pittsburgh Steelers Pittsburgh Steelers 0.81 TRUE 0.546363636363637 15.5 17.5 8.5 28.5
1696 2011 2 Miami Dolphins Houston Texans Houston Texans Miami Dolphins 23 13 -3 Houston Texans Houston Texans 0.72 TRUE 0.374545454545455 18.5 30.5 28.5 10
1699 2011 2 New England Patriots San Diego Chargers New England Patriots San Diego Chargers 35 21 -6.5 New England Patriots New England Patriots 0.61 TRUE 0.164545454545455 36.5 22.5 22.5 26
1702 2011 2 Carolina Panthers Green Bay Packers Green Bay Packers Carolina Panthers 30 23 -10.5 Green Bay Packers Green Bay Packers 0.82 FALSE -0.656363636363636 22 29 36 28.5
1705 2011 2 New Orleans Saints Chicago Bears New Orleans Saints Chicago Bears 30 13 -5 New Orleans Saints New Orleans Saints 0.58 TRUE 0.107272727272727 32 27.5 21.5 21
1708 2011 2 New York Jets Jacksonville Jaguars New York Jets Jacksonville Jaguars 32 3 -9 New York Jets New York Jets 0.68 TRUE 0.298181818181818 29.5 13.5 9.5 23
1711 2011 2 Indianapolis Colts Cleveland Browns Cleveland Browns Indianapolis Colts 27 19 -1.5 Cleveland Browns Indianapolis Colts 0.53 FALSE -0.102727272727273 13 30.5 22 23
1714 2011 2 Minnesota Vikings Tampa Bay Buccaneers Tampa Bay Buccaneers Minnesota Vikings 24 20 -1 Minnesota Vikings Tampa Bay Buccaneers 0.52 TRUE -0.00727272727272721 18.5 24 22 23.5
1717 2011 2 Detroit Lions Kansas City Chiefs Detroit Lions Kansas City Chiefs 48 3 -8 Detroit Lions Detroit Lions 0.74 TRUE 0.412727272727273 37.5 11.5 5 44.5
1720 2011 2 Washington Redskins Arizona Cardinals Washington Redskins Arizona Cardinals 22 21 -4.5 Washington Redskins Washington Redskins 0.68 FALSE -0.389090909090909 25 17.5 24.5 21.5
1723 2011 2 Tennessee Titans Baltimore Ravens Tennessee Titans Baltimore Ravens 26 13 -5.5 Baltimore Ravens Baltimore Ravens 0.86 FALSE -0.732727272727273 20 14.5 24 16.5
1726 2011 2 Denver Broncos Cincinnati Bengals Denver Broncos Cincinnati Bengals 24 22 -3 Denver Broncos Denver Broncos 0.58 FALSE -0.198181818181818 22 22.5 24.5 20.5
1729 2011 2 New York Giants St. Louis Rams New York Giants St. Louis Rams 28 16 -7 New York Giants New York Giants 0.66 TRUE 0.26 21 22 14.5 29.5
1732 2011 3 Chicago Bears Green Bay Packers Green Bay Packers Chicago Bears 27 17 -4.5 Green Bay Packers Green Bay Packers 0.72 TRUE 0.374545454545455 20 23 33 24.6666666666667
1735 2011 3 Cleveland Browns Miami Dolphins Cleveland Browns Miami Dolphins 17 16 -1.5 Miami Dolphins Miami Dolphins 0.69 FALSE -0.408181818181818 20.3333333333333 20.6666666666667 17.6666666666667 26
1738 2011 3 New Orleans Saints Houston Texans New Orleans Saints Houston Texans 40 33 -3.5 New Orleans Saints New Orleans Saints 0.69 TRUE 0.317272727272727 34.6666666666667 29.3333333333333 30 20
1741 2011 3 Cincinnati Bengals San Francisco 49ers San Francisco 49ers Cincinnati Bengals 13 8 -1 Cincinnati Bengals San Francisco 49ers 0.58 TRUE 0.107272727272727 19 18 23.3333333333333 17.3333333333333
1744 2011 3 Seattle Seahawks Arizona Cardinals Seattle Seahawks Arizona Cardinals 13 10 -3 Arizona Cardinals Arizona Cardinals 0.7 FALSE -0.427272727272727 10 22.3333333333333 19.6666666666667 18.6666666666667
1747 2011 3 Indianapolis Colts Pittsburgh Steelers Pittsburgh Steelers Indianapolis Colts 23 20 -11 Pittsburgh Steelers Pittsburgh Steelers 0.79 FALSE -0.599090909090909 15.3333333333333 28 18 18.3333333333333
1750 2011 3 San Diego Chargers Kansas City Chiefs San Diego Chargers Kansas City Chiefs 20 17 -14 San Diego Chargers San Diego Chargers 0.81 FALSE -0.637272727272727 21.6666666666667 23 9 36.3333333333333
1753 2011 3 St. Louis Rams Baltimore Ravens Baltimore Ravens St. Louis Rams 37 7 -5.5 Baltimore Ravens Baltimore Ravens 0.79 TRUE 0.508181818181818 12 32 28.3333333333333 13.3333333333333
1756 2011 3 Tennessee Titans Denver Broncos Tennessee Titans Denver Broncos 17 14 -7 Tennessee Titans Tennessee Titans 0.66 FALSE -0.350909090909091 19 14.3333333333333 19.3333333333333 20.6666666666667
1759 2011 3 Tampa Bay Buccaneers Atlanta Falcons Tampa Bay Buccaneers Atlanta Falcons 16 13 -1 Tampa Bay Buccaneers Atlanta Falcons 0.69 FALSE -0.408181818181818 20 20 20 25.6666666666667
1762 2011 3 Buffalo Bills New England Patriots Buffalo Bills New England Patriots 34 31 -7 New England Patriots New England Patriots 0.72 FALSE -0.465454545454545 37.6666666666667 24.3333333333333 34.6666666666667 26.3333333333333
1765 2011 3 Philadelphia Eagles New York Giants New York Giants Philadelphia Eagles 29 16 -8 Philadelphia Eagles Philadelphia Eagles 0.58 FALSE -0.198181818181818 26 25.6666666666667 23.6666666666667 20
1768 2011 3 Oakland Raiders New York Jets Oakland Raiders New York Jets 34 24 -2.5 New York Jets New York Jets 0.6 FALSE -0.236363636363636 30.6666666666667 27.3333333333333 27.6666666666667 20.3333333333333
1771 2011 3 Minnesota Vikings Detroit Lions Detroit Lions Minnesota Vikings 26 23 -3 Detroit Lions Detroit Lions 0.77 FALSE -0.560909090909091 20 24.6666666666667 33.6666666666667 15.3333333333333
1774 2011 3 Carolina Panthers Jacksonville Jaguars Carolina Panthers Jacksonville Jaguars 16 10 -3.5 Carolina Panthers Carolina Panthers 0.77 TRUE 0.47 20 22.6666666666667 9.66666666666667 20.6666666666667
1777 2011 3 Dallas Cowboys Washington Redskins Dallas Cowboys Washington Redskins 18 16 -3.5 Dallas Cowboys Washington Redskins 0.53 TRUE 0.0118181818181819 23 22.3333333333333 22 17.6666666666667
1780 2011 4 Oakland Raiders New England Patriots New England Patriots Oakland Raiders 31 19 -6.5 New England Patriots New England Patriots 0.72 TRUE 0.374545454545455 27.75 28.25 33.75 24.5
1783 2011 4 Green Bay Packers Denver Broncos Green Bay Packers Denver Broncos 49 23 -12 Green Bay Packers Green Bay Packers 0.78 TRUE 0.489090909090909 37 24.25 20.25 27.75
1786 2011 4 Chicago Bears Carolina Panthers Chicago Bears Carolina Panthers 34 29 -7 Chicago Bears Chicago Bears 0.67 FALSE -0.37 23.5 24.5 22.25 25.5
1789 2011 4 Philadelphia Eagles San Francisco 49ers San Francisco 49ers Philadelphia Eagles 24 23 -10 Philadelphia Eagles Philadelphia Eagles 0.6 FALSE -0.236363636363636 25.25 25.25 23.5 18.75
1792 2011 4 Baltimore Ravens New York Jets Baltimore Ravens New York Jets 34 17 -5 Baltimore Ravens Baltimore Ravens 0.57 TRUE 0.0881818181818181 29.75 14.25 25 23.75
1795 2011 4 Cleveland Browns Tennessee Titans Tennessee Titans Cleveland Browns 31 13 -1.5 Cleveland Browns Tennessee Titans 0.63 TRUE 0.202727272727273 18.5 23.25 22 14
1798 2011 4 Cincinnati Bengals Buffalo Bills Cincinnati Bengals Buffalo Bills 23 20 -3 Buffalo Bills Buffalo Bills 0.81 FALSE -0.637272727272727 20 18.5 33.25 24
1801 2011 4 St. Louis Rams Washington Redskins Washington Redskins St. Louis Rams 17 10 -3 Washington Redskins Washington Redskins 0.64 TRUE 0.221818181818182 11.5 28.25 20.75 15.75
1804 2011 4 Kansas City Chiefs Minnesota Vikings Kansas City Chiefs Minnesota Vikings 22 17 -3 Minnesota Vikings Minnesota Vikings 0.79 FALSE -0.599090909090909 12.25 31.5 19.25 24
1807 2011 4 Dallas Cowboys Detroit Lions Detroit Lions Dallas Cowboys 34 30 -2.5 Dallas Cowboys Detroit Lions 0.68 TRUE 0.298181818181818 24.75 25.25 33.75 19
1810 2011 4 Houston Texans Pittsburgh Steelers Houston Texans Pittsburgh Steelers 17 10 -4 Houston Texans Pittsburgh Steelers 0.56 FALSE -0.16 26.75 17.5 16 18
1813 2011 4 Jacksonville Jaguars New Orleans Saints New Orleans Saints Jacksonville Jaguars 23 10 -8.5 New Orleans Saints New Orleans Saints 0.87 TRUE 0.660909090909091 9.75 21.25 31.75 24.5
1816 2011 4 Seattle Seahawks Atlanta Falcons Atlanta Falcons Seattle Seahawks 30 28 -6 Atlanta Falcons Atlanta Falcons 0.88 FALSE -0.770909090909091 14.5 24.25 22.5 26.25
1819 2011 4 San Diego Chargers Miami Dolphins San Diego Chargers Miami Dolphins 26 16 -6.5 San Diego Chargers San Diego Chargers 0.63 TRUE 0.202727272727273 22.75 21.25 17.25 26
1822 2011 4 Arizona Cardinals New York Giants New York Giants Arizona Cardinals 31 27 -1.5 New York Giants New York Giants 0.77 TRUE 0.47 21.5 21.75 25.5 21.75
1825 2011 4 Tampa Bay Buccaneers Indianapolis Colts Tampa Bay Buccaneers Indianapolis Colts 24 17 -10 Tampa Bay Buccaneers Indianapolis Colts 0.51 TRUE -0.0263636363636363 21 19.25 15.75 27
1828 2011 5 Atlanta Falcons Green Bay Packers Green Bay Packers Atlanta Falcons 25 14 -6 Green Bay Packers Green Bay Packers 0.72 TRUE 0.374545454545455 20.8 26 34.6 22.2
1831 2011 5 Carolina Panthers New Orleans Saints New Orleans Saints Carolina Panthers 30 27 -6.5 New Orleans Saints New Orleans Saints 0.71 FALSE -0.446363636363636 23.2 26.4 31.4 25
1834 2011 5 Minnesota Vikings Arizona Cardinals Minnesota Vikings Arizona Cardinals 34 10 -3.5 Minnesota Vikings Minnesota Vikings 0.62 TRUE 0.183636363636364 22.2 21.2 19.2 24.2
1837 2011 5 Buffalo Bills Philadelphia Eagles Buffalo Bills Philadelphia Eagles 31 24 -3 Philadelphia Eagles Philadelphia Eagles 0.61 FALSE -0.255454545454545 32.8 24 25 26.4
1840 2011 5 Pittsburgh Steelers Tennessee Titans Pittsburgh Steelers Tennessee Titans 38 17 -3 Pittsburgh Steelers Pittsburgh Steelers 0.52 TRUE -0.00727272727272721 20.4 17.8 21 18.8
1843 2011 5 Jacksonville Jaguars Cincinnati Bengals Cincinnati Bengals Jacksonville Jaguars 30 20 -2.5 Cincinnati Bengals Cincinnati Bengals 0.69 TRUE 0.317272727272727 11.8 23 22 18.8
1846 2011 5 New England Patriots New York Jets New England Patriots New York Jets 30 21 -7.5 New England Patriots New England Patriots 0.62 TRUE 0.183636363636364 33 23.8 24.2 25
1849 2011 5 San Francisco 49ers Tampa Bay Buccaneers San Francisco 49ers Tampa Bay Buccaneers 48 3 -3 San Francisco 49ers Tampa Bay Buccaneers 0.53 FALSE -0.102727272727273 28.4 15.6 17.4 25
1852 2011 5 Denver Broncos San Diego Chargers San Diego Chargers Denver Broncos 29 24 -3.5 San Diego Chargers San Diego Chargers 0.78 TRUE 0.489090909090909 21 28 24 21.8
1855 2011 5 Houston Texans Oakland Raiders Oakland Raiders Houston Texans 25 20 -5 Houston Texans Oakland Raiders 0.52 TRUE -0.00727272727272721 25.4 19 27.2 26.6
1858 2011 5 New York Giants Seattle Seahawks Seattle Seahawks New York Giants 36 25 -10 New York Giants New York Giants 0.77 FALSE -0.560909090909091 25.4 24.6 18.8 24.4
1861 2011 5 Indianapolis Colts Kansas City Chiefs Kansas City Chiefs Indianapolis Colts 28 24 -1.5 Indianapolis Colts Indianapolis Colts 0.71 FALSE -0.446363636363636 17.4 27.2 15.4 30
1864 2011 5 Detroit Lions Chicago Bears Detroit Lions Chicago Bears 24 13 -6.5 Detroit Lions Detroit Lions 0.59 TRUE 0.126363636363636 31.8 17.8 21.4 24.4
1867 2011 6 New England Patriots Dallas Cowboys New England Patriots Dallas Cowboys 20 16 -6.5 New England Patriots New England Patriots 0.67 FALSE -0.37 30.8333333333333 22.5 23 24.2
1870 2011 6 Oakland Raiders Cleveland Browns Oakland Raiders Cleveland Browns 24 17 -7 Oakland Raiders Oakland Raiders 0.68 FALSE -0.389090909090909 26.6666666666667 25 18.2 23.4
1873 2011 6 Washington Redskins Philadelphia Eagles Philadelphia Eagles Washington Redskins 20 13 -3 Philadelphia Eagles Philadelphia Eagles 0.63 TRUE 0.202727272727273 19.2 16.6 24.1666666666667 24.1666666666667
1876 2011 6 Baltimore Ravens Houston Texans Baltimore Ravens Houston Texans 29 14 -7 Baltimore Ravens Baltimore Ravens 0.7 TRUE 0.336363636363636 29.6 14.2 23.5 20.6666666666667
1879 2011 6 Cincinnati Bengals Indianapolis Colts Cincinnati Bengals Indianapolis Colts 27 17 -5 Cincinnati Bengals Indianapolis Colts 0.51 FALSE -0.0645454545454546 22.8333333333333 18.5 17.3333333333333 27.1666666666667
1882 2011 6 Tampa Bay Buccaneers New Orleans Saints Tampa Bay Buccaneers New Orleans Saints 26 20 -6.5 New Orleans Saints New Orleans Saints 0.73 FALSE -0.484545454545455 18.8333333333333 24.1666666666667 29.5 25.1666666666667
1885 2011 6 Chicago Bears Minnesota Vikings Chicago Bears Minnesota Vikings 39 10 -2 Chicago Bears Chicago Bears 0.59 TRUE 0.126363636363636 24.3333333333333 22 20.1666666666667 24.1666666666667
1888 2011 6 New York Giants Buffalo Bills New York Giants Buffalo Bills 27 24 -3.5 New York Giants Buffalo Bills 0.62 TRUE 0.183636363636364 25.6666666666667 24.5 31.3333333333333 24.5
1891 2011 6 Green Bay Packers St. Louis Rams Green Bay Packers St. Louis Rams 24 3 -14 Green Bay Packers Green Bay Packers 0.8 TRUE 0.527272727272727 32.8333333333333 19 9.8 27.4
1894 2011 6 Pittsburgh Steelers Jacksonville Jaguars Pittsburgh Steelers Jacksonville Jaguars 17 13 -12.5 Pittsburgh Steelers Pittsburgh Steelers 0.7 FALSE -0.427272727272727 19.8333333333333 17 12 22
1897 2011 6 Atlanta Falcons Carolina Panthers Atlanta Falcons Carolina Panthers 31 17 -3.5 Atlanta Falcons Atlanta Falcons 0.55 TRUE 0.05 22.5 24.5 22.1666666666667 27.1666666666667
1900 2011 6 Detroit Lions San Francisco 49ers San Francisco 49ers Detroit Lions 25 19 -5 Detroit Lions Detroit Lions 0.61 FALSE -0.255454545454545 29.6666666666667 19 27.8333333333333 16.1666666666667
1903 2011 6 New York Jets Miami Dolphins New York Jets Miami Dolphins 24 6 -7 New York Jets New York Jets 0.77 TRUE 0.47 24.1666666666667 21.8333333333333 15 25.6
1906 2011 7 Miami Dolphins Denver Broncos Denver Broncos Miami Dolphins 18 15 -1 Denver Broncos Denver Broncos 0.73 TRUE 0.393636363636364 15 24.3333333333333 20.5 25.8333333333333
1909 2011 7 Cleveland Browns Seattle Seahawks Cleveland Browns Seattle Seahawks 6 3 -3 Cleveland Browns Cleveland Browns 0.63 FALSE -0.293636363636364 16.1666666666667 20 16.1666666666667 21.3333333333333
1912 2011 7 Arizona Cardinals Pittsburgh Steelers Pittsburgh Steelers Arizona Cardinals 32 20 -4 Pittsburgh Steelers Pittsburgh Steelers 0.79 TRUE 0.508181818181818 19.3333333333333 25.5 21.5714285714286 17.4285714285714
1915 2011 7 Oakland Raiders Kansas City Chiefs Kansas City Chiefs Oakland Raiders 28 0 -3.5 Oakland Raiders Oakland Raiders 0.69 FALSE -0.408181818181818 22.8571428571429 25.4285714285714 17.5 25
1918 2011 7 Dallas Cowboys St. Louis Rams Dallas Cowboys St. Louis Rams 34 7 -14 Dallas Cowboys Dallas Cowboys 0.72 TRUE 0.374545454545455 24.8333333333333 21.3333333333333 9.33333333333333 28.5
1921 2011 7 New York Jets San Diego Chargers New York Jets San Diego Chargers 27 21 -1 San Diego Chargers San Diego Chargers 0.56 FALSE -0.16 24.5714285714286 21.7142857142857 23.5 22.6666666666667
1924 2011 7 Tennessee Titans Houston Texans Houston Texans Tennessee Titans 41 7 -2.5 Tennessee Titans Houston Texans 0.56 TRUE 0.0690909090909093 18.6666666666667 22.5 26 18.7142857142857
1927 2011 7 Tampa Bay Buccaneers Chicago Bears Chicago Bears Tampa Bay Buccaneers 24 18 -1.5 Chicago Bears Chicago Bears 0.52 TRUE -0.00727272727272721 18.7142857142857 24.1428571428571 24.2857142857143 21.4285714285714
1930 2011 7 New Orleans Saints Indianapolis Colts New Orleans Saints Indianapolis Colts 62 7 -13.5 New Orleans Saints New Orleans Saints 0.71 TRUE 0.355454545454545 34.1428571428571 22.5714285714286 15.8571428571429 32.1428571428571
1933 2011 7 Minnesota Vikings Green Bay Packers Green Bay Packers Minnesota Vikings 33 27 -10.5 Green Bay Packers Green Bay Packers 0.9 FALSE -0.809090909090909 21.1428571428571 25.4285714285714 32.8571428571429 20.1428571428571
1936 2011 7 Detroit Lions Atlanta Falcons Atlanta Falcons Detroit Lions 23 16 -4.5 Detroit Lions Atlanta Falcons 0.55 TRUE 0.05 27.7142857142857 19.5714285714286 22.5714285714286 23.2857142857143
1939 2011 7 Carolina Panthers Washington Redskins Carolina Panthers Washington Redskins 33 20 -2.5 Carolina Panthers Carolina Panthers 0.69 TRUE 0.317272727272727 23.7142857142857 26.1428571428571 19.3333333333333 19.3333333333333
1942 2011 7 Jacksonville Jaguars Baltimore Ravens Jacksonville Jaguars Baltimore Ravens 12 7 -10.5 Baltimore Ravens Baltimore Ravens 0.8 FALSE -0.618181818181818 12 19.8571428571429 25.8333333333333 13.8333333333333
1945 2011 8 San Francisco 49ers Cleveland Browns San Francisco 49ers Cleveland Browns 20 10 -9 San Francisco 49ers San Francisco 49ers 0.79 TRUE 0.508181818181818 26.7142857142857 15.2857142857143 15.2857142857143 20
1948 2011 8 New York Giants Miami Dolphins New York Giants Miami Dolphins 20 17 -9.5 New York Giants New York Giants 0.8 FALSE -0.618181818181818 24.8571428571429 23.4285714285714 15.2857142857143 23.7142857142857
1951 2011 8 Denver Broncos Detroit Lions Detroit Lions Denver Broncos 45 10 -3 Detroit Lions Detroit Lions 0.78 TRUE 0.489090909090909 19 28.5714285714286 29.875 18.375
1954 2011 8 Pittsburgh Steelers New England Patriots Pittsburgh Steelers New England Patriots 25 17 -3 New England Patriots New England Patriots 0.73 FALSE -0.484545454545455 22 17.375 28.8571428571429 22.8571428571429
1957 2011 8 Philadelphia Eagles Dallas Cowboys Philadelphia Eagles Dallas Cowboys 34 7 -3 Philadelphia Eagles Philadelphia Eagles 0.5 TRUE -0.0454545454545454 25.5714285714286 21.7142857142857 22.2857142857143 23.1428571428571
1960 2011 8 Baltimore Ravens Arizona Cardinals Baltimore Ravens Arizona Cardinals 30 27 -11.5 Baltimore Ravens Baltimore Ravens 0.77 FALSE -0.560909090909091 26.4285714285714 15.7142857142857 20.4285714285714 26.1428571428571
1963 2011 8 Buffalo Bills Washington Redskins Buffalo Bills Washington Redskins 23 0 -4 Buffalo Bills Buffalo Bills 0.76 TRUE 0.450909090909091 30.1428571428571 21 16.5714285714286 19.8571428571429
1966 2011 8 Seattle Seahawks Cincinnati Bengals Cincinnati Bengals Seattle Seahawks 34 12 -1.5 Cincinnati Bengals Cincinnati Bengals 0.55 TRUE 0.05 15.5714285714286 23.1428571428571 24.4285714285714 17.5714285714286
1969 2011 8 Tennessee Titans Indianapolis Colts Tennessee Titans Indianapolis Colts 27 10 -7.5 Tennessee Titans Tennessee Titans 0.55 TRUE 0.05 19.8571428571429 20.7142857142857 15.125 31.5
1972 2011 8 St. Louis Rams New Orleans Saints St. Louis Rams New Orleans Saints 31 21 -13.5 New Orleans Saints New Orleans Saints 0.84 FALSE -0.694545454545454 12.4285714285714 27.4285714285714 32.5 23.625
1975 2011 8 Carolina Panthers Minnesota Vikings Minnesota Vikings Carolina Panthers 24 21 -3 Carolina Panthers Carolina Panthers 0.6 FALSE -0.236363636363636 23.375 25.875 21.5 24.875
1978 2011 8 Houston Texans Jacksonville Jaguars Houston Texans Jacksonville Jaguars 24 14 -10 Houston Texans Houston Texans 0.7 FALSE -0.427272727272727 25.75 18.125 12.25 20.375
1981 2011 8 Kansas City Chiefs San Diego Chargers Kansas City Chiefs San Diego Chargers 23 20 -3 San Diego Chargers San Diego Chargers 0.67 FALSE -0.37 18.2857142857143 24.2857142857143 23 22.7142857142857
1984 2011 9 Oakland Raiders Denver Broncos Denver Broncos Oakland Raiders 38 24 -7 Oakland Raiders Oakland Raiders 0.71 FALSE -0.446363636363636 23 27 21.375 28
1987 2011 9 Washington Redskins San Francisco 49ers San Francisco 49ers Washington Redskins 19 11 -5 San Francisco 49ers San Francisco 49ers 0.79 TRUE 0.508181818181818 15.875 19.75 25.75 14.75
1990 2011 9 Buffalo Bills New York Jets New York Jets Buffalo Bills 27 11 -2.5 Buffalo Bills Buffalo Bills 0.54 FALSE -0.121818181818182 27.75 21.75 24.875 20.375
1993 2011 9 Houston Texans Cleveland Browns Houston Texans Cleveland Browns 30 12 -10.5 Houston Texans Houston Texans 0.74 TRUE 0.412727272727273 26.2222222222222 17.4444444444444 14.875 21.25
1996 2011 9 Arizona Cardinals St. Louis Rams Arizona Cardinals St. Louis Rams 19 13 -1 Arizona Cardinals St. Louis Rams 0.51 FALSE -0.0645454545454546 20.25 24.5 12.5 26.375
1999 2011 9 New England Patriots New York Giants New York Giants New England Patriots 24 20 -9.5 New England Patriots New York Giants 0.51 TRUE -0.0263636363636363 27.75 23 24.75 23
2002 2011 9 Kansas City Chiefs Miami Dolphins Miami Dolphins Kansas City Chiefs 31 3 -5.5 Kansas City Chiefs Kansas City Chiefs 0.7 FALSE -0.427272727272727 16.375 25.125 17.25 21.125
2005 2011 9 Dallas Cowboys Seattle Seahawks Dallas Cowboys Seattle Seahawks 23 13 -10.5 Dallas Cowboys Dallas Cowboys 0.75 FALSE -0.522727272727273 22.375 21.875 15.25 23.125
2008 2011 9 Indianapolis Colts Atlanta Falcons Atlanta Falcons Indianapolis Colts 31 7 -6.5 Atlanta Falcons Atlanta Falcons 0.85 TRUE 0.622727272727273 14.2222222222222 31.4444444444444 23.625 21.25
2011 2011 9 San Diego Chargers Green Bay Packers Green Bay Packers San Diego Chargers 45 38 -5.5 Green Bay Packers Green Bay Packers 0.72 TRUE 0.374545454545455 24.875 25.5 34.375 22.375
2014 2011 9 Tennessee Titans Cincinnati Bengals Cincinnati Bengals Tennessee Titans 24 17 -2.5 Tennessee Titans Cincinnati Bengals 0.65 TRUE 0.240909090909091 19.5 21.125 24.375 17.5
2017 2011 9 Pittsburgh Steelers Baltimore Ravens Baltimore Ravens Pittsburgh Steelers 23 20 -3.5 Pittsburgh Steelers Pittsburgh Steelers 0.69 FALSE -0.408181818181818 21.7777777777778 18 26 16.25
2020 2011 9 New Orleans Saints Tampa Bay Buccaneers New Orleans Saints Tampa Bay Buccaneers 27 16 -8.5 New Orleans Saints New Orleans Saints 0.7 TRUE 0.336363636363636 31.8888888888889 22.7777777777778 18.375 24.5
2023 2011 9 Philadelphia Eagles Chicago Bears Chicago Bears Philadelphia Eagles 30 24 -8 Philadelphia Eagles Philadelphia Eagles 0.55 FALSE -0.140909090909091 25.375 22.75 25 21.75
2026 2011 10 San Diego Chargers Oakland Raiders Oakland Raiders San Diego Chargers 24 17 -7 San Diego Chargers San Diego Chargers 0.73 FALSE -0.484545454545455 24 25.3333333333333 23.1111111111111 25.8888888888889
2029 2011 10 Miami Dolphins Washington Redskins Miami Dolphins Washington Redskins 20 9 -4 Miami Dolphins Miami Dolphins 0.55 TRUE 0.05 17.5555555555556 19.7777777777778 15.1111111111111 19.7777777777778
2032 2011 10 Kansas City Chiefs Denver Broncos Denver Broncos Kansas City Chiefs 17 10 -3 Kansas City Chiefs Kansas City Chiefs 0.63 FALSE -0.293636363636364 15.6666666666667 24.2222222222222 20.8888888888889 26
2035 2011 10 New York Jets New England Patriots New England Patriots New York Jets 37 16 -2.5 New York Jets New England Patriots 0.66 TRUE 0.26 23.8888888888889 22.2222222222222 28.7777777777778 22.2222222222222
2038 2011 10 Atlanta Falcons New Orleans Saints New Orleans Saints Atlanta Falcons 26 23 -1 Atlanta Falcons New Orleans Saints 0.51 TRUE -0.0263636363636363 23.5555555555556 21.7777777777778 31.3 22.8
2041 2011 10 Dallas Cowboys Buffalo Bills Dallas Cowboys Buffalo Bills 44 7 -4.5 Dallas Cowboys Buffalo Bills 0.67 FALSE -0.37 24.7777777777778 20.2222222222222 25.4444444444444 24.2222222222222
2044 2011 10 Philadelphia Eagles Arizona Cardinals Arizona Cardinals Philadelphia Eagles 21 17 -13 Philadelphia Eagles Philadelphia Eagles 0.66 FALSE -0.350909090909091 24.4444444444444 22.5555555555556 20.3333333333333 23.6666666666667
2047 2011 10 Cleveland Browns St. Louis Rams St. Louis Rams Cleveland Browns 13 12 -2.5 Cleveland Browns St. Louis Rams 0.62 TRUE 0.183636363636364 14.5555555555556 20.3333333333333 12.5555555555556 24.7777777777778
2050 2011 10 San Francisco 49ers New York Giants San Francisco 49ers New York Giants 27 20 -4 San Francisco 49ers New York Giants 0.63 FALSE -0.293636363636364 25.8888888888889 15.3333333333333 24.2222222222222 23.4444444444444
2053 2011 10 Chicago Bears Detroit Lions Chicago Bears Detroit Lions 37 13 -2.5 Chicago Bears Chicago Bears 0.53 TRUE 0.0118181818181819 26.3333333333333 20.7777777777778 28 20.4444444444444
2056 2011 10 Seattle Seahawks Baltimore Ravens Seattle Seahawks Baltimore Ravens 22 17 -7 Baltimore Ravens Baltimore Ravens 0.84 FALSE -0.694545454545454 16 22.4444444444444 25 16.8888888888889
2059 2011 10 Carolina Panthers Tennessee Titans Tennessee Titans Carolina Panthers 30 3 -3.5 Carolina Panthers Carolina Panthers 0.63 FALSE -0.293636363636364 21.1111111111111 26.3333333333333 20.6666666666667 19.1111111111111
2062 2011 10 Cincinnati Bengals Pittsburgh Steelers Pittsburgh Steelers Cincinnati Bengals 24 17 -3.5 Pittsburgh Steelers Pittsburgh Steelers 0.7 TRUE 0.336363636363636 23.5555555555556 18.2222222222222 22 17.9
2065 2011 10 Tampa Bay Buccaneers Houston Texans Houston Texans Tampa Bay Buccaneers 37 9 -3.5 Houston Texans Houston Texans 0.74 TRUE 0.412727272727273 17.3333333333333 25.8888888888889 27.3 16.6
2068 2011 10 Indianapolis Colts Jacksonville Jaguars Jacksonville Jaguars Indianapolis Colts 17 3 -3 Jacksonville Jaguars Jacksonville Jaguars 0.69 TRUE 0.317272727272727 13.1 30 12.7777777777778 18.4444444444444
2071 2011 10 Green Bay Packers Minnesota Vikings Green Bay Packers Minnesota Vikings 45 7 -13 Green Bay Packers Green Bay Packers 0.62 TRUE 0.183636363636364 35.5555555555556 20.6666666666667 19.8888888888889 27.1111111111111
2074 2011 11 Denver Broncos New York Jets Denver Broncos New York Jets 17 13 -6 New York Jets New York Jets 0.73 FALSE -0.484545454545455 20.5 24.7 22.8 21.7
2077 2011 11 Miami Dolphins Buffalo Bills Miami Dolphins Buffalo Bills 35 8 -2.5 Miami Dolphins Buffalo Bills 0.69 FALSE -0.408181818181818 19.3 18.6 23.7 25.3
2080 2011 11 Minnesota Vikings Oakland Raiders Oakland Raiders Minnesota Vikings 27 21 -2 Minnesota Vikings Oakland Raiders 0.65 TRUE 0.240909090909091 20 27.1 23.5 25.4
2083 2011 11 St. Louis Rams Seattle Seahawks Seattle Seahawks St. Louis Rams 24 7 -3 St. Louis Rams St. Louis Rams 0.5 FALSE -0.0454545454545454 12 24.7 16.8 20.9
2086 2011 11 Washington Redskins Dallas Cowboys Dallas Cowboys Washington Redskins 27 24 -7 Dallas Cowboys Dallas Cowboys 0.73 FALSE -0.484545454545455 16 20.5 25 20.6
2089 2011 11 San Francisco 49ers Arizona Cardinals San Francisco 49ers Arizona Cardinals 23 7 -10 San Francisco 49ers San Francisco 49ers 0.68 TRUE 0.298181818181818 25.6 14.5 19 23.6
2092 2011 11 Detroit Lions Carolina Panthers Detroit Lions Carolina Panthers 49 35 -7 Detroit Lions Detroit Lions 0.69 TRUE 0.317272727272727 30.1 21.9 22.5 28.6
2095 2011 11 Chicago Bears San Diego Chargers Chicago Bears San Diego Chargers 31 20 -4.5 Chicago Bears Chicago Bears 0.65 TRUE 0.240909090909091 26.8 20.7 23.6 25.9
2098 2011 11 Atlanta Falcons Tennessee Titans Atlanta Falcons Tennessee Titans 23 17 -6 Atlanta Falcons Atlanta Falcons 0.72 FALSE -0.465454545454545 23.5 21.3 20.3 19.5
2101 2011 11 Baltimore Ravens Cincinnati Bengals Baltimore Ravens Cincinnati Bengals 31 24 -7 Baltimore Ravens Cincinnati Bengals 0.51 TRUE -0.0263636363636363 25.6 17.6 23.6 19.5
2104 2011 11 Green Bay Packers Tampa Bay Buccaneers Green Bay Packers Tampa Bay Buccaneers 35 26 -14 Green Bay Packers Green Bay Packers 0.77 FALSE -0.560909090909091 35.5 21.2 18.2 26.8
2107 2011 11 New York Giants Philadelphia Eagles Philadelphia Eagles New York Giants 17 10 -6 New York Giants New York Giants 0.74 FALSE -0.503636363636364 22.8 22.8 23.7 21.3
2110 2011 11 Cleveland Browns Jacksonville Jaguars Cleveland Browns Jacksonville Jaguars 14 10 -1.5 Cleveland Browns Jacksonville Jaguars 0.58 FALSE -0.198181818181818 14.5 19.3 12.5 18
2113 2011 11 New England Patriots Kansas City Chiefs New England Patriots Kansas City Chiefs 34 3 -17 New England Patriots New England Patriots 0.73 TRUE 0.393636363636364 29.3 20.3 14.4 25.2
2116 2011 12 Detroit Lions Green Bay Packers Green Bay Packers Detroit Lions 27 15 -4.5 Green Bay Packers Green Bay Packers 0.61 TRUE 0.164545454545455 28.7272727272727 22.3636363636364 34.7272727272727 20.6363636363636
2119 2011 12 Dallas Cowboys Miami Dolphins Dallas Cowboys Miami Dolphins 20 19 -7 Dallas Cowboys Dallas Cowboys 0.62 FALSE -0.274545454545455 24.5454545454545 20.4545454545455 19.2727272727273 18.7272727272727
2122 2011 12 Baltimore Ravens San Francisco 49ers Baltimore Ravens San Francisco 49ers 16 6 -3.5 Baltimore Ravens San Francisco 49ers 0.6 FALSE -0.236363636363636 24.7272727272727 16.5454545454545 23.8181818181818 14.6363636363636
2125 2011 12 Tennessee Titans Tampa Bay Buccaneers Tennessee Titans Tampa Bay Buccaneers 23 17 -3 Tennessee Titans Tampa Bay Buccaneers 0.54 FALSE -0.121818181818182 20.5454545454545 19.2727272727273 18.0909090909091 26.4545454545455
2128 2011 12 San Diego Chargers Denver Broncos Denver Broncos San Diego Chargers 16 13 -4.5 San Diego Chargers San Diego Chargers 0.62 FALSE -0.274545454545455 22.6363636363636 25 20.0909090909091 23.6363636363636
2131 2011 12 Jacksonville Jaguars Houston Texans Houston Texans Jacksonville Jaguars 20 13 -6.5 Houston Texans Houston Texans 0.76 TRUE 0.450909090909091 12.5454545454545 18.1818181818182 26.6363636363636 16.2727272727273
2134 2011 12 Atlanta Falcons Minnesota Vikings Atlanta Falcons Minnesota Vikings 24 14 -10 Atlanta Falcons Atlanta Falcons 0.83 FALSE -0.675454545454545 23.5454545454545 20.6363636363636 19.4545454545455 26.8181818181818
2137 2011 12 Oakland Raiders Chicago Bears Oakland Raiders Chicago Bears 25 20 -3 Oakland Raiders Oakland Raiders 0.51 TRUE -0.0263636363636363 23.6363636363636 24.9090909090909 26.1818181818182 21.0909090909091
2140 2011 12 Seattle Seahawks Washington Redskins Washington Redskins Seattle Seahawks 23 17 -3 Seattle Seahawks Seattle Seahawks 0.67 FALSE -0.37 16.8181818181818 21.0909090909091 16.6363636363636 20.1818181818182
2143 2011 12 Philadelphia Eagles New England Patriots New England Patriots Philadelphia Eagles 38 20 -3 New England Patriots New England Patriots 0.78 TRUE 0.489090909090909 23.3636363636364 22.8181818181818 30.0909090909091 20.2727272727273
2146 2011 12 Kansas City Chiefs Pittsburgh Steelers Pittsburgh Steelers Kansas City Chiefs 13 9 -11 Pittsburgh Steelers Pittsburgh Steelers 0.81 FALSE -0.637272727272727 13.9090909090909 24.0909090909091 21.1818181818182 17.0909090909091
2149 2011 12 St. Louis Rams Arizona Cardinals Arizona Cardinals St. Louis Rams 23 20 -2.5 St. Louis Rams St. Louis Rams 0.56 FALSE -0.16 12.7272727272727 24.5454545454545 19.3636363636364 23.2727272727273
2152 2011 12 New York Jets Buffalo Bills New York Jets Buffalo Bills 28 24 -9.5 New York Jets New York Jets 0.66 FALSE -0.350909090909091 23.2727272727273 21.9090909090909 23.7272727272727 25.5454545454545
2155 2011 12 Indianapolis Colts Carolina Panthers Carolina Panthers Indianapolis Colts 27 19 -3.5 Carolina Panthers Carolina Panthers 0.82 TRUE 0.565454545454545 13.6363636363636 29.7272727272727 22.9090909090909 27.7272727272727
2158 2011 12 Cincinnati Bengals Cleveland Browns Cincinnati Bengals Cleveland Browns 23 20 -6.5 Cincinnati Bengals Cincinnati Bengals 0.8 FALSE -0.618181818181818 23.5454545454545 19.5454545454545 15 19.6363636363636
2161 2011 12 New Orleans Saints New York Giants New Orleans Saints New York Giants 49 24 -7 New Orleans Saints New Orleans Saints 0.55 TRUE 0.05 32.9090909090909 22.9090909090909 22.9090909090909 25.1818181818182
2164 2011 13 Seattle Seahawks Philadelphia Eagles Seattle Seahawks Philadelphia Eagles 31 14 -3 Philadelphia Eagles Philadelphia Eagles 0.71 FALSE -0.446363636363636 18 20.5 22.5833333333333 23.5
2167 2011 13 Houston Texans Atlanta Falcons Houston Texans Atlanta Falcons 17 10 -2 Atlanta Falcons Atlanta Falcons 0.75 FALSE -0.522727272727273 25.8333333333333 15.75 22.4166666666667 20.3333333333333
2170 2011 13 Buffalo Bills Tennessee Titans Tennessee Titans Buffalo Bills 23 17 -1 Buffalo Bills Buffalo Bills 0.53 FALSE -0.102727272727273 23.1666666666667 25.3333333333333 20.75 19.0833333333333
2173 2011 13 Cleveland Browns Baltimore Ravens Baltimore Ravens Cleveland Browns 24 10 -7 Baltimore Ravens Baltimore Ravens 0.79 TRUE 0.508181818181818 14.5833333333333 20 24.6666666666667 16
2176 2011 13 San Francisco 49ers St. Louis Rams San Francisco 49ers St. Louis Rams 26 0 -14 San Francisco 49ers San Francisco 49ers 0.73 TRUE 0.393636363636364 24 13.4166666666667 11.6666666666667 24.6666666666667
2179 2011 13 New Orleans Saints Detroit Lions New Orleans Saints Detroit Lions 31 17 -8.5 New Orleans Saints New Orleans Saints 0.73 TRUE 0.393636363636364 32.75 22.4166666666667 27.75 23.0833333333333
2182 2011 13 Arizona Cardinals Dallas Cowboys Arizona Cardinals Dallas Cowboys 19 13 -4.5 Dallas Cowboys Dallas Cowboys 0.79 FALSE -0.599090909090909 19.3333333333333 22.4166666666667 23.5833333333333 20.3333333333333
2185 2011 13 Pittsburgh Steelers Cincinnati Bengals Pittsburgh Steelers Cincinnati Bengals 35 7 -7 Pittsburgh Steelers Pittsburgh Steelers 0.58 TRUE 0.107272727272727 22.3333333333333 16.25 22.1666666666667 20.8333333333333
2188 2011 13 Washington Redskins New York Jets New York Jets Washington Redskins 34 19 -3 New York Jets New York Jets 0.74 TRUE 0.412727272727273 16.8333333333333 21.3333333333333 24.1666666666667 21.6666666666667
2191 2011 13 Tampa Bay Buccaneers Carolina Panthers Carolina Panthers Tampa Bay Buccaneers 38 19 -2 Carolina Panthers Carolina Panthers 0.63 TRUE 0.202727272727273 18.1666666666667 27.4166666666667 24.1666666666667 27
2194 2011 13 Minnesota Vikings Denver Broncos Denver Broncos Minnesota Vikings 35 32 -1 Minnesota Vikings Denver Broncos 0.71 TRUE 0.355454545454545 20.5 27.5 21.3333333333333 24.3333333333333
2197 2011 13 Miami Dolphins Oakland Raiders Miami Dolphins Oakland Raiders 34 14 -3 Miami Dolphins Oakland Raiders 0.67 FALSE -0.37 20.5 18.3333333333333 22.8333333333333 25.6666666666667
2200 2011 13 New York Giants Green Bay Packers Green Bay Packers New York Giants 38 35 -7 Green Bay Packers Green Bay Packers 0.78 FALSE -0.58 23.9166666666667 26.25 35 21.8333333333333
2203 2011 13 New England Patriots Indianapolis Colts New England Patriots Indianapolis Colts 31 24 -20.5 New England Patriots New England Patriots 0.76 FALSE -0.541818181818182 30.1666666666667 20.5833333333333 14.5 29.8333333333333
2206 2011 13 Chicago Bears Kansas City Chiefs Kansas City Chiefs Chicago Bears 10 3 -8.5 Chicago Bears Chicago Bears 0.72 FALSE -0.465454545454545 24.25 20.1666666666667 13.5833333333333 22.3333333333333
2209 2011 13 Jacksonville Jaguars San Diego Chargers San Diego Chargers Jacksonville Jaguars 38 14 -3 San Diego Chargers San Diego Chargers 0.68 TRUE 0.298181818181818 12.6666666666667 19.8333333333333 23.9166666666667 24.0833333333333
2212 2011 14 Pittsburgh Steelers Cleveland Browns Pittsburgh Steelers Cleveland Browns 14 3 -14 Pittsburgh Steelers Pittsburgh Steelers 0.72 FALSE -0.465454545454545 21.6923076923077 15.2307692307692 13.6923076923077 19.5384615384615
2215 2011 14 Dallas Cowboys New York Giants New York Giants Dallas Cowboys 37 34 -4.5 Dallas Cowboys New York Giants 0.71 TRUE 0.355454545454545 24.3846153846154 21.6153846153846 24.9230769230769 26.8461538461538
2218 2011 14 Denver Broncos Chicago Bears Denver Broncos Chicago Bears 13 10 -3 Denver Broncos Denver Broncos 0.68 FALSE -0.389090909090909 20.6923076923077 23.2307692307692 23.1538461538462 19.6153846153846
2221 2011 14 Jacksonville Jaguars Tampa Bay Buccaneers Jacksonville Jaguars Tampa Bay Buccaneers 41 14 -3 Tampa Bay Buccaneers Tampa Bay Buccaneers 0.57 FALSE -0.179090909090909 14.8461538461538 19.3846153846154 17.8461538461538 28.4615384615385
2224 2011 14 Arizona Cardinals San Francisco 49ers Arizona Cardinals San Francisco 49ers 21 19 -3.5 San Francisco 49ers San Francisco 49ers 0.81 FALSE -0.637272727272727 19.4615384615385 22.1538461538462 23.6153846153846 14
2227 2011 14 Green Bay Packers Oakland Raiders Green Bay Packers Oakland Raiders 46 16 -12 Green Bay Packers Green Bay Packers 0.76 TRUE 0.450909090909091 35.8461538461538 21.3846153846154 22.3076923076923 27.2307692307692
2230 2011 14 Cincinnati Bengals Houston Texans Houston Texans Cincinnati Bengals 20 19 -2.5 Cincinnati Bengals Houston Texans 0.56 TRUE 0.0690909090909093 21.9230769230769 20.7692307692308 25.3846153846154 16
2233 2011 14 Baltimore Ravens Indianapolis Colts Baltimore Ravens Indianapolis Colts 24 10 -16 Baltimore Ravens Baltimore Ravens 0.55 FALSE -0.140909090909091 24.6153846153846 15.5384615384615 14.1538461538462 29.3846153846154
2236 2011 14 Tennessee Titans New Orleans Saints New Orleans Saints Tennessee Titans 22 17 -3.5 New Orleans Saints New Orleans Saints 0.72 TRUE 0.374545454545455 20.4615384615385 19.3076923076923 31.9230769230769 22
2239 2011 14 Carolina Panthers Atlanta Falcons Atlanta Falcons Carolina Panthers 31 23 -3 Atlanta Falcons Atlanta Falcons 0.66 TRUE 0.26 24.0769230769231 27.3076923076923 23.0769230769231 20.5384615384615
2242 2011 14 Detroit Lions Minnesota Vikings Detroit Lions Minnesota Vikings 34 28 -10 Detroit Lions Detroit Lions 0.67 FALSE -0.37 28.2307692307692 23.4615384615385 21.0769230769231 28
2245 2011 14 New York Jets Kansas City Chiefs New York Jets Kansas City Chiefs 37 10 -11 New York Jets New York Jets 0.65 TRUE 0.240909090909091 25.1538461538462 20.7692307692308 13.3076923076923 23.4615384615385
2248 2011 14 Miami Dolphins Philadelphia Eagles Philadelphia Eagles Miami Dolphins 26 10 -3 Miami Dolphins Miami Dolphins 0.51 FALSE -0.0645454545454546 19.6923076923077 18.9230769230769 22.8461538461538 22.4615384615385
2251 2011 14 Washington Redskins New England Patriots New England Patriots Washington Redskins 34 27 -7.5 New England Patriots New England Patriots 0.84 FALSE -0.694545454545454 17.6153846153846 22.3076923076923 30.4615384615385 21.0769230769231
2254 2011 14 San Diego Chargers Buffalo Bills San Diego Chargers Buffalo Bills 37 10 -7 San Diego Chargers San Diego Chargers 0.73 TRUE 0.393636363636364 24.9230769230769 23 22.1538461538462 26.2307692307692
2257 2011 14 Seattle Seahawks St. Louis Rams Seattle Seahawks St. Louis Rams 30 13 -8.5 Seattle Seahawks Seattle Seahawks 0.67 TRUE 0.279090909090909 18.9230769230769 19.9230769230769 11.7692307692308 25.0769230769231
2260 2011 15 Atlanta Falcons Jacksonville Jaguars Atlanta Falcons Jacksonville Jaguars 41 14 -13.5 Atlanta Falcons Atlanta Falcons 0.57 TRUE 0.0881818181818181 24.3571428571429 20.0714285714286 14.7857142857143 20.9285714285714
2263 2011 15 Tampa Bay Buccaneers Dallas Cowboys Dallas Cowboys Tampa Bay Buccaneers 31 15 -7.5 Dallas Cowboys Dallas Cowboys 0.78 TRUE 0.489090909090909 17.6428571428571 28.6428571428571 24.8571428571429 21.1428571428571
2266 2011 15 St. Louis Rams Cincinnati Bengals Cincinnati Bengals St. Louis Rams 20 13 -7 Cincinnati Bengals Cincinnati Bengals 0.84 FALSE -0.694545454545454 11.8571428571429 24.7142857142857 21.7857142857143 20.2142857142857
2269 2011 15 San Diego Chargers Baltimore Ravens San Diego Chargers Baltimore Ravens 34 14 -1 Baltimore Ravens Baltimore Ravens 0.6 FALSE -0.236363636363636 25.5714285714286 22.3571428571429 23.8571428571429 16.8571428571429
2272 2011 15 Buffalo Bills Miami Dolphins Miami Dolphins Buffalo Bills 30 23 0 PickEm Buffalo Bills 0.61 FALSE -0.255454545454545 22.2142857142857 26.5 20.4285714285714 19.2142857142857
2275 2011 15 Minnesota Vikings New Orleans Saints New Orleans Saints Minnesota Vikings 42 20 -7 New Orleans Saints New Orleans Saints 0.82 TRUE 0.565454545454545 21 29 32.6428571428571 21.8571428571429
2278 2011 15 Houston Texans Carolina Panthers Carolina Panthers Houston Texans 28 13 -5 Houston Texans Houston Texans 0.57 FALSE -0.179090909090909 24.5 16.8571428571429 24.3571428571429 26.2857142857143
2281 2011 15 New York Giants Washington Redskins Washington Redskins New York Giants 23 10 -6 New York Giants New York Giants 0.78 FALSE -0.58 23.8571428571429 26.5714285714286 18 21.4285714285714
2284 2011 15 Denver Broncos New England Patriots New England Patriots Denver Broncos 41 23 -7 New England Patriots New England Patriots 0.69 TRUE 0.317272727272727 20.8571428571429 24.5 31.2142857142857 21.2142857142857
2287 2011 15 Arizona Cardinals Cleveland Browns Arizona Cardinals Cleveland Browns 20 17 -6 Arizona Cardinals Arizona Cardinals 0.77 FALSE -0.560909090909091 19.5 21.7857142857143 13.9285714285714 19.5714285714286
2290 2011 15 Indianapolis Colts Tennessee Titans Indianapolis Colts Tennessee Titans 27 13 -6.5 Tennessee Titans Tennessee Titans 0.76 FALSE -0.541818181818182 15.0714285714286 28.2142857142857 19.9285714285714 19.8571428571429
2293 2011 15 Philadelphia Eagles New York Jets Philadelphia Eagles New York Jets 45 19 -3 Philadelphia Eagles New York Jets 0.57 FALSE -0.179090909090909 24.4285714285714 22.2142857142857 24.7142857142857 22.5
2296 2011 15 Chicago Bears Seattle Seahawks Seattle Seahawks Chicago Bears 38 14 -3.5 Chicago Bears Seattle Seahawks 0.6 TRUE 0.145454545454546 22.5 20.9285714285714 20.2857142857143 19.5
2299 2011 15 Kansas City Chiefs Green Bay Packers Kansas City Chiefs Green Bay Packers 19 14 -11.5 Green Bay Packers Green Bay Packers 0.84 FALSE -0.694545454545454 13.7142857142857 22.7857142857143 34.2857142857143 21.2142857142857
2302 2011 15 Oakland Raiders Detroit Lions Detroit Lions Oakland Raiders 28 27 -3 Detroit Lions Detroit Lions 0.69 FALSE -0.408181818181818 22.6428571428571 27.2857142857143 28.2142857142857 23.7142857142857
2305 2011 15 San Francisco 49ers Pittsburgh Steelers San Francisco 49ers Pittsburgh Steelers 20 3 -3 San Francisco 49ers Pittsburgh Steelers 0.52 FALSE -0.0836363636363636 23.3571428571429 13.2142857142857 20.3571428571429 15.5714285714286
2308 2011 16 Indianapolis Colts Houston Texans Indianapolis Colts Houston Texans 19 16 -7 Houston Texans Houston Texans 0.75 FALSE -0.522727272727273 15.3333333333333 27.4 23.9333333333333 17
2311 2011 16 Kansas City Chiefs Oakland Raiders Oakland Raiders Kansas City Chiefs 16 13 -3 Kansas City Chiefs Kansas City Chiefs 0.52 FALSE -0.0836363636363636 13.6666666666667 22.3333333333333 22.2 26.3333333333333
2314 2011 16 Tennessee Titans Jacksonville Jaguars Tennessee Titans Jacksonville Jaguars 23 17 -8 Tennessee Titans Tennessee Titans 0.66 FALSE -0.350909090909091 20.1333333333333 19.6666666666667 14.9333333333333 21.0666666666667
2317 2011 16 Cincinnati Bengals Arizona Cardinals Cincinnati Bengals Arizona Cardinals 23 16 -4 Cincinnati Bengals Cincinnati Bengals 0.57 TRUE 0.0881818181818181 21.8666666666667 19.9333333333333 19.2666666666667 21.8666666666667
2320 2011 16 Pittsburgh Steelers St. Louis Rams Pittsburgh Steelers St. Louis Rams 27 0 -10 Pittsburgh Steelers Pittsburgh Steelers 0.7 TRUE 0.336363636363636 20.8 14.5333333333333 11.0666666666667 24.8666666666667
2323 2011 16 Buffalo Bills Denver Broncos Buffalo Bills Denver Broncos 40 14 -3 Denver Broncos Denver Broncos 0.71 FALSE -0.446363636363636 23.4 25.6666666666667 20.4 25.5333333333333
2326 2011 16 New England Patriots Miami Dolphins New England Patriots Miami Dolphins 27 24 -7 New England Patriots New England Patriots 0.68 FALSE -0.389090909090909 30.9333333333333 21.4 20.6666666666667 19.7333333333333
2329 2011 16 Baltimore Ravens Cleveland Browns Baltimore Ravens Cleveland Browns 20 14 -11 Baltimore Ravens Baltimore Ravens 0.77 FALSE -0.560909090909091 23.6 16.6666666666667 13.9333333333333 19.6
2332 2011 16 Seattle Seahawks San Francisco 49ers San Francisco 49ers Seattle Seahawks 19 17 -2.5 San Francisco 49ers San Francisco 49ers 0.65 FALSE -0.331818181818182 20.0666666666667 19.4666666666667 23.0666666666667 13.4666666666667
2335 2011 16 New York Jets New York Giants New York Giants New York Jets 29 14 -2.5 New York Jets New York Giants 0.67 TRUE 0.279090909090909 24 22.9333333333333 24.2 25.7333333333333
2338 2011 16 Detroit Lions San Diego Chargers Detroit Lions San Diego Chargers 38 10 0 PickEm San Diego Chargers 0.66 FALSE -0.350909090909091 28.8666666666667 22.8 24.5333333333333 23.4
2341 2011 16 Washington Redskins Minnesota Vikings Minnesota Vikings Washington Redskins 33 26 -6 Washington Redskins Washington Redskins 0.55 FALSE -0.140909090909091 18.5333333333333 22.2 21.8 28.8
2344 2011 16 Carolina Panthers Tampa Bay Buccaneers Carolina Panthers Tampa Bay Buccaneers 48 16 -8 Carolina Panthers Carolina Panthers 0.82 TRUE 0.565454545454545 25.9333333333333 25.6 17.5333333333333 29.9333333333333
2347 2011 16 Dallas Cowboys Philadelphia Eagles Philadelphia Eagles Dallas Cowboys 20 7 -2.5 Philadelphia Eagles Philadelphia Eagles 0.65 TRUE 0.240909090909091 23.6666666666667 21.0666666666667 24.1333333333333 21.2
2350 2011 16 Green Bay Packers Chicago Bears Green Bay Packers Chicago Bears 35 21 -13.5 Green Bay Packers Green Bay Packers 0.75 TRUE 0.431818181818182 34.3333333333333 21.2 22.4 21.8666666666667
2353 2011 16 New Orleans Saints Atlanta Falcons New Orleans Saints Atlanta Falcons 45 16 -7 New Orleans Saints New Orleans Saints 0.68 TRUE 0.298181818181818 33.4666666666667 21.4666666666667 23.8 21.7333333333333
2356 2011 17 Cincinnati Bengals Baltimore Ravens Baltimore Ravens Cincinnati Bengals 24 16 -3 Baltimore Ravens Baltimore Ravens 0.51 TRUE -0.0263636363636363 21.5 20.1875 23.625 16.625
2359 2011 17 Atlanta Falcons Tampa Bay Buccaneers Atlanta Falcons Tampa Bay Buccaneers 45 24 -10 Atlanta Falcons Atlanta Falcons 0.78 TRUE 0.489090909090909 25.125 21.875 17.9375 30.875
2362 2011 17 Arizona Cardinals Seattle Seahawks Arizona Cardinals Seattle Seahawks 23 20 -2.5 Arizona Cardinals Seattle Seahawks 0.67 FALSE -0.37 19.5 21.75 20.0625 19.6875
2365 2011 17 Cleveland Browns Pittsburgh Steelers Pittsburgh Steelers Cleveland Browns 13 9 -7 Pittsburgh Steelers Pittsburgh Steelers 0.81 FALSE -0.637272727272727 13.625 19.1875 20.3125 14.1875
2368 2011 17 Green Bay Packers Detroit Lions Green Bay Packers Detroit Lions 45 41 -6.5 Detroit Lions Detroit Lions 0.55 FALSE -0.140909090909091 35 22.4375 29.625 24.1875
2371 2011 17 New York Giants Dallas Cowboys New York Giants Dallas Cowboys 31 14 -3 New York Giants New York Giants 0.66 TRUE 0.26 24.625 25 23.0625 21.6875
2374 2011 17 New Orleans Saints Carolina Panthers New Orleans Saints Carolina Panthers 45 17 -7 New Orleans Saints New Orleans Saints 0.54 TRUE 0.030909090909091 34.1875 21.1875 25.375 26.8125
2377 2011 17 Philadelphia Eagles Washington Redskins Philadelphia Eagles Washington Redskins 34 10 -7.5 Philadelphia Eagles Philadelphia Eagles 0.71 TRUE 0.355454545454545 24.75 20.5 18 22.9375
2380 2011 17 Miami Dolphins New York Jets Miami Dolphins New York Jets 19 17 -2 Miami Dolphins New York Jets 0.6 TRUE 0.145454545454546 20.5625 19.5625 23.5625 22.6875
2383 2011 17 Minnesota Vikings Chicago Bears Chicago Bears Minnesota Vikings 17 13 -2.5 Minnesota Vikings Minnesota Vikings 0.58 FALSE -0.198181818181818 21.25 28.0625 22.0625 21.3125
2386 2011 17 St. Louis Rams San Francisco 49ers San Francisco 49ers St. Louis Rams 34 27 -12.5 San Francisco 49ers San Francisco 49ers 0.82 FALSE -0.656363636363636 12.0625 25.4375 23.75 14.3125
2389 2011 17 New England Patriots Buffalo Bills New England Patriots Buffalo Bills 49 21 -10.5 New England Patriots New England Patriots 0.68 TRUE 0.298181818181818 32.0625 21.375 23.25 27.125
2392 2011 17 Denver Broncos Kansas City Chiefs Kansas City Chiefs Denver Broncos 7 3 -2.5 Denver Broncos Denver Broncos 0.54 FALSE -0.121818181818182 19.3125 24.375 13.25 21.125
2395 2011 17 Houston Texans Tennessee Titans Tennessee Titans Houston Texans 23 22 -2.5 Tennessee Titans Tennessee Titans 0.52 FALSE -0.0836363636363636 23.8125 17.375 20.3125 19.8125
2398 2011 17 Oakland Raiders San Diego Chargers San Diego Chargers Oakland Raiders 38 26 -2.5 Oakland Raiders San Diego Chargers 0.51 TRUE -0.0263636363636363 22.4375 27.0625 25.375 23.5625
2401 2011 17 Jacksonville Jaguars Indianapolis Colts Jacksonville Jaguars Indianapolis Colts 19 13 -3 Jacksonville Jaguars Indianapolis Colts 0.5 FALSE -0.0454545454545454 15.1875 20.5625 15.1875 26.875
2404 2012 1 New York Giants Dallas Cowboys Dallas Cowboys New York Giants 24 17 -3.5 New York Giants New York Giants 0.59 FALSE -0.217272727272727 17 24 24 17
2407 2012 1 Cleveland Browns Philadelphia Eagles Philadelphia Eagles Cleveland Browns 17 16 -9 Philadelphia Eagles Philadelphia Eagles 0.75 FALSE -0.522727272727273 16 17 17 16
2410 2012 1 Tennessee Titans New England Patriots New England Patriots Tennessee Titans 34 13 -5.5 New England Patriots New England Patriots 0.81 TRUE 0.546363636363637 13 34 34 13
2413 2012 1 Denver Broncos Pittsburgh Steelers Denver Broncos Pittsburgh Steelers 31 19 -2.5 Denver Broncos Denver Broncos 0.6 TRUE 0.145454545454546 31 19 19 31
2416 2012 1 Green Bay Packers San Francisco 49ers San Francisco 49ers Green Bay Packers 30 22 -5 Green Bay Packers Green Bay Packers 0.61 FALSE -0.255454545454545 22 30 30 22
2419 2012 1 Arizona Cardinals Seattle Seahawks Arizona Cardinals Seattle Seahawks 20 16 -3 Seattle Seahawks Seattle Seahawks 0.66 FALSE -0.350909090909091 20 16 16 20
2422 2012 1 New Orleans Saints Washington Redskins Washington Redskins New Orleans Saints 40 32 -8.5 New Orleans Saints New Orleans Saints 0.76 FALSE -0.541818181818182 32 40 40 32
2425 2012 1 Chicago Bears Indianapolis Colts Chicago Bears Indianapolis Colts 41 21 -10 Chicago Bears Chicago Bears 0.63 TRUE 0.202727272727273 41 21 21 41
2428 2012 1 Kansas City Chiefs Atlanta Falcons Atlanta Falcons Kansas City Chiefs 40 24 -2.5 Atlanta Falcons Atlanta Falcons 0.68 TRUE 0.298181818181818 24 40 40 24
2431 2012 1 Houston Texans Miami Dolphins Houston Texans Miami Dolphins 30 10 -13 Houston Texans Houston Texans 0.8 TRUE 0.527272727272727 30 10 10 30
2434 2012 1 Detroit Lions St. Louis Rams Detroit Lions St. Louis Rams 27 23 -8.5 Detroit Lions Detroit Lions 0.8 FALSE -0.618181818181818 27 23 23 27
2437 2012 1 Tampa Bay Buccaneers Carolina Panthers Tampa Bay Buccaneers Carolina Panthers 16 10 -3 Carolina Panthers Carolina Panthers 0.72 FALSE -0.465454545454545 16 10 10 16
2440 2012 1 Minnesota Vikings Jacksonville Jaguars Minnesota Vikings Jacksonville Jaguars 26 23 -3.5 Minnesota Vikings Minnesota Vikings 0.57 FALSE -0.179090909090909 26 23 23 26
2443 2012 1 New York Jets Buffalo Bills New York Jets Buffalo Bills 48 28 -3 New York Jets Buffalo Bills 0.57 FALSE -0.179090909090909 48 28 28 48
2446 2012 1 Baltimore Ravens Cincinnati Bengals Baltimore Ravens Cincinnati Bengals 44 13 -7 Baltimore Ravens Baltimore Ravens 0.62 TRUE 0.183636363636364 44 13 13 44
2449 2012 1 Oakland Raiders San Diego Chargers San Diego Chargers Oakland Raiders 22 14 -1 Oakland Raiders San Diego Chargers 0.55 TRUE 0.05 14 22 22 14
2452 2012 2 Green Bay Packers Chicago Bears Green Bay Packers Chicago Bears 23 10 -5 Green Bay Packers Green Bay Packers 0.58 TRUE 0.107272727272727 22.5 20 25.5 22
2455 2012 2 New York Giants Tampa Bay Buccaneers New York Giants Tampa Bay Buccaneers 41 34 -7.5 New York Giants New York Giants 0.7 FALSE -0.427272727272727 29 29 25 25.5
2458 2012 2 Miami Dolphins Oakland Raiders Miami Dolphins Oakland Raiders 35 13 -1.5 Oakland Raiders Oakland Raiders 0.75 FALSE -0.522727272727273 22.5 21.5 13.5 28.5
2461 2012 2 Carolina Panthers New Orleans Saints Carolina Panthers New Orleans Saints 35 27 -3 New Orleans Saints New Orleans Saints 0.75 FALSE -0.522727272727273 22.5 21.5 29.5 37.5
2464 2012 2 Seattle Seahawks Dallas Cowboys Seattle Seahawks Dallas Cowboys 27 7 -3 Dallas Cowboys Dallas Cowboys 0.78 FALSE -0.58 21.5 13.5 15.5 22
2467 2012 2 Buffalo Bills Kansas City Chiefs Buffalo Bills Kansas City Chiefs 35 17 -3 Buffalo Bills Kansas City Chiefs 0.6 FALSE -0.236363636363636 31.5 32.5 20.5 37.5
2470 2012 2 Cincinnati Bengals Cleveland Browns Cincinnati Bengals Cleveland Browns 34 27 -7 Cincinnati Bengals Cincinnati Bengals 0.69 FALSE -0.408181818181818 23.5 35.5 21.5 25.5
2473 2012 2 New England Patriots Arizona Cardinals Arizona Cardinals New England Patriots 20 18 -13.5 New England Patriots New England Patriots 0.85 FALSE -0.713636363636364 26 16.5 20 17
2476 2012 2 Jacksonville Jaguars Houston Texans Houston Texans Jacksonville Jaguars 27 7 -6.5 Houston Texans Houston Texans 0.83 TRUE 0.584545454545454 15 26.5 28.5 8.5
2479 2012 2 Philadelphia Eagles Baltimore Ravens Philadelphia Eagles Baltimore Ravens 24 23 -3 Philadelphia Eagles Baltimore Ravens 0.78 TRUE 0.489090909090909 20.5 19.5 33.5 18.5
2482 2012 2 Indianapolis Colts Minnesota Vikings Indianapolis Colts Minnesota Vikings 23 20 -3 Minnesota Vikings Indianapolis Colts 0.57 TRUE 0.0881818181818181 22 30.5 23 23
2485 2012 2 Pittsburgh Steelers New York Jets Pittsburgh Steelers New York Jets 27 10 -4.5 Pittsburgh Steelers Pittsburgh Steelers 0.6 TRUE 0.145454545454546 23 20.5 29 27.5
2488 2012 2 St. Louis Rams Washington Redskins St. Louis Rams Washington Redskins 31 28 -3.5 Washington Redskins Washington Redskins 0.72 FALSE -0.465454545454545 27 27.5 34 31.5
2491 2012 2 San Diego Chargers Tennessee Titans San Diego Chargers Tennessee Titans 38 10 -6.5 San Diego Chargers San Diego Chargers 0.73 TRUE 0.393636363636364 30 12 11.5 36
2494 2012 2 San Francisco 49ers Detroit Lions San Francisco 49ers Detroit Lions 27 19 -7 San Francisco 49ers San Francisco 49ers 0.7 TRUE 0.336363636363636 28.5 20.5 23 25
2497 2012 2 Atlanta Falcons Denver Broncos Atlanta Falcons Denver Broncos 27 21 -3 Atlanta Falcons Denver Broncos 0.54 FALSE -0.121818181818182 33.5 22.5 26 23
2500 2012 3 Carolina Panthers New York Giants New York Giants Carolina Panthers 36 7 -2.5 Carolina Panthers New York Giants 0.51 TRUE -0.0263636363636363 17.3333333333333 26.3333333333333 31.3333333333333 21.6666666666667
2503 2012 3 Oakland Raiders Pittsburgh Steelers Oakland Raiders Pittsburgh Steelers 34 31 -3.5 Pittsburgh Steelers Pittsburgh Steelers 0.77 FALSE -0.560909090909091 20.3333333333333 29.3333333333333 25.6666666666667 25
2506 2012 3 Chicago Bears St. Louis Rams Chicago Bears St. Louis Rams 23 6 -7 Chicago Bears Chicago Bears 0.53 TRUE 0.0118181818181819 24.6666666666667 16.6666666666667 20 26
2509 2012 3 Indianapolis Colts Jacksonville Jaguars Jacksonville Jaguars Indianapolis Colts 22 17 -3 Indianapolis Colts Indianapolis Colts 0.72 FALSE -0.465454545454545 20.3333333333333 27.6666666666667 17.3333333333333 23.3333333333333
2512 2012 3 Tennessee Titans Detroit Lions Tennessee Titans Detroit Lions 44 41 -4 Detroit Lions Detroit Lions 0.78 FALSE -0.58 22.3333333333333 37.6666666666667 29 31.3333333333333
2515 2012 3 Minnesota Vikings San Francisco 49ers Minnesota Vikings San Francisco 49ers 24 13 -7 San Francisco 49ers San Francisco 49ers 0.8 FALSE -0.618181818181818 23.3333333333333 19.6666666666667 23.3333333333333 21.6666666666667
2518 2012 3 San Diego Chargers Atlanta Falcons Atlanta Falcons San Diego Chargers 27 3 -3 San Diego Chargers Atlanta Falcons 0.67 TRUE 0.279090909090909 21 17 31.3333333333333 16
2521 2012 3 Baltimore Ravens New England Patriots Baltimore Ravens New England Patriots 31 30 -3 Baltimore Ravens Baltimore Ravens 0.53 FALSE -0.102727272727273 32.6666666666667 22.3333333333333 27.3333333333333 21.3333333333333
2524 2012 3 Miami Dolphins New York Jets New York Jets Miami Dolphins 23 20 -2.5 New York Jets New York Jets 0.74 TRUE 0.412727272727273 21.6666666666667 22 27 25
2527 2012 3 Arizona Cardinals Philadelphia Eagles Arizona Cardinals Philadelphia Eagles 27 6 -3 Philadelphia Eagles Arizona Cardinals 0.51 TRUE -0.0263636363636363 22.3333333333333 13.3333333333333 15.6666666666667 22
2530 2012 3 Washington Redskins Cincinnati Bengals Cincinnati Bengals Washington Redskins 38 31 -3 Washington Redskins Washington Redskins 0.55 FALSE -0.140909090909091 33 33.6666666666667 28.3333333333333 34
2533 2012 3 Denver Broncos Houston Texans Houston Texans Denver Broncos 31 25 -1.5 Houston Texans Houston Texans 0.61 TRUE 0.164545454545455 25.6666666666667 25.6666666666667 29.3333333333333 14
2536 2012 3 Dallas Cowboys Tampa Bay Buccaneers Dallas Cowboys Tampa Bay Buccaneers 16 10 -7.5 Dallas Cowboys Dallas Cowboys 0.53 FALSE -0.102727272727273 15.6666666666667 18 20 22.3333333333333
2539 2012 3 New Orleans Saints Kansas City Chiefs Kansas City Chiefs New Orleans Saints 27 24 -8.5 New Orleans Saints New Orleans Saints 0.75 FALSE -0.522727272727273 27.6666666666667 34 22.6666666666667 33
2542 2012 3 Cleveland Browns Buffalo Bills Buffalo Bills Cleveland Browns 24 14 -3 Buffalo Bills Buffalo Bills 0.56 TRUE 0.0690909090909093 19 25 29 26.3333333333333
2545 2012 3 Seattle Seahawks Green Bay Packers Seattle Seahawks Green Bay Packers 14 12 -3 Green Bay Packers Green Bay Packers 0.75 FALSE -0.522727272727273 19 13 19 18
2548 2012 4 Baltimore Ravens Cleveland Browns Baltimore Ravens Cleveland Browns 23 16 -11.5 Baltimore Ravens Baltimore Ravens 0.68 FALSE -0.389090909090909 30.25 20.75 18.25 24.5
2551 2012 4 St. Louis Rams Seattle Seahawks St. Louis Rams Seattle Seahawks 19 13 -2.5 Seattle Seahawks St. Louis Rams 0.5 TRUE -0.0454545454545454 19.75 22.75 17.5 14.5
2554 2012 4 Jacksonville Jaguars Cincinnati Bengals Cincinnati Bengals Jacksonville Jaguars 27 10 -1.5 Jacksonville Jaguars Cincinnati Bengals 0.79 TRUE 0.508181818181818 15.5 24.25 28 28
2557 2012 4 Detroit Lions Minnesota Vikings Minnesota Vikings Detroit Lions 20 13 -3.5 Detroit Lions Detroit Lions 0.62 FALSE -0.274545454545455 25 28.5 22.5 18
2560 2012 4 Houston Texans Tennessee Titans Houston Texans Tennessee Titans 38 14 -13 Houston Texans Houston Texans 0.68 TRUE 0.298181818181818 31.5 14 20.25 37.75
2563 2012 4 Tampa Bay Buccaneers Washington Redskins Washington Redskins Tampa Bay Buccaneers 24 22 -2 Tampa Bay Buccaneers Washington Redskins 0.63 TRUE 0.202727272727273 20.5 22.75 30.75 30.75
2566 2012 4 Kansas City Chiefs San Diego Chargers San Diego Chargers Kansas City Chiefs 37 20 -2.5 San Diego Chargers San Diego Chargers 0.62 TRUE 0.183636363636364 22 34 25 17.75
2569 2012 4 New York Jets San Francisco 49ers San Francisco 49ers New York Jets 34 0 -4 San Francisco 49ers San Francisco 49ers 0.75 TRUE 0.431818181818182 20.25 27.25 26 16.25
2572 2012 4 Arizona Cardinals Miami Dolphins Arizona Cardinals Miami Dolphins 24 21 -4.5 Arizona Cardinals Arizona Cardinals 0.74 FALSE -0.503636363636364 22.75 15.25 21.5 22.5
2575 2012 4 Philadelphia Eagles New York Giants Philadelphia Eagles New York Giants 19 17 -2 Philadelphia Eagles New York Giants 0.69 TRUE 0.317272727272727 16.5 20.75 27.75 21
2578 2012 4 Atlanta Falcons Carolina Panthers Atlanta Falcons Carolina Panthers 30 28 -7 Atlanta Falcons Atlanta Falcons 0.73 FALSE -0.484545454545455 31 19 20 27.25
2581 2012 4 Green Bay Packers New Orleans Saints Green Bay Packers New Orleans Saints 28 27 -7.5 Green Bay Packers Green Bay Packers 0.56 FALSE -0.16 21.25 20.25 27.5 32.5
2584 2012 4 Denver Broncos Oakland Raiders Denver Broncos Oakland Raiders 37 6 -6.5 Denver Broncos Denver Broncos 0.63 TRUE 0.202727272727273 28.5 20.75 16.75 31.25
2587 2012 4 Buffalo Bills New England Patriots New England Patriots Buffalo Bills 52 28 -4 New England Patriots New England Patriots 0.77 TRUE 0.47 28.75 32.75 33.5 23
2590 2012 4 Dallas Cowboys Chicago Bears Chicago Bears Dallas Cowboys 34 18 -3 Dallas Cowboys Dallas Cowboys 0.59 FALSE -0.217272727272727 16.25 22 27 17
2593 2012 5 St. Louis Rams Arizona Cardinals St. Louis Rams Arizona Cardinals 17 3 -1.5 Arizona Cardinals Arizona Cardinals 0.58 FALSE -0.198181818181818 19.2 18.8 18.8 15.6
2596 2012 5 Indianapolis Colts Green Bay Packers Indianapolis Colts Green Bay Packers 30 27 -6.5 Green Bay Packers Green Bay Packers 0.81 FALSE -0.637272727272727 22.75 27.5 22.4 22.2
2599 2012 5 Pittsburgh Steelers Philadelphia Eagles Pittsburgh Steelers Philadelphia Eagles 16 14 -4 Pittsburgh Steelers Pittsburgh Steelers 0.66 FALSE -0.350909090909091 23.25 22.25 16 19.8
2602 2012 5 New Orleans Saints San Diego Chargers New Orleans Saints San Diego Chargers 31 24 -3.5 New Orleans Saints New Orleans Saints 0.66 TRUE 0.26 28.2 30.8 24.8 20.4
2605 2012 5 New England Patriots Denver Broncos New England Patriots Denver Broncos 31 21 -6 New England Patriots New England Patriots 0.57 TRUE 0.0881818181818181 33 22.6 27 22.8
2608 2012 5 San Francisco 49ers Buffalo Bills San Francisco 49ers Buffalo Bills 45 3 -10 San Francisco 49ers San Francisco 49ers 0.73 TRUE 0.393636363636364 29.8 13.6 23.6 35.2
2611 2012 5 Minnesota Vikings Tennessee Titans Minnesota Vikings Tennessee Titans 30 7 -6 Minnesota Vikings Minnesota Vikings 0.6 TRUE 0.145454545454546 24 15.8 17.6 36.2
2614 2012 5 Jacksonville Jaguars Chicago Bears Chicago Bears Jacksonville Jaguars 41 3 -6.5 Chicago Bears Chicago Bears 0.8 TRUE 0.527272727272727 13 27.6 29.8 14.2
2617 2012 5 Washington Redskins Atlanta Falcons Atlanta Falcons Washington Redskins 24 17 -3 Atlanta Falcons Atlanta Falcons 0.66 TRUE 0.26 28 29.4 29.6 18.6
2620 2012 5 Cincinnati Bengals Miami Dolphins Miami Dolphins Cincinnati Bengals 17 13 -3 Cincinnati Bengals Cincinnati Bengals 0.71 FALSE -0.446363636363636 25 25.8 20.6 20.6
2623 2012 5 Kansas City Chiefs Baltimore Ravens Baltimore Ravens Kansas City Chiefs 9 6 -6 Baltimore Ravens Baltimore Ravens 0.75 FALSE -0.522727272727273 18.8 29 26 17.8
2626 2012 5 New York Giants Cleveland Browns New York Giants Cleveland Browns 41 27 -8 New York Giants New York Giants 0.65 TRUE 0.240909090909091 30.4 22.2 20 27.8
2629 2012 5 Carolina Panthers Seattle Seahawks Seattle Seahawks Carolina Panthers 16 12 -2 Carolina Panthers Carolina Panthers 0.65 FALSE -0.331818181818182 18.4 25 17.2 14
2632 2012 5 New York Jets Houston Texans Houston Texans New York Jets 23 17 -9.5 Houston Texans Houston Texans 0.72 FALSE -0.465454545454545 19.6 26.4 29.8 14.6
2635 2012 6 Tennessee Titans Pittsburgh Steelers Tennessee Titans Pittsburgh Steelers 26 23 -6 Pittsburgh Steelers Pittsburgh Steelers 0.74 FALSE -0.503636363636364 19 34 23.2 23
2638 2012 6 Baltimore Ravens Dallas Cowboys Baltimore Ravens Dallas Cowboys 31 29 -3 Baltimore Ravens Baltimore Ravens 0.62 FALSE -0.274545454545455 26.8333333333333 19.6666666666667 18.8 23.8
2641 2012 6 New York Jets Indianapolis Colts New York Jets Indianapolis Colts 35 9 -3.5 New York Jets New York Jets 0.52 TRUE -0.00727272727272721 22.1666666666667 23.5 20 29
2644 2012 6 Philadelphia Eagles Detroit Lions Detroit Lions Philadelphia Eagles 26 23 -3.5 Philadelphia Eagles Philadelphia Eagles 0.52 FALSE -0.0836363636363636 17.1666666666667 20.8333333333333 25.2 27.4
2647 2012 6 Houston Texans Green Bay Packers Green Bay Packers Houston Texans 42 24 -4 Houston Texans Green Bay Packers 0.58 TRUE 0.107272727272727 28.8333333333333 19.1666666666667 25.6666666666667 22.5
2650 2012 6 San Francisco 49ers New York Giants New York Giants San Francisco 49ers 26 3 -7 San Francisco 49ers New York Giants 0.57 TRUE 0.0881818181818181 25.3333333333333 15.6666666666667 29.6666666666667 19
2653 2012 6 Tampa Bay Buccaneers Kansas City Chiefs Tampa Bay Buccaneers Kansas City Chiefs 38 10 -5 Tampa Bay Buccaneers Tampa Bay Buccaneers 0.6 TRUE 0.145454545454546 24 20.2 17.3333333333333 30.5
2656 2012 6 Seattle Seahawks New England Patriots Seattle Seahawks New England Patriots 24 23 -4 New England Patriots New England Patriots 0.74 FALSE -0.503636363636364 18.3333333333333 15.5 31.3333333333333 22.8333333333333
2659 2012 6 Arizona Cardinals Buffalo Bills Buffalo Bills Arizona Cardinals 19 16 -5 Arizona Cardinals Arizona Cardinals 0.56 FALSE -0.16 18.3333333333333 16.1666666666667 22.8333333333333 32
2662 2012 6 Atlanta Falcons Oakland Raiders Atlanta Falcons Oakland Raiders 23 20 -10 Atlanta Falcons Atlanta Falcons 0.75 FALSE -0.522727272727273 28.5 18.8333333333333 17.4 29.6
2665 2012 6 Miami Dolphins St. Louis Rams Miami Dolphins St. Louis Rams 17 14 -5.5 Miami Dolphins St. Louis Rams 0.56 TRUE 0.0690909090909093 20 19.5 18.3333333333333 18.5
2668 2012 6 Cleveland Browns Cincinnati Bengals Cleveland Browns Cincinnati Bengals 34 24 -1.5 Cincinnati Bengals Cincinnati Bengals 0.65 FALSE -0.331818181818182 22.3333333333333 27.1666666666667 24.8333333333333 27.1666666666667
2671 2012 6 Washington Redskins Minnesota Vikings Washington Redskins Minnesota Vikings 38 26 -2 Minnesota Vikings Minnesota Vikings 0.52 FALSE -0.0836363636363636 29.6666666666667 28.8333333333333 24.3333333333333 19.5
2674 2012 6 San Diego Chargers Denver Broncos Denver Broncos San Diego Chargers 35 24 0 PickEm Denver Broncos 0.59 TRUE 0.126363636363636 24.6666666666667 22.8333333333333 28.3333333333333 23
2677 2012 7 San Francisco 49ers Seattle Seahawks San Francisco 49ers Seattle Seahawks 13 6 -8 San Francisco 49ers San Francisco 49ers 0.6 FALSE -0.236363636363636 23.5714285714286 14.2857142857143 16.5714285714286 15.1428571428571
2680 2012 7 Carolina Panthers Dallas Cowboys Dallas Cowboys Carolina Panthers 19 14 -2.5 Dallas Cowboys Dallas Cowboys 0.75 TRUE 0.431818181818182 17.6666666666667 24 18.8333333333333 22.1666666666667
2683 2012 7 Oakland Raiders Jacksonville Jaguars Oakland Raiders Jacksonville Jaguars 26 23 -6 Oakland Raiders Oakland Raiders 0.66 FALSE -0.350909090909091 18.8333333333333 28.5 14.6666666666667 27.3333333333333
2686 2012 7 Tampa Bay Buccaneers New Orleans Saints New Orleans Saints Tampa Bay Buccaneers 35 28 -1.5 New Orleans Saints New Orleans Saints 0.74 TRUE 0.412727272727273 24.6666666666667 22.6666666666667 29.3333333333333 30.3333333333333
2689 2012 7 Houston Texans Baltimore Ravens Houston Texans Baltimore Ravens 43 13 -6.5 Houston Texans Houston Texans 0.54 TRUE 0.030909090909091 30.8571428571429 18.2857142857143 24.8571428571429 23
2692 2012 7 New England Patriots New York Jets New England Patriots New York Jets 29 26 -11 New England Patriots New England Patriots 0.66 FALSE -0.350909090909091 31 23.2857142857143 22.7142857142857 24.2857142857143
2695 2012 7 Cincinnati Bengals Pittsburgh Steelers Pittsburgh Steelers Cincinnati Bengals 24 17 -1.5 Pittsburgh Steelers Pittsburgh Steelers 0.65 TRUE 0.240909090909091 23.7142857142857 26.7142857142857 23.3333333333333 22
2698 2012 7 St. Louis Rams Green Bay Packers Green Bay Packers St. Louis Rams 30 20 -5 Green Bay Packers Green Bay Packers 0.79 TRUE 0.508181818181818 18.5714285714286 20.1428571428571 26.2857142857143 22.1428571428571
2701 2012 7 Indianapolis Colts Cleveland Browns Indianapolis Colts Cleveland Browns 17 13 -1 Indianapolis Colts Indianapolis Colts 0.63 TRUE 0.202727272727273 19.5 26.3333333333333 21 25.7142857142857
2704 2012 7 Buffalo Bills Tennessee Titans Tennessee Titans Buffalo Bills 35 34 -4.5 Buffalo Bills Buffalo Bills 0.64 FALSE -0.312727272727273 24.4285714285714 32.4285714285714 21.2857142857143 34
2707 2012 7 New York Giants Washington Redskins New York Giants Washington Redskins 27 23 -6 New York Giants New York Giants 0.51 FALSE -0.0645454545454546 29.2857142857143 19.5714285714286 28.7142857142857 28.5714285714286
2710 2012 7 Minnesota Vikings Arizona Cardinals Minnesota Vikings Arizona Cardinals 21 14 -7 Minnesota Vikings Arizona Cardinals 0.51 TRUE -0.0263636363636363 23.8571428571429 18.7142857142857 17.7142857142857 16.8571428571429
2713 2012 7 Chicago Bears Detroit Lions Chicago Bears Detroit Lions 13 7 -6.5 Chicago Bears Chicago Bears 0.56 FALSE -0.16 27 13 22.1666666666667 25
2716 2012 8 Minnesota Vikings Tampa Bay Buccaneers Tampa Bay Buccaneers Minnesota Vikings 36 17 -5.5 Minnesota Vikings Minnesota Vikings 0.52 FALSE -0.0836363636363636 23 20.875 26.2857142857143 21.8571428571429
2719 2012 8 New York Jets Miami Dolphins Miami Dolphins New York Jets 30 9 -1 New York Jets New York Jets 0.57 FALSE -0.179090909090909 21 25 21.4285714285714 18
2722 2012 8 Detroit Lions Seattle Seahawks Detroit Lions Seattle Seahawks 28 24 -2.5 Detroit Lions Detroit Lions 0.52 TRUE -0.00727272727272721 23 24.8571428571429 17.5 16.75
2725 2012 8 Dallas Cowboys New York Giants New York Giants Dallas Cowboys 29 24 -3 New York Giants New York Giants 0.74 TRUE 0.412727272727273 19.5714285714286 23.1428571428571 29.25 20.125
2728 2012 8 Denver Broncos New Orleans Saints Denver Broncos New Orleans Saints 34 14 -6 Denver Broncos New Orleans Saints 0.61 FALSE -0.255454545454545 29.1428571428571 21.7142857142857 27.1428571428571 30.8571428571429
2731 2012 8 Tennessee Titans Indianapolis Colts Indianapolis Colts Tennessee Titans 19 13 -3.5 Tennessee Titans Indianapolis Colts 0.51 TRUE -0.0263636363636363 20.25 32.125 19.4285714285714 24.4285714285714
2734 2012 8 Chicago Bears Carolina Panthers Chicago Bears Carolina Panthers 23 22 -7 Chicago Bears Chicago Bears 0.6 FALSE -0.236363636363636 26.4285714285714 14.2857142857143 18.2857142857143 23.8571428571429
2737 2012 8 Pittsburgh Steelers Washington Redskins Pittsburgh Steelers Washington Redskins 27 12 -4.5 Pittsburgh Steelers Washington Redskins 0.58 FALSE -0.198181818181818 23.8571428571429 20.5714285714286 26.625 28.375
2740 2012 8 Kansas City Chiefs Oakland Raiders Oakland Raiders Kansas City Chiefs 26 16 -1 Kansas City Chiefs Oakland Raiders 0.61 TRUE 0.164545454545455 17.1428571428571 29.8571428571429 19.8571428571429 26.7142857142857
2743 2012 8 Philadelphia Eagles Atlanta Falcons Atlanta Falcons Philadelphia Eagles 30 17 -3 Philadelphia Eagles Atlanta Falcons 0.57 TRUE 0.0881818181818181 17.1428571428571 22.1428571428571 28.7142857142857 18.5714285714286
2746 2012 8 Green Bay Packers Jacksonville Jaguars Green Bay Packers Jacksonville Jaguars 24 15 -15.5 Green Bay Packers Green Bay Packers 0.72 FALSE -0.465454545454545 26 21.25 14.7142857142857 26.8571428571429
2749 2012 8 St. Louis Rams New England Patriots New England Patriots St. Louis Rams 45 7 -7 New England Patriots New England Patriots 0.76 TRUE 0.450909090909091 17.125 23.25 32.75 21.25
2752 2012 8 Cleveland Browns San Diego Chargers Cleveland Browns San Diego Chargers 7 6 -3 San Diego Chargers San Diego Chargers 0.71 FALSE -0.446363636363636 19.25 23.25 22 20.5714285714286
2755 2012 8 Arizona Cardinals San Francisco 49ers San Francisco 49ers Arizona Cardinals 24 3 -7 San Francisco 49ers San Francisco 49ers 0.62 TRUE 0.183636363636364 15.875 17.75 23.625 12.875
2758 2012 9 San Diego Chargers Kansas City Chiefs San Diego Chargers Kansas City Chiefs 31 13 -7 San Diego Chargers San Diego Chargers 0.64 TRUE 0.221818181818182 23.125 19.625 16.625 30
2761 2012 9 Cincinnati Bengals Denver Broncos Denver Broncos Cincinnati Bengals 31 23 -5 Denver Broncos Denver Broncos 0.69 TRUE 0.317272727272727 23.625 27.25 29.375 21.875
2764 2012 9 Washington Redskins Carolina Panthers Carolina Panthers Washington Redskins 21 13 -3 Washington Redskins Washington Redskins 0.68 FALSE -0.389090909090909 25.1111111111111 27.5555555555556 18.625 22.5
2767 2012 9 Indianapolis Colts Miami Dolphins Indianapolis Colts Miami Dolphins 23 20 -2 Miami Dolphins Indianapolis Colts 0.51 TRUE -0.0263636363636363 19.875 23.875 21.25 18.625
2770 2012 9 Houston Texans Buffalo Bills Houston Texans Buffalo Bills 21 9 -11 Houston Texans Houston Texans 0.83 TRUE 0.584545454545454 29.625 17.125 22.5 31
2773 2012 9 Tennessee Titans Chicago Bears Chicago Bears Tennessee Titans 51 20 -5 Chicago Bears Chicago Bears 0.77 TRUE 0.47 20.2222222222222 34.2222222222222 29.5 15
2776 2012 9 Jacksonville Jaguars Detroit Lions Detroit Lions Jacksonville Jaguars 31 14 -6 Detroit Lions Detroit Lions 0.78 TRUE 0.489090909090909 14.625 27.375 24 23.5
2779 2012 9 Atlanta Falcons Dallas Cowboys Atlanta Falcons Dallas Cowboys 19 13 -4 Atlanta Falcons Atlanta Falcons 0.57 TRUE 0.0881818181818181 27.5 17.875 18.75 22.625
2782 2012 9 Oakland Raiders Tampa Bay Buccaneers Tampa Bay Buccaneers Oakland Raiders 42 32 -1.5 Oakland Raiders Tampa Bay Buccaneers 0.64 TRUE 0.221818181818182 21.375 28.625 28.25 23.125
2785 2012 9 Cleveland Browns Baltimore Ravens Baltimore Ravens Cleveland Browns 25 15 -3.5 Baltimore Ravens Baltimore Ravens 0.75 TRUE 0.431818181818182 18.7777777777778 23.4444444444444 24.875 22
2788 2012 9 Seattle Seahawks Minnesota Vikings Seattle Seahawks Minnesota Vikings 30 20 -4.5 Seattle Seahawks Seattle Seahawks 0.66 TRUE 0.26 18.8888888888889 17.1111111111111 22.6666666666667 21.8888888888889
2791 2012 9 Green Bay Packers Arizona Cardinals Green Bay Packers Arizona Cardinals 31 17 -10.5 Green Bay Packers Green Bay Packers 0.83 TRUE 0.584545454545454 26.5555555555556 20.7777777777778 16 19.2222222222222
2794 2012 9 New York Giants Pittsburgh Steelers Pittsburgh Steelers New York Giants 24 20 -3.5 New York Giants New York Giants 0.55 FALSE -0.140909090909091 28.2222222222222 20.5555555555556 23.875 20.5
2797 2012 9 New Orleans Saints Philadelphia Eagles New Orleans Saints Philadelphia Eagles 28 13 -3 New Orleans Saints New Orleans Saints 0.59 TRUE 0.126363636363636 27.25 28.625 16.625 22.875
2800 2012 10 Jacksonville Jaguars Indianapolis Colts Indianapolis Colts Jacksonville Jaguars 27 10 -3 Indianapolis Colts Indianapolis Colts 0.79 TRUE 0.508181818181818 14.1111111111111 27.3333333333333 20.6666666666667 22.3333333333333
2803 2012 10 Chicago Bears Houston Texans Houston Texans Chicago Bears 13 6 -1 Chicago Bears Houston Texans 0.54 TRUE 0.030909090909091 26.8888888888889 14.7777777777778 27.7777777777778 15.8888888888889
2806 2012 10 Baltimore Ravens Oakland Raiders Baltimore Ravens Oakland Raiders 55 20 -7.5 Baltimore Ravens Baltimore Ravens 0.74 TRUE 0.412727272727273 28.2222222222222 21.7777777777778 21.2222222222222 31.5555555555556
2809 2012 10 New England Patriots Buffalo Bills New England Patriots Buffalo Bills 37 31 -13.5 New England Patriots New England Patriots 0.83 FALSE -0.675454545454545 33.2222222222222 22.3333333333333 23.4444444444444 31.6666666666667
2812 2012 10 Cincinnati Bengals New York Giants Cincinnati Bengals New York Giants 31 13 -4 New York Giants New York Giants 0.79 FALSE -0.599090909090909 24.4444444444444 25.6666666666667 26.7 21.6
2815 2012 10 Philadelphia Eagles Dallas Cowboys Dallas Cowboys Philadelphia Eagles 38 23 -2.5 Dallas Cowboys Dallas Cowboys 0.7 TRUE 0.336363636363636 17.3333333333333 24.5555555555556 20.8888888888889 22.6666666666667
2818 2012 10 San Francisco 49ers St. Louis Rams San Francisco 49ers St. Louis Rams 24 24 -13.5 San Francisco 49ers San Francisco 49ers 0.77 FALSE -0.560909090909091 23.6666666666667 14.1111111111111 17.8888888888889 23.3333333333333
2821 2012 10 New Orleans Saints Atlanta Falcons New Orleans Saints Atlanta Falcons 31 27 -2 Atlanta Falcons New Orleans Saints 0.5 TRUE -0.0454545454545454 27.6666666666667 28.4444444444444 27.4444444444444 19.3333333333333
2824 2012 10 Seattle Seahawks New York Jets Seattle Seahawks New York Jets 28 7 -5.5 Seattle Seahawks Seattle Seahawks 0.59 TRUE 0.126363636363636 19.8 16.1 19.4444444444444 25.3333333333333
2827 2012 10 Tampa Bay Buccaneers San Diego Chargers Tampa Bay Buccaneers San Diego Chargers 34 24 -3 Tampa Bay Buccaneers Tampa Bay Buccaneers 0.57 TRUE 0.0881818181818181 28.8888888888889 23.2222222222222 23.2222222222222 21.2222222222222
2830 2012 10 Carolina Panthers Denver Broncos Denver Broncos Carolina Panthers 36 14 -3.5 Denver Broncos Denver Broncos 0.77 TRUE 0.47 18.1111111111111 24 30.1111111111111 21
2833 2012 10 Minnesota Vikings Detroit Lions Minnesota Vikings Detroit Lions 34 24 -3 Detroit Lions Detroit Lions 0.74 FALSE -0.503636363636364 23.8 22.1 24 24.6666666666667
2836 2012 10 Miami Dolphins Tennessee Titans Tennessee Titans Miami Dolphins 37 3 -6.5 Miami Dolphins Miami Dolphins 0.67 FALSE -0.37 19.2222222222222 20.6666666666667 21.9 31.1
2839 2012 10 Pittsburgh Steelers Kansas City Chiefs Pittsburgh Steelers Kansas City Chiefs 16 13 -13 Pittsburgh Steelers Pittsburgh Steelers 0.84 FALSE -0.694545454545454 23 19.6666666666667 16.2222222222222 28.4444444444444
2842 2012 11 Buffalo Bills Miami Dolphins Buffalo Bills Miami Dolphins 19 14 -2.5 Buffalo Bills Buffalo Bills 0.69 TRUE 0.317272727272727 23 29.9 18.7 20.5
2845 2012 11 St. Louis Rams New York Jets New York Jets St. Louis Rams 27 13 -3.5 St. Louis Rams St. Louis Rams 0.65 FALSE -0.331818181818182 17.4 23.7 20.2 24.1
2848 2012 11 Carolina Panthers Tampa Bay Buccaneers Tampa Bay Buccaneers Carolina Panthers 27 21 -1 Tampa Bay Buccaneers Tampa Bay Buccaneers 0.68 TRUE 0.298181818181818 18.4 24.3 28.7 23
2851 2012 11 Dallas Cowboys Cleveland Browns Dallas Cowboys Cleveland Browns 23 20 -7 Dallas Cowboys Dallas Cowboys 0.67 FALSE -0.37 21.1 22.4 18.9 23.4
2854 2012 11 Oakland Raiders New Orleans Saints New Orleans Saints Oakland Raiders 38 17 -6 New Orleans Saints New Orleans Saints 0.8 TRUE 0.527272727272727 20.8 32.2 28.7 27.3
2857 2012 11 New England Patriots Indianapolis Colts New England Patriots Indianapolis Colts 59 24 -10 New England Patriots New England Patriots 0.57 TRUE 0.0881818181818181 35.8 22.5 21 26
2860 2012 11 Kansas City Chiefs Cincinnati Bengals Cincinnati Bengals Kansas City Chiefs 28 6 -3 Cincinnati Bengals Cincinnati Bengals 0.71 TRUE 0.355454545454545 15.2 28.4 24.8 23.7
2863 2012 11 Pittsburgh Steelers Baltimore Ravens Baltimore Ravens Pittsburgh Steelers 13 10 -3 Baltimore Ravens Baltimore Ravens 0.66 FALSE -0.350909090909091 21.7 19 26.7 20.6
2866 2012 11 Detroit Lions Green Bay Packers Green Bay Packers Detroit Lions 24 20 -3 Green Bay Packers Green Bay Packers 0.78 TRUE 0.489090909090909 23.6 24.6 26.3 20.7
2869 2012 11 Denver Broncos San Diego Chargers Denver Broncos San Diego Chargers 30 23 -7.5 Denver Broncos Denver Broncos 0.67 FALSE -0.37 30.1 21.2 23.2 22.1
2872 2012 11 Houston Texans Jacksonville Jaguars Houston Texans Jacksonville Jaguars 43 37 -15.5 Houston Texans Houston Texans 0.77 FALSE -0.560909090909091 29.3 18 16.4 28.9
2875 2012 11 Atlanta Falcons Arizona Cardinals Atlanta Falcons Arizona Cardinals 23 19 -9.5 Atlanta Falcons Atlanta Falcons 0.79 FALSE -0.599090909090909 27 19.3 16.3 19.6
2878 2012 11 Washington Redskins Philadelphia Eagles Washington Redskins Philadelphia Eagles 31 6 -3.5 Washington Redskins Washington Redskins 0.65 TRUE 0.240909090909091 25.7 25.4 16.2 25.2
2881 2012 11 San Francisco 49ers Chicago Bears San Francisco 49ers Chicago Bears 32 7 -3.5 San Francisco 49ers San Francisco 49ers 0.5 TRUE -0.0454545454545454 24.5 13.4 24.9 16.5
2884 2012 12 Dallas Cowboys Washington Redskins Washington Redskins Dallas Cowboys 38 31 -3.5 Dallas Cowboys Washington Redskins 0.54 TRUE 0.030909090909091 22 23.8181818181818 26.8181818181818 25.9090909090909
2887 2012 12 Detroit Lions Houston Texans Houston Texans Detroit Lions 34 31 -3.5 Houston Texans Houston Texans 0.71 FALSE -0.446363636363636 24.2727272727273 25.4545454545455 29.7272727272727 19.1818181818182
2890 2012 12 New York Jets New England Patriots New England Patriots New York Jets 49 19 -7 New England Patriots New England Patriots 0.77 TRUE 0.47 20.0909090909091 26.3636363636364 37 22.1818181818182
2893 2012 12 Indianapolis Colts Buffalo Bills Indianapolis Colts Buffalo Bills 20 13 -2 Indianapolis Colts Indianapolis Colts 0.7 TRUE 0.336363636363636 20.9090909090909 24.8181818181818 22.0909090909091 29
2896 2012 12 Kansas City Chiefs Denver Broncos Denver Broncos Kansas City Chiefs 17 9 -10.5 Denver Broncos Denver Broncos 0.8 FALSE -0.618181818181818 14.6363636363636 27.3636363636364 28.9090909090909 20.0909090909091
2899 2012 12 Cleveland Browns Pittsburgh Steelers Cleveland Browns Pittsburgh Steelers 20 14 -1 Pittsburgh Steelers Pittsburgh Steelers 0.68 FALSE -0.389090909090909 19 22.5454545454545 21 19.0909090909091
2902 2012 12 Arizona Cardinals St. Louis Rams St. Louis Rams Arizona Cardinals 31 17 -1.5 Arizona Cardinals St. Louis Rams 0.51 TRUE -0.0263636363636363 16.3636363636364 20.6363636363636 18.6363636363636 23.0909090909091
2905 2012 12 San Diego Chargers Baltimore Ravens Baltimore Ravens San Diego Chargers 16 13 -1 Baltimore Ravens Baltimore Ravens 0.65 TRUE 0.240909090909091 22.2727272727273 21.5454545454545 25.7272727272727 19.9090909090909
2908 2012 12 Tampa Bay Buccaneers Atlanta Falcons Atlanta Falcons Tampa Bay Buccaneers 24 23 -1 Atlanta Falcons Atlanta Falcons 0.66 FALSE -0.350909090909091 28.1818181818182 23.0909090909091 26.7272727272727 19.6363636363636
2911 2012 12 Miami Dolphins Seattle Seahawks Miami Dolphins Seattle Seahawks 24 21 -3 Seattle Seahawks Seattle Seahawks 0.67 FALSE -0.37 19.1818181818182 20.5454545454545 19.9090909090909 16.8181818181818
2914 2012 12 Chicago Bears Minnesota Vikings Chicago Bears Minnesota Vikings 28 10 -6.5 Chicago Bears Chicago Bears 0.57 TRUE 0.0881818181818181 25.1818181818182 15.9090909090909 22.5454545454545 22.6363636363636
2917 2012 12 New Orleans Saints San Francisco 49ers San Francisco 49ers New Orleans Saints 31 21 -2.5 San Francisco 49ers New Orleans Saints 0.66 FALSE -0.350909090909091 28 27.6363636363636 25.0909090909091 14.0909090909091
2920 2012 12 Cincinnati Bengals Oakland Raiders Cincinnati Bengals Oakland Raiders 34 10 -7.5 Cincinnati Bengals Cincinnati Bengals 0.62 TRUE 0.183636363636364 25.6363636363636 22.4545454545455 19.8181818181818 32.3636363636364
2923 2012 12 New York Giants Green Bay Packers New York Giants Green Bay Packers 38 10 -3 New York Giants Green Bay Packers 0.64 FALSE -0.312727272727273 27.7272727272727 20.5454545454545 24.8181818181818 22.2727272727273
2926 2012 12 Jacksonville Jaguars Tennessee Titans Jacksonville Jaguars Tennessee Titans 24 19 -3.5 Tennessee Titans Tennessee Titans 0.59 FALSE -0.217272727272727 17.0909090909091 28 21.6363636363636 30.4545454545455
2929 2012 12 Philadelphia Eagles Carolina Panthers Carolina Panthers Philadelphia Eagles 30 22 -3 Carolina Panthers Carolina Panthers 0.71 TRUE 0.355454545454545 16.7272727272727 25.6363636363636 19.4545454545455 24.0909090909091
2932 2012 13 Atlanta Falcons New Orleans Saints Atlanta Falcons New Orleans Saints 23 13 -3.5 Atlanta Falcons New Orleans Saints 0.54 FALSE -0.121818181818182 26.4166666666667 19.0833333333333 26.75 27.25
2935 2012 13 Baltimore Ravens Pittsburgh Steelers Pittsburgh Steelers Baltimore Ravens 23 20 -7 Baltimore Ravens Baltimore Ravens 0.66 FALSE -0.350909090909091 25.25 20.1666666666667 21.1666666666667 19.1666666666667
2938 2012 13 Miami Dolphins New England Patriots New England Patriots Miami Dolphins 23 16 -7.5 New England Patriots New England Patriots 0.81 FALSE -0.637272727272727 18.9166666666667 20.75 35.8333333333333 21.6666666666667
2941 2012 13 Dallas Cowboys Philadelphia Eagles Dallas Cowboys Philadelphia Eagles 38 33 -10.5 Dallas Cowboys Dallas Cowboys 0.6 FALSE -0.236363636363636 23.3333333333333 24.5833333333333 18.0833333333333 26.6666666666667
2944 2012 13 Denver Broncos Tampa Bay Buccaneers Denver Broncos Tampa Bay Buccaneers 31 23 -8 Denver Broncos Denver Broncos 0.56 FALSE -0.16 29.0833333333333 20.3333333333333 27.75 23.75
2947 2012 13 Oakland Raiders Cleveland Browns Cleveland Browns Oakland Raiders 20 17 -2.5 Cleveland Browns Cleveland Browns 0.54 TRUE 0.030909090909091 19.5833333333333 31.3333333333333 19.0833333333333 22.0833333333333
2950 2012 13 St. Louis Rams San Francisco 49ers St. Louis Rams San Francisco 49ers 16 13 -7.5 San Francisco 49ers San Francisco 49ers 0.76 FALSE -0.541818181818182 18.4166666666667 22.25 24.0833333333333 14.25
2953 2012 13 San Diego Chargers Cincinnati Bengals Cincinnati Bengals San Diego Chargers 20 13 0 PickEm Cincinnati Bengals 0.69 TRUE 0.317272727272727 21.5 21.4166666666667 25.1666666666667 21.6666666666667
2956 2012 13 Chicago Bears Seattle Seahawks Seattle Seahawks Chicago Bears 23 17 -3 Chicago Bears Chicago Bears 0.66 FALSE -0.350909090909091 24.5 16.5 20.1666666666667 16.8333333333333
2959 2012 13 Tennessee Titans Houston Texans Houston Texans Tennessee Titans 24 10 -7 Houston Texans Houston Texans 0.81 TRUE 0.546363636363637 20.6666666666667 29.9166666666667 29.25 18.4166666666667
2962 2012 13 Green Bay Packers Minnesota Vikings Green Bay Packers Minnesota Vikings 23 14 -7.5 Green Bay Packers Green Bay Packers 0.61 TRUE 0.164545454545455 24.6666666666667 21.5833333333333 21.8333333333333 22.6666666666667
2965 2012 13 New York Jets Arizona Cardinals New York Jets Arizona Cardinals 7 6 -6.5 New York Jets New York Jets 0.62 FALSE -0.274545454545455 19 24.6666666666667 15.5 19.5
2968 2012 13 Detroit Lions Indianapolis Colts Indianapolis Colts Detroit Lions 35 33 -7 Detroit Lions Indianapolis Colts 0.62 TRUE 0.183636363636364 25 26.25 22.0833333333333 25.5
2971 2012 13 Buffalo Bills Jacksonville Jaguars Buffalo Bills Jacksonville Jaguars 34 18 -6 Buffalo Bills Jacksonville Jaguars 0.53 FALSE -0.102727272727273 23.0833333333333 28.0833333333333 17.1666666666667 28.5
2974 2012 13 Kansas City Chiefs Carolina Panthers Kansas City Chiefs Carolina Panthers 27 21 -5.5 Carolina Panthers Carolina Panthers 0.68 FALSE -0.389090909090909 15.6666666666667 26.8333333333333 19.5833333333333 24.3333333333333
2977 2012 13 Washington Redskins New York Giants Washington Redskins New York Giants 17 16 -3 New York Giants New York Giants 0.6 FALSE -0.236363636363636 26 25.0833333333333 26.75 20.25
2980 2012 14 Oakland Raiders Denver Broncos Denver Broncos Oakland Raiders 26 13 -10 Denver Broncos Denver Broncos 0.65 TRUE 0.240909090909091 19.0769230769231 30.9230769230769 28.8461538461538 19.7692307692308
2983 2012 14 Cleveland Browns Kansas City Chiefs Cleveland Browns Kansas City Chiefs 30 7 -7 Cleveland Browns Cleveland Browns 0.61 TRUE 0.164545454545455 19.9230769230769 20.9230769230769 15 27.0769230769231
2986 2012 14 San Francisco 49ers Miami Dolphins San Francisco 49ers Miami Dolphins 27 13 -11 San Francisco 49ers San Francisco 49ers 0.64 TRUE 0.221818181818182 24.3076923076923 14.1538461538462 18.4615384615385 21.2307692307692
2989 2012 14 Pittsburgh Steelers San Diego Chargers San Diego Chargers Pittsburgh Steelers 34 24 -7.5 Pittsburgh Steelers Pittsburgh Steelers 0.62 FALSE -0.274545454545455 21.3846153846154 20.3076923076923 22.4615384615385 21.6153846153846
2992 2012 14 Green Bay Packers Detroit Lions Green Bay Packers Detroit Lions 27 20 -6 Green Bay Packers Green Bay Packers 0.68 TRUE 0.298181818181818 24.8461538461538 21.4615384615385 24.6153846153846 26.3076923076923
2995 2012 14 Tampa Bay Buccaneers Philadelphia Eagles Philadelphia Eagles Tampa Bay Buccaneers 23 21 -7 Tampa Bay Buccaneers Tampa Bay Buccaneers 0.66 FALSE -0.350909090909091 27.2307692307692 23.6923076923077 18.4615384615385 26.2307692307692
2998 2012 14 Buffalo Bills St. Louis Rams St. Louis Rams Buffalo Bills 15 12 -3.5 Buffalo Bills Buffalo Bills 0.54 FALSE -0.121818181818182 22.2307692307692 27.0769230769231 18.1538461538462 21.4615384615385
3001 2012 14 Carolina Panthers Atlanta Falcons Carolina Panthers Atlanta Falcons 30 20 -3.5 Atlanta Falcons Atlanta Falcons 0.68 FALSE -0.389090909090909 20.3846153846154 24 25.9230769230769 19.9230769230769
3004 2012 14 Indianapolis Colts Tennessee Titans Indianapolis Colts Tennessee Titans 27 23 -3.5 Indianapolis Colts Indianapolis Colts 0.7 TRUE 0.336363636363636 22.4615384615385 25.3076923076923 20.8461538461538 29.6923076923077
3007 2012 14 Jacksonville Jaguars New York Jets New York Jets Jacksonville Jaguars 17 10 -3 New York Jets New York Jets 0.58 TRUE 0.107272727272727 16.6153846153846 27.6153846153846 18.8461538461538 23.5384615384615
3010 2012 14 New York Giants New Orleans Saints New York Giants New Orleans Saints 52 27 -4.5 New York Giants New York Giants 0.52 TRUE -0.00727272727272721 28.6923076923077 20.7692307692308 26.7692307692308 29.1538461538462
3013 2012 14 Seattle Seahawks Arizona Cardinals Seattle Seahawks Arizona Cardinals 58 0 -10.5 Seattle Seahawks Seattle Seahawks 0.63 TRUE 0.202727272727273 23.0769230769231 15.5384615384615 14.3076923076923 22.4615384615385
3016 2012 14 Washington Redskins Baltimore Ravens Washington Redskins Baltimore Ravens 31 28 -2 Washington Redskins Baltimore Ravens 0.51 FALSE -0.0645454545454546 26.3846153846154 25.3076923076923 25.4615384615385 21
3019 2012 14 Cincinnati Bengals Dallas Cowboys Dallas Cowboys Cincinnati Bengals 20 19 -3 Cincinnati Bengals Dallas Cowboys 0.5 TRUE -0.0454545454545454 24.6923076923077 21.5384615384615 23.0769230769231 24.1538461538462
3022 2012 14 Minnesota Vikings Chicago Bears Minnesota Vikings Chicago Bears 21 14 -1.5 Chicago Bears Chicago Bears 0.58 FALSE -0.198181818181818 21.7692307692308 22 23.6923076923077 16.8461538461538
3025 2012 14 New England Patriots Houston Texans New England Patriots Houston Texans 42 14 -5.5 New England Patriots New England Patriots 0.5 TRUE -0.0454545454545454 36.3076923076923 21.0769230769231 28.0769230769231 20.2307692307692
3028 2012 15 Philadelphia Eagles Cincinnati Bengals Cincinnati Bengals Philadelphia Eagles 34 13 -5 Cincinnati Bengals Cincinnati Bengals 0.63 TRUE 0.202727272727273 18.0714285714286 26.7857142857143 25.3571428571429 20.9285714285714
3031 2012 15 Buffalo Bills Seattle Seahawks Seattle Seahawks Buffalo Bills 50 17 -4.5 Seattle Seahawks Seattle Seahawks 0.65 TRUE 0.240909090909091 21.8571428571429 28.7142857142857 25 15.6428571428571
3034 2012 15 Atlanta Falcons New York Giants Atlanta Falcons New York Giants 34 0 -1 Atlanta Falcons New York Giants 0.65 FALSE -0.331818181818182 26.5 18.5 26.6428571428571 21.7142857142857
3037 2012 15 Miami Dolphins Jacksonville Jaguars Miami Dolphins Jacksonville Jaguars 24 3 -7.5 Miami Dolphins Jacksonville Jaguars 0.51 FALSE -0.0645454545454546 18.8571428571429 19.9285714285714 15.6428571428571 27.3571428571429
3040 2012 15 Arizona Cardinals Detroit Lions Arizona Cardinals Detroit Lions 38 10 -5.5 Detroit Lions Detroit Lions 0.78 FALSE -0.58 16 21.5714285714286 23.5714285714286 27.1428571428571
3043 2012 15 New Orleans Saints Tampa Bay Buccaneers New Orleans Saints Tampa Bay Buccaneers 41 0 -3.5 New Orleans Saints New Orleans Saints 0.52 TRUE -0.00727272727272721 27.7857142857143 27.0714285714286 25.2857142857143 24.9285714285714
3046 2012 15 Dallas Cowboys Pittsburgh Steelers Dallas Cowboys Pittsburgh Steelers 27 24 -2 Pittsburgh Steelers Pittsburgh Steelers 0.63 FALSE -0.293636363636364 23.3571428571429 24.1428571428571 21.5714285714286 20.7857142857143
3049 2012 15 St. Louis Rams Minnesota Vikings Minnesota Vikings St. Louis Rams 36 22 -2.5 St. Louis Rams Minnesota Vikings 0.55 TRUE 0.05 18.4285714285714 22.5 22.7857142857143 22
3052 2012 15 Baltimore Ravens Denver Broncos Denver Broncos Baltimore Ravens 34 17 -3 Denver Broncos Denver Broncos 0.65 TRUE 0.240909090909091 24.8571428571429 21.9285714285714 29.2142857142857 19.5714285714286
3055 2012 15 Cleveland Browns Washington Redskins Washington Redskins Cleveland Browns 38 21 -4 Cleveland Browns Washington Redskins 0.56 TRUE 0.0690909090909093 20 22.1428571428571 27.2142857142857 25
3058 2012 15 Houston Texans Indianapolis Colts Houston Texans Indianapolis Colts 29 17 -10.5 Houston Texans Indianapolis Colts 0.51 FALSE -0.0645454545454546 28.1428571428571 20 22.0714285714286 25.5714285714286
3061 2012 15 New England Patriots San Francisco 49ers San Francisco 49ers New England Patriots 41 34 -4 New England Patriots New England Patriots 0.68 FALSE -0.389090909090909 36.1428571428571 22.5 25.5 15.5714285714286
3064 2012 15 Chicago Bears Green Bay Packers Green Bay Packers Chicago Bears 21 13 -3 Green Bay Packers Green Bay Packers 0.75 TRUE 0.431818181818182 22.9285714285714 17.1428571428571 24.5714285714286 20.8571428571429
3067 2012 15 Oakland Raiders Kansas City Chiefs Oakland Raiders Kansas City Chiefs 15 0 -4 Oakland Raiders Oakland Raiders 0.62 TRUE 0.183636363636364 18.7857142857143 28.7142857142857 13.9285714285714 26.2142857142857
3070 2012 15 San Diego Chargers Carolina Panthers Carolina Panthers San Diego Chargers 31 7 -3 San Diego Chargers Carolina Panthers 0.57 TRUE 0.0881818181818181 21.3571428571429 22.2857142857143 21.1428571428571 22.7857142857143
3073 2012 15 Tennessee Titans New York Jets Tennessee Titans New York Jets 14 10 -1 New York Jets New York Jets 0.54 FALSE -0.121818181818182 20.3571428571429 28.2857142857143 18.2142857142857 22.8571428571429
3076 2012 16 Detroit Lions Atlanta Falcons Atlanta Falcons Detroit Lions 31 18 -3.5 Atlanta Falcons Atlanta Falcons 0.74 TRUE 0.412727272727273 23.2 27.4 26.8 18.4666666666667
3079 2012 16 Arizona Cardinals Chicago Bears Chicago Bears Arizona Cardinals 28 13 -7 Chicago Bears Chicago Bears 0.72 TRUE 0.374545454545455 15.8 22 23.2666666666667 16.8666666666667
3082 2012 16 Baltimore Ravens New York Giants Baltimore Ravens New York Giants 33 14 -2.5 New York Giants New York Giants 0.72 FALSE -0.465454545454545 25.4 21.4 25.8 22.4666666666667
3085 2012 16 Green Bay Packers Tennessee Titans Green Bay Packers Tennessee Titans 55 7 -10.5 Green Bay Packers Green Bay Packers 0.78 TRUE 0.489090909090909 26.6 19.9333333333333 19.4666666666667 30.0666666666667
3088 2012 16 Denver Broncos Cleveland Browns Denver Broncos Cleveland Browns 34 12 -11 Denver Broncos Denver Broncos 0.65 TRUE 0.240909090909091 29.5333333333333 19.0666666666667 19.4666666666667 22.9333333333333
3091 2012 16 Philadelphia Eagles Washington Redskins Washington Redskins Philadelphia Eagles 27 20 -4.5 Washington Redskins Washington Redskins 0.72 TRUE 0.374545454545455 18.2 26.8 27.2 24.6666666666667
3094 2012 16 Jacksonville Jaguars New England Patriots New England Patriots Jacksonville Jaguars 23 16 -14 New England Patriots New England Patriots 0.82 FALSE -0.656363636363636 15.6666666666667 27.0666666666667 35.2666666666667 22.0666666666667
3097 2012 16 Carolina Panthers Oakland Raiders Carolina Panthers Oakland Raiders 17 6 -9 Carolina Panthers Carolina Panthers 0.72 TRUE 0.374545454545455 20.8666666666667 21.6666666666667 17.9333333333333 27.9333333333333
3100 2012 16 New York Jets San Diego Chargers San Diego Chargers New York Jets 27 17 -3 New York Jets San Diego Chargers 0.73 TRUE 0.393636363636364 18.1333333333333 23.1333333333333 21.7333333333333 21.9333333333333
3103 2012 16 Seattle Seahawks San Francisco 49ers Seattle Seahawks San Francisco 49ers 42 13 -2.5 Seattle Seahawks San Francisco 49ers 0.52 FALSE -0.0836363636363636 26.1333333333333 15.4666666666667 24.6666666666667 17.3333333333333
3106 2012 16 Dallas Cowboys New Orleans Saints New Orleans Saints Dallas Cowboys 34 31 -3 Dallas Cowboys New Orleans Saints 0.51 TRUE -0.0263636363636363 23.8666666666667 24.8 28.2 27.3333333333333
3109 2012 16 Miami Dolphins Buffalo Bills Miami Dolphins Buffalo Bills 24 10 -4.5 Miami Dolphins Miami Dolphins 0.53 TRUE 0.0118181818181819 19.2 19.2666666666667 21.0666666666667 28.4
3112 2012 16 Houston Texans Minnesota Vikings Minnesota Vikings Houston Texans 23 6 -7.5 Houston Texans Houston Texans 0.54 FALSE -0.121818181818182 26.6666666666667 20.2 22.8 20.9333333333333
3115 2012 16 Pittsburgh Steelers Cincinnati Bengals Cincinnati Bengals Pittsburgh Steelers 13 10 -3 Pittsburgh Steelers Cincinnati Bengals 0.5 TRUE -0.0454545454545454 20.8 20.2666666666667 24.5333333333333 20.2
3118 2012 16 Tampa Bay Buccaneers St. Louis Rams St. Louis Rams Tampa Bay Buccaneers 28 13 -3 Tampa Bay Buccaneers Tampa Bay Buccaneers 0.57 FALSE -0.179090909090909 24.4666666666667 25.1333333333333 19.0666666666667 21.8666666666667
3121 2012 16 Kansas City Chiefs Indianapolis Colts Indianapolis Colts Kansas City Chiefs 20 13 -5 Indianapolis Colts Indianapolis Colts 0.83 TRUE 0.584545454545454 13.8666666666667 25.8 21.9333333333333 24.7333333333333
3124 2012 17 San Diego Chargers Oakland Raiders San Diego Chargers Oakland Raiders 24 21 -8.5 San Diego Chargers San Diego Chargers 0.62 FALSE -0.274545454545455 21.875 21.875 18.125 27.6875
3127 2012 17 Seattle Seahawks St. Louis Rams Seattle Seahawks St. Louis Rams 20 13 -11.5 Seattle Seahawks Seattle Seahawks 0.65 FALSE -0.331818181818182 25.75 15.3125 18.6875 21.75
3130 2012 17 Denver Broncos Kansas City Chiefs Denver Broncos Kansas City Chiefs 38 3 -17 Denver Broncos Denver Broncos 0.58 TRUE 0.107272727272727 30.0625 18.0625 13.1875 26.5625
3133 2012 17 New England Patriots Miami Dolphins New England Patriots Miami Dolphins 28 0 -11.5 New England Patriots New England Patriots 0.75 TRUE 0.431818181818182 34.8125 20.6875 18 19.8125
3136 2012 17 New York Giants Philadelphia Eagles New York Giants Philadelphia Eagles 42 7 -6.5 New York Giants New York Giants 0.61 TRUE 0.164545454545455 26.8125 21.5 17.5 27.75
3139 2012 17 Indianapolis Colts Houston Texans Indianapolis Colts Houston Texans 28 16 -6.5 Houston Texans Indianapolis Colts 0.57 TRUE 0.0881818181818181 22.3125 24.1875 26 20.6875
3142 2012 17 Tennessee Titans Jacksonville Jaguars Tennessee Titans Jacksonville Jaguars 38 20 -6 Tennessee Titans Tennessee Titans 0.63 TRUE 0.202727272727273 20.625 29.4375 15.9375 27.75
3145 2012 17 San Francisco 49ers Arizona Cardinals San Francisco 49ers Arizona Cardinals 27 13 -16.5 San Francisco 49ers San Francisco 49ers 0.58 FALSE -0.198181818181818 24.8125 17.0625 15.625 22.3125
3148 2012 17 New Orleans Saints Carolina Panthers Carolina Panthers New Orleans Saints 44 38 -4.5 New Orleans Saints New Orleans Saints 0.75 FALSE -0.522727272727273 28.8125 28.375 22.3125 22.6875
3151 2012 17 Minnesota Vikings Green Bay Packers Minnesota Vikings Green Bay Packers 37 34 -3 Green Bay Packers Green Bay Packers 0.62 FALSE -0.274545454545455 23.6875 21.75 27.0625 21
3154 2012 17 Washington Redskins Dallas Cowboys Washington Redskins Dallas Cowboys 28 18 -3 Washington Redskins Washington Redskins 0.55 TRUE 0.05 27.25 24.25 23.5 25
3157 2012 17 Detroit Lions Chicago Bears Chicago Bears Detroit Lions 26 24 -3 Chicago Bears Chicago Bears 0.65 FALSE -0.331818181818182 23.25 27.3125 23.4375 17.3125
3160 2012 17 Pittsburgh Steelers Cleveland Browns Pittsburgh Steelers Cleveland Browns 24 10 -10 Pittsburgh Steelers Pittsburgh Steelers 0.6 TRUE 0.145454545454546 21 19.625 18.875 23
3163 2012 17 Buffalo Bills New York Jets Buffalo Bills New York Jets 28 9 -3.5 Buffalo Bills Buffalo Bills 0.64 TRUE 0.221818181818182 21.5 27.1875 17.5625 23.4375
3166 2012 17 Cincinnati Bengals Baltimore Ravens Cincinnati Bengals Baltimore Ravens 23 17 -5.5 Cincinnati Bengals Cincinnati Bengals 0.6 TRUE 0.145454545454546 24.4375 20 24.875 21.5
3169 2012 17 Atlanta Falcons Tampa Bay Buccaneers Tampa Bay Buccaneers Atlanta Falcons 22 17 -3 Atlanta Falcons Atlanta Falcons 0.69 FALSE -0.408181818181818 26.1875 18.6875 24.3125 24.625
3172 2013 1 Denver Broncos Baltimore Ravens Denver Broncos Baltimore Ravens 49 27 -7.5 Denver Broncos Baltimore Ravens 0.51 FALSE -0.0645454545454546 49 27 27 49
3175 2013 1 Carolina Panthers Seattle Seahawks Seattle Seahawks Carolina Panthers 12 7 -3 Seattle Seahawks Seattle Seahawks 0.67 TRUE 0.279090909090909 7 12 12 7
3178 2013 1 St. Louis Rams Arizona Cardinals St. Louis Rams Arizona Cardinals 27 24 -4 St. Louis Rams Arizona Cardinals 0.54 TRUE 0.030909090909091 27 24 24 27
3181 2013 1 San Francisco 49ers Green Bay Packers San Francisco 49ers Green Bay Packers 34 28 -5.5 San Francisco 49ers Green Bay Packers 0.53 FALSE -0.102727272727273 34 28 28 34
3184 2013 1 Detroit Lions Minnesota Vikings Detroit Lions Minnesota Vikings 34 24 -4 Detroit Lions Detroit Lions 0.56 TRUE 0.0690909090909093 34 24 24 34
3187 2013 1 New Orleans Saints Atlanta Falcons New Orleans Saints Atlanta Falcons 23 17 -3.5 New Orleans Saints Atlanta Falcons 0.54 FALSE -0.121818181818182 23 17 17 23
3190 2013 1 Pittsburgh Steelers Tennessee Titans Tennessee Titans Pittsburgh Steelers 16 9 -6 Pittsburgh Steelers Tennessee Titans 0.54 TRUE 0.030909090909091 9 16 16 9
3193 2013 1 Chicago Bears Cincinnati Bengals Chicago Bears Cincinnati Bengals 24 21 -3 Chicago Bears Cincinnati Bengals 0.69 TRUE 0.317272727272727 24 21 21 24
3196 2013 1 Indianapolis Colts Oakland Raiders Indianapolis Colts Oakland Raiders 21 17 -11 Indianapolis Colts Indianapolis Colts 0.82 FALSE -0.656363636363636 21 17 17 21
3199 2013 1 Dallas Cowboys New York Giants Dallas Cowboys New York Giants 36 31 -3.5 Dallas Cowboys New York Giants 0.55 FALSE -0.140909090909091 36 31 31 36
3202 2013 1 Jacksonville Jaguars Kansas City Chiefs Kansas City Chiefs Jacksonville Jaguars 28 2 -3.5 Kansas City Chiefs Kansas City Chiefs 0.79 TRUE 0.508181818181818 2 28 28 2
3205 2013 1 Cleveland Browns Miami Dolphins Miami Dolphins Cleveland Browns 23 10 -2.5 Cleveland Browns Cleveland Browns 0.62 FALSE -0.274545454545455 10 23 23 10
3208 2013 1 New York Jets Tampa Bay Buccaneers New York Jets Tampa Bay Buccaneers 18 17 -4 Tampa Bay Buccaneers Tampa Bay Buccaneers 0.83 FALSE -0.675454545454545 18 17 17 18
3211 2013 1 Buffalo Bills New England Patriots New England Patriots Buffalo Bills 23 21 -10 New England Patriots New England Patriots 0.71 FALSE -0.446363636363636 21 23 23 21
3214 2013 1 Washington Redskins Philadelphia Eagles Philadelphia Eagles Washington Redskins 33 27 -4 Washington Redskins Washington Redskins 0.55 FALSE -0.140909090909091 27 33 33 27
3217 2013 1 San Diego Chargers Houston Texans Houston Texans San Diego Chargers 31 28 -6 Houston Texans Houston Texans 0.79 FALSE -0.599090909090909 28 31 31 28
3220 2013 2 New England Patriots New York Jets New England Patriots New York Jets 13 10 -11 New England Patriots New England Patriots 0.6 FALSE -0.236363636363636 18 15.5 14 15
3223 2013 2 Tampa Bay Buccaneers New Orleans Saints New Orleans Saints Tampa Bay Buccaneers 16 14 -3.5 New Orleans Saints New Orleans Saints 0.83 FALSE -0.675454545454545 15.5 17 19.5 15.5
3226 2013 2 Chicago Bears Minnesota Vikings Chicago Bears Minnesota Vikings 31 30 -6 Chicago Bears Chicago Bears 0.63 FALSE -0.293636363636364 27.5 25.5 27 32.5
3229 2013 2 Kansas City Chiefs Dallas Cowboys Kansas City Chiefs Dallas Cowboys 17 16 -3 Kansas City Chiefs Dallas Cowboys 0.61 TRUE 0.164545454545455 22.5 9 26 24
3232 2013 2 Arizona Cardinals Detroit Lions Arizona Cardinals Detroit Lions 25 21 -2 Detroit Lions Detroit Lions 0.65 FALSE -0.331818181818182 24.5 24 27.5 24.5
3235 2013 2 Baltimore Ravens Cleveland Browns Baltimore Ravens Cleveland Browns 14 6 -6.5 Baltimore Ravens Baltimore Ravens 0.75 TRUE 0.431818181818182 20.5 27.5 8 18.5
3238 2013 2 Atlanta Falcons St. Louis Rams Atlanta Falcons St. Louis Rams 31 24 -5 Atlanta Falcons Atlanta Falcons 0.72 TRUE 0.374545454545455 24 23.5 25.5 27.5
3241 2013 2 Houston Texans Tennessee Titans Houston Texans Tennessee Titans 30 24 -7.5 Houston Texans Houston Texans 0.67 FALSE -0.37 30.5 26 20 19.5
3244 2013 2 Green Bay Packers Washington Redskins Green Bay Packers Washington Redskins 38 20 -7 Green Bay Packers Green Bay Packers 0.62 TRUE 0.183636363636364 33 27 23.5 35.5
3247 2013 2 Indianapolis Colts Miami Dolphins Miami Dolphins Indianapolis Colts 24 20 -2 Indianapolis Colts Indianapolis Colts 0.68 FALSE -0.389090909090909 20.5 20.5 23.5 15
3250 2013 2 Buffalo Bills Carolina Panthers Buffalo Bills Carolina Panthers 24 23 -3.5 Carolina Panthers Buffalo Bills 0.5 TRUE -0.0454545454545454 22.5 23 15 18
3253 2013 2 Philadelphia Eagles San Diego Chargers San Diego Chargers Philadelphia Eagles 33 30 -7.5 Philadelphia Eagles Philadelphia Eagles 0.72 FALSE -0.465454545454545 31.5 30 30.5 30.5
3256 2013 2 Seattle Seahawks San Francisco 49ers Seattle Seahawks San Francisco 49ers 29 3 -3 Seattle Seahawks San Francisco 49ers 0.64 FALSE -0.312727272727273 20.5 5 18.5 28.5
3259 2013 2 Oakland Raiders Jacksonville Jaguars Oakland Raiders Jacksonville Jaguars 19 9 -4 Oakland Raiders Oakland Raiders 0.74 TRUE 0.412727272727273 18 15 5.5 23.5
3262 2013 2 New York Giants Denver Broncos Denver Broncos New York Giants 41 23 -3.5 Denver Broncos Denver Broncos 0.62 TRUE 0.183636363636364 27 38.5 45 25
3265 2013 2 Cincinnati Bengals Pittsburgh Steelers Cincinnati Bengals Pittsburgh Steelers 20 10 -6.5 Cincinnati Bengals Cincinnati Bengals 0.63 TRUE 0.202727272727273 20.5 17 9.5 18
3268 2013 3 Philadelphia Eagles Kansas City Chiefs Kansas City Chiefs Philadelphia Eagles 26 16 -3.5 Philadelphia Eagles Philadelphia Eagles 0.55 FALSE -0.140909090909091 26.3333333333333 28.6666666666667 23.6666666666667 11.3333333333333
3271 2013 3 New England Patriots Tampa Bay Buccaneers New England Patriots Tampa Bay Buccaneers 23 3 -7 New England Patriots New England Patriots 0.52 TRUE -0.00727272727272721 19.6666666666667 11.3333333333333 11.3333333333333 19
3274 2013 3 New Orleans Saints Arizona Cardinals New Orleans Saints Arizona Cardinals 31 7 -7.5 New Orleans Saints New Orleans Saints 0.62 TRUE 0.183636363636364 23.3333333333333 12.6666666666667 18.6666666666667 26.3333333333333
3277 2013 3 Washington Redskins Detroit Lions Detroit Lions Washington Redskins 27 20 -1 Detroit Lions Detroit Lions 0.52 TRUE -0.00727272727272721 22.3333333333333 32.6666666666667 27.3333333333333 23
3280 2013 3 Carolina Panthers New York Giants Carolina Panthers New York Giants 38 0 -2.5 New York Giants New York Giants 0.83 FALSE -0.675454545454545 22.6666666666667 12 18 38.3333333333333
3283 2013 3 Miami Dolphins Atlanta Falcons Miami Dolphins Atlanta Falcons 27 23 -2.5 Miami Dolphins Atlanta Falcons 0.72 FALSE -0.465454545454545 24.6666666666667 17.6666666666667 23.6666666666667 24.6666666666667
3286 2013 3 Tennessee Titans San Diego Chargers Tennessee Titans San Diego Chargers 20 17 -3 Tennessee Titans San Diego Chargers 0.66 TRUE 0.26 20 18.6666666666667 26 27
3289 2013 3 New York Jets Buffalo Bills New York Jets Buffalo Bills 27 20 -2.5 New York Jets Buffalo Bills 0.65 FALSE -0.331818181818182 18.3333333333333 16.6666666666667 21.6666666666667 24.3333333333333
3292 2013 3 Cincinnati Bengals Green Bay Packers Cincinnati Bengals Green Bay Packers 34 30 -3 Green Bay Packers Green Bay Packers 0.8 FALSE -0.618181818181818 25 21.3333333333333 32 29.3333333333333
3295 2013 3 Dallas Cowboys St. Louis Rams Dallas Cowboys St. Louis Rams 31 7 -3 Dallas Cowboys Dallas Cowboys 0.56 TRUE 0.0690909090909093 27.6666666666667 18.3333333333333 19.3333333333333 28.6666666666667
3298 2013 3 Baltimore Ravens Houston Texans Baltimore Ravens Houston Texans 30 9 -1 Baltimore Ravens Houston Texans 0.67 FALSE -0.37 23.6666666666667 21.3333333333333 23.3333333333333 27.3333333333333
3301 2013 3 Minnesota Vikings Cleveland Browns Cleveland Browns Minnesota Vikings 31 27 -7 Minnesota Vikings Minnesota Vikings 0.83 FALSE -0.675454545454545 27 32 15.6666666666667 21.3333333333333
3304 2013 3 Seattle Seahawks Jacksonville Jaguars Seattle Seahawks Jacksonville Jaguars 45 17 -19.5 Seattle Seahawks Seattle Seahawks 0.61 TRUE 0.164545454545455 28.6666666666667 9 9.33333333333333 30.6666666666667
3307 2013 3 Pittsburgh Steelers Chicago Bears Chicago Bears Pittsburgh Steelers 40 23 -2.5 Chicago Bears Chicago Bears 0.7 TRUE 0.336363636363636 14 25.3333333333333 31.6666666666667 24.6666666666667
3310 2013 3 San Francisco 49ers Indianapolis Colts Indianapolis Colts San Francisco 49ers 27 7 -10.5 San Francisco 49ers San Francisco 49ers 0.56 FALSE -0.16 14.6666666666667 28 22.6666666666667 16
3313 2013 3 Denver Broncos Oakland Raiders Denver Broncos Oakland Raiders 37 21 -16.5 Denver Broncos Denver Broncos 0.7 FALSE -0.427272727272727 42.3333333333333 23.6666666666667 19 22.3333333333333
3316 2013 4 St. Louis Rams San Francisco 49ers San Francisco 49ers St. Louis Rams 35 11 -3.5 San Francisco 49ers San Francisco 49ers 0.75 TRUE 0.431818181818182 17.25 30.25 19.75 23.75
3319 2013 4 Buffalo Bills Baltimore Ravens Buffalo Bills Baltimore Ravens 23 20 -3.5 Baltimore Ravens Baltimore Ravens 0.76 FALSE -0.541818181818182 22 23.25 22.75 21.75
3322 2013 4 Cleveland Browns Cincinnati Bengals Cleveland Browns Cincinnati Bengals 17 6 -3.5 Cincinnati Bengals Cincinnati Bengals 0.75 FALSE -0.522727272727273 16 17.5 20.25 20.25
3325 2013 4 Tennessee Titans New York Jets Tennessee Titans New York Jets 38 13 -3.5 Tennessee Titans Tennessee Titans 0.54 TRUE 0.030909090909091 24.5 17.25 17 22
3328 2013 4 San Diego Chargers Dallas Cowboys San Diego Chargers Dallas Cowboys 30 21 -1.5 Dallas Cowboys Dallas Cowboys 0.59 FALSE -0.217272727272727 27 25.5 26 21.25
3331 2013 4 Kansas City Chiefs New York Giants Kansas City Chiefs New York Giants 31 7 -3.5 Kansas City Chiefs Kansas City Chiefs 0.63 TRUE 0.202727272727273 25.5 10.25 15.25 36.5
3334 2013 4 Houston Texans Seattle Seahawks Seattle Seahawks Houston Texans 23 20 -1.5 Seattle Seahawks Seattle Seahawks 0.64 TRUE 0.221818181818182 22.5 26.25 27.25 11.75
3337 2013 4 Tampa Bay Buccaneers Arizona Cardinals Arizona Cardinals Tampa Bay Buccaneers 13 10 -2.5 Tampa Bay Buccaneers Arizona Cardinals 0.59 TRUE 0.126363636363636 11 17.5 17.25 22.25
3340 2013 4 Minnesota Vikings Pittsburgh Steelers Minnesota Vikings Pittsburgh Steelers 34 27 -3 Pittsburgh Steelers Pittsburgh Steelers 0.56 FALSE -0.16 28.75 30.75 17.25 27.5
3343 2013 4 Oakland Raiders Washington Redskins Washington Redskins Oakland Raiders 24 14 -3.5 Washington Redskins Washington Redskins 0.63 TRUE 0.202727272727273 17.75 22.75 22.75 28
3346 2013 4 Atlanta Falcons New England Patriots New England Patriots Atlanta Falcons 30 23 -3 Atlanta Falcons Atlanta Falcons 0.66 FALSE -0.350909090909091 23.5 26 22.25 14.25
3349 2013 4 Denver Broncos Philadelphia Eagles Denver Broncos Philadelphia Eagles 52 20 -10.5 Denver Broncos Denver Broncos 0.73 TRUE 0.393636363636364 44.75 22.75 24.75 34.5
3352 2013 4 Jacksonville Jaguars Indianapolis Colts Indianapolis Colts Jacksonville Jaguars 37 3 -9 Indianapolis Colts Indianapolis Colts 0.82 TRUE 0.565454545454545 7.75 32.25 26.25 12.75
3355 2013 4 Detroit Lions Chicago Bears Detroit Lions Chicago Bears 40 32 -3 Detroit Lions Chicago Bears 0.56 FALSE -0.16 30.5 25.25 31.75 28.5
3358 2013 4 New Orleans Saints Miami Dolphins New Orleans Saints Miami Dolphins 38 17 -7 New Orleans Saints New Orleans Saints 0.7 TRUE 0.336363636363636 27 13.75 22.75 22.75
3361 2013 5 Cleveland Browns Buffalo Bills Cleveland Browns Buffalo Bills 37 24 -3.5 Cleveland Browns Cleveland Browns 0.54 TRUE 0.030909090909091 20.2 18.8 22.4 26
3364 2013 5 Arizona Cardinals Carolina Panthers Arizona Cardinals Carolina Panthers 22 6 -3 Carolina Panthers Carolina Panthers 0.68 FALSE -0.389090909090909 18.2 19 18.5 14.5
3367 2013 5 Green Bay Packers Detroit Lions Green Bay Packers Detroit Lions 22 9 -10 Green Bay Packers Green Bay Packers 0.58 TRUE 0.107272727272727 29.5 24.25 26.2 24.6
3370 2013 5 New York Giants Philadelphia Eagles Philadelphia Eagles New York Giants 36 21 -1 Philadelphia Eagles Philadelphia Eagles 0.53 TRUE 0.0118181818181819 16.4 36.4 27 31.8
3373 2013 5 Dallas Cowboys Denver Broncos Denver Broncos Dallas Cowboys 51 48 -8 Denver Broncos Denver Broncos 0.75 FALSE -0.522727272727273 30.4 27.2 46 27.8
3376 2013 5 Cincinnati Bengals New England Patriots Cincinnati Bengals New England Patriots 13 6 -1.5 New England Patriots New England Patriots 0.69 FALSE -0.408181818181818 18.8 17.4 19 14
3379 2013 5 Chicago Bears New Orleans Saints New Orleans Saints Chicago Bears 26 18 -1 New Orleans Saints New Orleans Saints 0.69 TRUE 0.317272727272727 29 28 26.8 14.6
3382 2013 5 Oakland Raiders San Diego Chargers Oakland Raiders San Diego Chargers 27 17 -5.5 San Diego Chargers San Diego Chargers 0.78 FALSE -0.58 19.6 21.6 25 25.8
3385 2013 5 St. Louis Rams Jacksonville Jaguars St. Louis Rams Jacksonville Jaguars 34 20 -11 St. Louis Rams St. Louis Rams 0.53 TRUE 0.0118181818181819 20.6 28.2 10.2 32.6
3388 2013 5 Indianapolis Colts Seattle Seahawks Indianapolis Colts Seattle Seahawks 34 28 -3 Seattle Seahawks Indianapolis Colts 0.52 TRUE -0.00727272727272721 27.8 15.8 27.4 16.2
3391 2013 5 Miami Dolphins Baltimore Ravens Baltimore Ravens Miami Dolphins 26 23 -2.5 Miami Dolphins Baltimore Ravens 0.6 TRUE 0.145454545454546 22.8 23.4 23.4 22
3394 2013 5 Tennessee Titans Kansas City Chiefs Kansas City Chiefs Tennessee Titans 26 17 -2.5 Kansas City Chiefs Kansas City Chiefs 0.76 TRUE 0.450909090909091 23 19 25.6 11.6
3397 2013 5 San Francisco 49ers Houston Texans San Francisco 49ers Houston Texans 34 3 -4.5 San Francisco 49ers San Francisco 49ers 0.52 TRUE -0.00727272727272721 22.6 19.6 18.6 27.8
3400 2013 5 Atlanta Falcons New York Jets New York Jets Atlanta Falcons 30 28 -10 Atlanta Falcons Atlanta Falcons 0.75 FALSE -0.522727272727273 24.4 26.8 19.6 23.2
3403 2013 6 Chicago Bears New York Giants Chicago Bears New York Giants 27 21 -9 Chicago Bears New York Giants 0.53 TRUE 0.0118181818181819 28.6666666666667 26.8333333333333 17.1666666666667 34.8333333333333
3406 2013 6 Minnesota Vikings Carolina Panthers Carolina Panthers Minnesota Vikings 35 10 -2.5 Minnesota Vikings Minnesota Vikings 0.72 FALSE -0.465454545454545 25 31.6 21.8 13.6
3409 2013 6 Baltimore Ravens Green Bay Packers Green Bay Packers Baltimore Ravens 19 17 -2 Green Bay Packers Green Bay Packers 0.67 FALSE -0.37 22.3333333333333 21.5 27.4 22.8
3412 2013 6 Houston Texans St. Louis Rams St. Louis Rams Houston Texans 38 13 -9 Houston Texans Houston Texans 0.75 FALSE -0.522727272727273 17.6666666666667 29.5 23.5 25.6666666666667
3415 2013 6 Cleveland Browns Detroit Lions Detroit Lions Cleveland Browns 31 17 -2 Detroit Lions Detroit Lions 0.66 TRUE 0.26 19.6666666666667 20.8333333333333 27 23.3333333333333
3418 2013 6 Denver Broncos Jacksonville Jaguars Denver Broncos Jacksonville Jaguars 35 19 -27 Denver Broncos Denver Broncos 0.55 FALSE -0.140909090909091 44.1666666666667 26.3333333333333 11.6666666666667 33
3421 2013 6 Kansas City Chiefs Oakland Raiders Kansas City Chiefs Oakland Raiders 24 7 -8 Kansas City Chiefs Kansas City Chiefs 0.58 TRUE 0.107272727272727 25.3333333333333 10.8333333333333 17.5 22
3424 2013 6 Seattle Seahawks Tennessee Titans Seattle Seahawks Tennessee Titans 20 13 -12.5 Seattle Seahawks Seattle Seahawks 0.75 FALSE -0.522727272727273 26.1666666666667 15.6666666666667 21.3333333333333 19.1666666666667
3427 2013 6 Buffalo Bills Cincinnati Bengals Cincinnati Bengals Buffalo Bills 27 24 -6 Cincinnati Bengals Cincinnati Bengals 0.69 FALSE -0.408181818181818 22.6666666666667 26.1666666666667 20.1666666666667 18.5
3430 2013 6 Dallas Cowboys Washington Redskins Dallas Cowboys Washington Redskins 31 16 -5.5 Dallas Cowboys Dallas Cowboys 0.61 TRUE 0.164545454545455 30.5 25.3333333333333 21.4 28.6
3433 2013 6 Tampa Bay Buccaneers Philadelphia Eagles Philadelphia Eagles Tampa Bay Buccaneers 31 20 -3 Philadelphia Eagles Philadelphia Eagles 0.7 TRUE 0.336363636363636 12.8 20.2 27.6666666666667 29.8333333333333
3436 2013 6 New York Jets Pittsburgh Steelers Pittsburgh Steelers New York Jets 19 6 -1.5 Pittsburgh Steelers New York Jets 0.52 FALSE -0.0836363636363636 17.3333333333333 22.5 17.6 23.2
3439 2013 6 New England Patriots New Orleans Saints New England Patriots New Orleans Saints 30 27 -2 New England Patriots New Orleans Saints 0.69 FALSE -0.408181818181818 20.8333333333333 16.1666666666667 26.8333333333333 17.1666666666667
3442 2013 6 San Francisco 49ers Arizona Cardinals San Francisco 49ers Arizona Cardinals 32 20 -10 San Francisco 49ers San Francisco 49ers 0.64 TRUE 0.221818181818182 24.1666666666667 19.6666666666667 18.5 21.1666666666667
3445 2013 6 San Diego Chargers Indianapolis Colts San Diego Chargers Indianapolis Colts 19 9 -1.5 Indianapolis Colts Indianapolis Colts 0.71 FALSE -0.446363636363636 24 23 24.6666666666667 16.3333333333333
3448 2013 7 Arizona Cardinals Seattle Seahawks Seattle Seahawks Arizona Cardinals 34 22 -5.5 Seattle Seahawks Seattle Seahawks 0.68 TRUE 0.298181818181818 19 23 27.2857142857143 16.5714285714286
3451 2013 7 Pittsburgh Steelers Baltimore Ravens Pittsburgh Steelers Baltimore Ravens 19 16 -2 Pittsburgh Steelers Baltimore Ravens 0.65 FALSE -0.331818181818182 17.8333333333333 22 21.4285714285714 21.1428571428571
3454 2013 7 Atlanta Falcons Tampa Bay Buccaneers Atlanta Falcons Tampa Bay Buccaneers 31 23 -6.5 Atlanta Falcons Atlanta Falcons 0.64 TRUE 0.221818181818182 25.5 26.1666666666667 14.5 22
3457 2013 7 Carolina Panthers St. Louis Rams Carolina Panthers St. Louis Rams 30 15 -7 Carolina Panthers Carolina Panthers 0.53 TRUE 0.0118181818181819 23.1666666666667 13.8333333333333 22.2857142857143 26.2857142857143
3460 2013 7 Green Bay Packers Cleveland Browns Green Bay Packers Cleveland Browns 31 13 -8.5 Green Bay Packers Green Bay Packers 0.63 TRUE 0.202727272727273 28 21.1666666666667 18.7142857142857 22.2857142857143
3463 2013 7 Philadelphia Eagles Dallas Cowboys Dallas Cowboys Philadelphia Eagles 17 3 -3 Philadelphia Eagles Dallas Cowboys 0.65 TRUE 0.240909090909091 24.1428571428571 28 28.5714285714286 22.1428571428571
3466 2013 7 Detroit Lions Cincinnati Bengals Cincinnati Bengals Detroit Lions 27 24 -3 Detroit Lions Detroit Lions 0.65 FALSE -0.331818181818182 26.5714285714286 23.8571428571429 21.1428571428571 19.2857142857143
3469 2013 7 Jacksonville Jaguars San Diego Chargers San Diego Chargers Jacksonville Jaguars 24 6 -7 San Diego Chargers San Diego Chargers 0.64 TRUE 0.221818181818182 10.8571428571429 31.7142857142857 24 20.5714285714286
3472 2013 7 Indianapolis Colts Denver Broncos Indianapolis Colts Denver Broncos 39 33 -6.5 Denver Broncos Denver Broncos 0.77 FALSE -0.560909090909091 26.7142857142857 18.7142857142857 42.5714285714286 28.1428571428571
3475 2013 7 Washington Redskins Chicago Bears Washington Redskins Chicago Bears 45 41 -1 Chicago Bears Chicago Bears 0.59 FALSE -0.217272727272727 25.3333333333333 30.6666666666667 30.4285714285714 29.4285714285714
3478 2013 7 Kansas City Chiefs Houston Texans Kansas City Chiefs Houston Texans 17 16 -7 Kansas City Chiefs Kansas City Chiefs 0.72 FALSE -0.465454545454545 24.1428571428571 11.5714285714286 17.4285714285714 27.7142857142857
3481 2013 7 New York Jets New England Patriots New York Jets New England Patriots 30 27 -3.5 New England Patriots New England Patriots 0.78 FALSE -0.58 19.1428571428571 23.1428571428571 21.7142857142857 18.1428571428571
3484 2013 7 Miami Dolphins Buffalo Bills Buffalo Bills Miami Dolphins 23 21 -6 Miami Dolphins Miami Dolphins 0.56 FALSE -0.16 22.5 23.3333333333333 22.7142857142857 25.4285714285714
3487 2013 7 Tennessee Titans San Francisco 49ers San Francisco 49ers Tennessee Titans 31 17 -3.5 San Francisco 49ers San Francisco 49ers 0.83 TRUE 0.584545454545454 20.7142857142857 20.8571428571429 25.1428571428571 19.2857142857143
3490 2013 7 New York Giants Minnesota Vikings New York Giants Minnesota Vikings 23 7 -4 New York Giants New York Giants 0.65 TRUE 0.240909090909091 18 30.8571428571429 22 30.1666666666667
3493 2013 8 Tampa Bay Buccaneers Carolina Panthers Carolina Panthers Tampa Bay Buccaneers 31 13 -7 Carolina Panthers Carolina Panthers 0.74 TRUE 0.412727272727273 14.2857142857143 23.2857142857143 24.2857142857143 13.7142857142857
3496 2013 8 Minnesota Vikings Green Bay Packers Green Bay Packers Minnesota Vikings 44 31 -7.5 Green Bay Packers Green Bay Packers 0.76 TRUE 0.450909090909091 23.2857142857143 32.1428571428571 30.2857142857143 22.5714285714286
3499 2013 8 Arizona Cardinals Atlanta Falcons Arizona Cardinals Atlanta Falcons 27 13 -2.5 Arizona Cardinals Atlanta Falcons 0.67 FALSE -0.37 20 21.75 23.7142857142857 26.2857142857143
3502 2013 8 New England Patriots Miami Dolphins New England Patriots Miami Dolphins 27 17 -6.5 New England Patriots New England Patriots 0.73 TRUE 0.393636363636364 22.375 18 21.7142857142857 23.8571428571429
3505 2013 8 Oakland Raiders Pittsburgh Steelers Oakland Raiders Pittsburgh Steelers 21 18 -3 Pittsburgh Steelers Pittsburgh Steelers 0.67 FALSE -0.37 18 21.4285714285714 17.8571428571429 21.8571428571429
3508 2013 8 Jacksonville Jaguars San Francisco 49ers San Francisco 49ers Jacksonville Jaguars 42 10 -16 San Francisco 49ers San Francisco 49ers 0.77 TRUE 0.47 10.75 33 27.25 18.125
3511 2013 8 Denver Broncos Washington Redskins Denver Broncos Washington Redskins 45 21 -11 Denver Broncos Denver Broncos 0.65 TRUE 0.240909090909091 42.875 27.25 24.7142857142857 32.7142857142857
3514 2013 8 New Orleans Saints Buffalo Bills New Orleans Saints Buffalo Bills 35 17 -10.5 New Orleans Saints New Orleans Saints 0.76 TRUE 0.450909090909091 28 17.1428571428571 22 26.625
3517 2013 8 Philadelphia Eagles New York Giants New York Giants Philadelphia Eagles 15 7 -5.5 Philadelphia Eagles New York Giants 0.62 TRUE 0.183636363636364 22 26.375 17.625 27.875
3520 2013 8 Detroit Lions Dallas Cowboys Detroit Lions Dallas Cowboys 31 30 -3 Detroit Lions Dallas Cowboys 0.54 TRUE 0.030909090909091 27.125 24.625 28.75 23.25
3523 2013 8 Cincinnati Bengals New York Jets Cincinnati Bengals New York Jets 49 9 -6 Cincinnati Bengals Cincinnati Bengals 0.63 TRUE 0.202727272727273 24.625 18 17.875 26.375
3526 2013 8 Kansas City Chiefs Cleveland Browns Kansas City Chiefs Cleveland Browns 23 17 -7 Kansas City Chiefs Kansas City Chiefs 0.71 FALSE -0.446363636363636 24 12.25 18.5 22.375
3529 2013 8 St. Louis Rams Seattle Seahawks Seattle Seahawks St. Louis Rams 14 9 -14 Seattle Seahawks Seattle Seahawks 0.83 FALSE -0.675454545454545 20.625 24.75 25.625 15.625
3532 2013 9 Miami Dolphins Cincinnati Bengals Miami Dolphins Cincinnati Bengals 22 20 -3 Cincinnati Bengals Cincinnati Bengals 0.8 FALSE -0.618181818181818 21.75 23.375 24.1111111111111 18.4444444444444
3535 2013 9 Houston Texans Indianapolis Colts Indianapolis Colts Houston Texans 27 24 -1.5 Indianapolis Colts Indianapolis Colts 0.72 TRUE 0.374545454545455 18.25 27.625 26.75 19.375
3538 2013 9 Carolina Panthers Atlanta Falcons Carolina Panthers Atlanta Falcons 34 10 -8.5 Carolina Panthers Atlanta Falcons 0.52 FALSE -0.0836363636363636 25.5 13.25 22 27.25
3541 2013 9 St. Louis Rams Tennessee Titans Tennessee Titans St. Louis Rams 28 21 -3 Tennessee Titans Tennessee Titans 0.65 TRUE 0.240909090909091 20.6666666666667 25.1111111111111 21.625 20.875
3544 2013 9 New York Jets New Orleans Saints New York Jets New Orleans Saints 26 20 -6 New Orleans Saints New Orleans Saints 0.79 FALSE -0.599090909090909 18.7777777777778 25.6666666666667 27 18.25
3547 2013 9 Washington Redskins San Diego Chargers Washington Redskins San Diego Chargers 30 24 -1.5 Washington Redskins San Diego Chargers 0.59 FALSE -0.217272727272727 25.375 31.625 24 21.75
3550 2013 9 Dallas Cowboys Minnesota Vikings Dallas Cowboys Minnesota Vikings 27 23 -9 Dallas Cowboys Dallas Cowboys 0.74 FALSE -0.503636363636364 28.5555555555556 23.2222222222222 23.25 31.5
3553 2013 9 Cleveland Browns Baltimore Ravens Cleveland Browns Baltimore Ravens 24 18 -1.5 Baltimore Ravens Baltimore Ravens 0.74 FALSE -0.503636363636364 19.1111111111111 21.8888888888889 21 21.5
3556 2013 9 Oakland Raiders Philadelphia Eagles Philadelphia Eagles Oakland Raiders 49 20 -1 Oakland Raiders Oakland Raiders 0.67 FALSE -0.37 18.25 24.875 25 25.6666666666667
3559 2013 9 Buffalo Bills Kansas City Chiefs Kansas City Chiefs Buffalo Bills 23 13 -5 Kansas City Chiefs Kansas City Chiefs 0.65 TRUE 0.240909090909091 21 26.2222222222222 23.8888888888889 12.3333333333333
3562 2013 9 New England Patriots Pittsburgh Steelers New England Patriots Pittsburgh Steelers 55 31 -6 New England Patriots New England Patriots 0.71 TRUE 0.355454545454545 26 19.4444444444444 19.5 26
3565 2013 9 Seattle Seahawks Tampa Bay Buccaneers Seattle Seahawks Tampa Bay Buccaneers 27 24 -16 Seattle Seahawks Seattle Seahawks 0.77 FALSE -0.560909090909091 25.7777777777778 16.5555555555556 15.5 23.75
3568 2013 9 Green Bay Packers Chicago Bears Chicago Bears Green Bay Packers 27 20 -10 Green Bay Packers Green Bay Packers 0.69 FALSE -0.408181818181818 29 23.125 30 28.25
3571 2013 10 Minnesota Vikings Washington Redskins Minnesota Vikings Washington Redskins 34 27 -1.5 Washington Redskins Washington Redskins 0.73 FALSE -0.484545454545455 24.4444444444444 31 25.5555555555556 31.8888888888889
3574 2013 10 San Francisco 49ers Carolina Panthers Carolina Panthers San Francisco 49ers 10 9 -6 San Francisco 49ers San Francisco 49ers 0.68 FALSE -0.389090909090909 25.2222222222222 17.2222222222222 23.7777777777778 12.7777777777778
3577 2013 10 Tennessee Titans Jacksonville Jaguars Jacksonville Jaguars Tennessee Titans 29 27 -11.5 Tennessee Titans Tennessee Titans 0.62 FALSE -0.274545454545455 22.2222222222222 21.7777777777778 12.7777777777778 32.3333333333333
3580 2013 10 Arizona Cardinals Houston Texans Arizona Cardinals Houston Texans 27 24 -4 Arizona Cardinals Arizona Cardinals 0.53 FALSE -0.102727272727273 20.7777777777778 22 18.8888888888889 27.5555555555556
3583 2013 10 San Diego Chargers Denver Broncos Denver Broncos San Diego Chargers 28 20 -7 Denver Broncos Denver Broncos 0.71 TRUE 0.355454545454545 23.5555555555556 22.4444444444444 41.2222222222222 26.4444444444444
3586 2013 10 Green Bay Packers Philadelphia Eagles Philadelphia Eagles Green Bay Packers 27 13 -1 Philadelphia Eagles Philadelphia Eagles 0.52 TRUE -0.00727272727272721 27.2222222222222 23.5555555555556 25.2 24.4
3589 2013 10 Chicago Bears Detroit Lions Detroit Lions Chicago Bears 21 19 -1 Detroit Lions Detroit Lions 0.57 TRUE 0.0881818181818181 28.7777777777778 27.4444444444444 26.4444444444444 24
3592 2013 10 New York Giants Oakland Raiders New York Giants Oakland Raiders 24 20 -7 New York Giants New York Giants 0.68 FALSE -0.389090909090909 18.3333333333333 27 18.4444444444444 24.7777777777778
3595 2013 10 Indianapolis Colts St. Louis Rams St. Louis Rams Indianapolis Colts 38 8 -7.5 Indianapolis Colts Indianapolis Colts 0.64 FALSE -0.312727272727273 24.6666666666667 21.4444444444444 22.4 23.4
3598 2013 10 Atlanta Falcons Seattle Seahawks Seattle Seahawks Atlanta Falcons 33 10 -3.5 Seattle Seahawks Seattle Seahawks 0.65 TRUE 0.240909090909091 20.6666666666667 27.8888888888889 26.5 15.9
3601 2013 10 New Orleans Saints Dallas Cowboys New Orleans Saints Dallas Cowboys 49 17 -6.5 New Orleans Saints New Orleans Saints 0.71 TRUE 0.355454545454545 29.4444444444444 18.1111111111111 27.4 25.8
3604 2013 10 Pittsburgh Steelers Buffalo Bills Pittsburgh Steelers Buffalo Bills 23 10 -3 Pittsburgh Steelers Pittsburgh Steelers 0.57 TRUE 0.0881818181818181 19.8888888888889 24.2222222222222 19.9 25.9
3607 2013 10 Baltimore Ravens Cincinnati Bengals Baltimore Ravens Cincinnati Bengals 20 17 -1 Baltimore Ravens Cincinnati Bengals 0.53 FALSE -0.102727272727273 20.8888888888889 21 23.4 18.6
3610 2013 10 Tampa Bay Buccaneers Miami Dolphins Tampa Bay Buccaneers Miami Dolphins 22 19 -2.5 Miami Dolphins Tampa Bay Buccaneers 0.51 TRUE -0.0263636363636363 16.2222222222222 23.2222222222222 21.4444444444444 23.2222222222222
3613 2013 11 Tennessee Titans Indianapolis Colts Indianapolis Colts Tennessee Titans 30 27 -3 Indianapolis Colts Indianapolis Colts 0.79 FALSE -0.599090909090909 22.7 22.6 25.2 22
3616 2013 11 New York Giants Green Bay Packers New York Giants Green Bay Packers 27 13 -3.5 New York Giants New York Giants 0.67 TRUE 0.279090909090909 19.2 25.6 25.8 23.9
3619 2013 11 Tampa Bay Buccaneers Atlanta Falcons Tampa Bay Buccaneers Atlanta Falcons 41 28 -2 Tampa Bay Buccaneers Atlanta Falcons 0.54 FALSE -0.121818181818182 18.7 23.7 21.4 29.2
3622 2013 11 New Orleans Saints San Francisco 49ers New Orleans Saints San Francisco 49ers 23 20 -3 New Orleans Saints New Orleans Saints 0.75 FALSE -0.522727272727273 28.8 18.3 24.7 17.8
3625 2013 11 Pittsburgh Steelers Detroit Lions Pittsburgh Steelers Detroit Lions 37 27 -3 Detroit Lions Detroit Lions 0.67 FALSE -0.37 21.6 24.5 26.5 25.3
3628 2013 11 Chicago Bears Baltimore Ravens Chicago Bears Baltimore Ravens 23 20 -3 Chicago Bears Chicago Bears 0.54 FALSE -0.121818181818182 28.2 26.7 20.8 21.2
3631 2013 11 Houston Texans Oakland Raiders Oakland Raiders Houston Texans 28 23 -10.5 Houston Texans Houston Texans 0.68 FALSE -0.389090909090909 19.3 27.6 19.4 24.6
3634 2013 11 Miami Dolphins San Diego Chargers Miami Dolphins San Diego Chargers 20 16 -2.5 San Diego Chargers San Diego Chargers 0.79 FALSE -0.599090909090909 21.3 22.5 22.8 22.2
3637 2013 11 Denver Broncos Kansas City Chiefs Denver Broncos Kansas City Chiefs 27 17 -7.5 Denver Broncos Denver Broncos 0.5 TRUE -0.0454545454545454 39.8 25.5 23.2 13.8
3640 2013 11 Jacksonville Jaguars Arizona Cardinals Arizona Cardinals Jacksonville Jaguars 27 14 -9 Arizona Cardinals Arizona Cardinals 0.62 TRUE 0.183636363636364 12.9 31.8 21.4 21.2
3643 2013 11 Seattle Seahawks Minnesota Vikings Seattle Seahawks Minnesota Vikings 41 20 -13 Seattle Seahawks Seattle Seahawks 0.77 TRUE 0.47 27.8181818181818 16.2727272727273 24 32
3646 2013 11 Cincinnati Bengals Cleveland Browns Cincinnati Bengals Cleveland Browns 41 20 -5 Cincinnati Bengals Cincinnati Bengals 0.64 TRUE 0.221818181818182 25 18.7272727272727 19.2 23.8
3649 2013 11 Buffalo Bills New York Jets Buffalo Bills New York Jets 37 14 -2 New York Jets New York Jets 0.61 FALSE -0.255454545454545 21.4545454545455 24.8181818181818 18.3 26.8
3652 2013 11 Philadelphia Eagles Washington Redskins Philadelphia Eagles Washington Redskins 24 16 -4.5 Philadelphia Eagles Washington Redskins 0.59 FALSE -0.217272727272727 25.0909090909091 23.6363636363636 24.6 31.1
3655 2013 11 Carolina Panthers New England Patriots Carolina Panthers New England Patriots 24 20 -3 Carolina Panthers New England Patriots 0.69 FALSE -0.408181818181818 23.8 13.5 25.4 19.9
3658 2013 12 Atlanta Falcons New Orleans Saints New Orleans Saints Atlanta Falcons 17 13 -8 New Orleans Saints New Orleans Saints 0.78 FALSE -0.58 20.6363636363636 28.0909090909091 27.7272727272727 17.8181818181818
3661 2013 12 Miami Dolphins Carolina Panthers Carolina Panthers Miami Dolphins 20 16 -5 Carolina Panthers Carolina Panthers 0.72 FALSE -0.465454545454545 20.8181818181818 22.2727272727273 23.4545454545455 13.7272727272727
3664 2013 12 St. Louis Rams Chicago Bears St. Louis Rams Chicago Bears 42 21 -2 St. Louis Rams St. Louis Rams 0.51 TRUE -0.0263636363636363 24.1818181818182 23.1818181818182 27.5454545454545 28.0909090909091
3667 2013 12 Arizona Cardinals Indianapolis Colts Arizona Cardinals Indianapolis Colts 40 11 -3 Arizona Cardinals Indianapolis Colts 0.56 FALSE -0.16 23.0909090909091 20.2727272727273 23.9090909090909 23.6363636363636
3670 2013 12 Green Bay Packers Minnesota Vikings Minnesota Vikings Green Bay Packers 26 26 -6 Green Bay Packers Green Bay Packers 0.57 FALSE -0.179090909090909 25.8181818181818 24.0909090909091 24.1818181818182 31.4545454545455
3673 2013 12 Houston Texans Jacksonville Jaguars Jacksonville Jaguars Houston Texans 13 6 -10.5 Houston Texans Jacksonville Jaguars 0.55 TRUE 0.05 18.0909090909091 26.2727272727273 12.9090909090909 29.4545454545455
3676 2013 12 Kansas City Chiefs San Diego Chargers San Diego Chargers Kansas City Chiefs 41 38 -3.5 Kansas City Chiefs Kansas City Chiefs 0.65 FALSE -0.331818181818182 24.5454545454545 16.2727272727273 24.4545454545455 23.6363636363636
3679 2013 12 Baltimore Ravens New York Jets Baltimore Ravens New York Jets 19 3 -4 Baltimore Ravens Baltimore Ravens 0.72 TRUE 0.374545454545455 20.6363636363636 19.5454545454545 16.9090909090909 26.0909090909091
3682 2013 12 Cleveland Browns Pittsburgh Steelers Pittsburgh Steelers Cleveland Browns 27 11 -2.5 Cleveland Browns Pittsburgh Steelers 0.71 TRUE 0.355454545454545 18.4545454545455 24.0909090909091 22.0909090909091 23.2727272727273
3685 2013 12 Detroit Lions Tampa Bay Buccaneers Tampa Bay Buccaneers Detroit Lions 24 21 -7 Detroit Lions Detroit Lions 0.59 FALSE -0.217272727272727 26 25.1818181818182 19.1818181818182 23.4545454545455
3688 2013 12 Oakland Raiders Tennessee Titans Tennessee Titans Oakland Raiders 23 19 -2.5 Tennessee Titans Oakland Raiders 0.5 FALSE -0.0454545454545454 19.3636363636364 24.4545454545455 22.7272727272727 22.2727272727273
3691 2013 12 New York Giants Dallas Cowboys Dallas Cowboys New York Giants 24 21 -2.5 New York Giants New York Giants 0.54 FALSE -0.121818181818182 19.3636363636364 25.4545454545455 27.0909090909091 25.3636363636364
3694 2013 12 New England Patriots Denver Broncos New England Patriots Denver Broncos 34 31 -1 Denver Broncos Denver Broncos 0.62 FALSE -0.274545454545455 26.1818181818182 20.9090909090909 39 26.2727272727273
3697 2013 12 Washington Redskins San Francisco 49ers San Francisco 49ers Washington Redskins 27 6 -5.5 San Francisco 49ers San Francisco 49ers 0.77 TRUE 0.47 22.9090909090909 30.7272727272727 24.9090909090909 16.7272727272727
3700 2013 13 Baltimore Ravens Pittsburgh Steelers Baltimore Ravens Pittsburgh Steelers 22 20 -3 Baltimore Ravens Pittsburgh Steelers 0.52 TRUE -0.00727272727272721 20.75 19.5833333333333 21.9166666666667 23.1666666666667
3703 2013 13 Dallas Cowboys Oakland Raiders Dallas Cowboys Oakland Raiders 31 24 -9 Dallas Cowboys Dallas Cowboys 0.64 FALSE -0.312727272727273 27.4166666666667 25.25 19.75 25
3706 2013 13 Detroit Lions Green Bay Packers Detroit Lions Green Bay Packers 40 10 -6.5 Detroit Lions Detroit Lions 0.66 TRUE 0.26 27.1666666666667 23.9166666666667 24.5 25.4166666666667
3709 2013 13 Indianapolis Colts Tennessee Titans Indianapolis Colts Tennessee Titans 22 14 -3.5 Indianapolis Colts Indianapolis Colts 0.6 TRUE 0.145454545454546 23.75 22.8333333333333 22 22.25
3712 2013 13 Kansas City Chiefs Denver Broncos Denver Broncos Kansas City Chiefs 35 28 -5.5 Denver Broncos Denver Broncos 0.62 TRUE 0.183636363636364 24.8333333333333 17.8333333333333 38.6666666666667 26.4166666666667
3715 2013 13 New York Jets Miami Dolphins Miami Dolphins New York Jets 23 3 0 PickEm New York Jets 0.53 FALSE -0.102727272727273 15.75 25.8333333333333 21 20.6666666666667
3718 2013 13 Washington Redskins New York Giants New York Giants Washington Redskins 24 17 -1 Washington Redskins New York Giants 0.71 TRUE 0.355454545454545 22.4166666666667 30.1666666666667 19.75 24.75
3721 2013 13 Cleveland Browns Jacksonville Jaguars Jacksonville Jaguars Cleveland Browns 32 28 -7 Cleveland Browns Jacksonville Jaguars 0.61 TRUE 0.164545454545455 19.25 24.75 14.5 29.3333333333333
3724 2013 13 San Francisco 49ers St. Louis Rams San Francisco 49ers St. Louis Rams 23 13 -7.5 San Francisco 49ers San Francisco 49ers 0.53 TRUE 0.0118181818181819 24.75 16.4166666666667 23.25 23.1666666666667
3727 2013 13 Houston Texans New England Patriots New England Patriots Houston Texans 34 31 -7 New England Patriots New England Patriots 0.8 FALSE -0.618181818181818 19.1666666666667 26.9166666666667 26.8333333333333 21.75
3730 2013 13 Carolina Panthers Tampa Bay Buccaneers Carolina Panthers Tampa Bay Buccaneers 27 6 -7 Carolina Panthers Carolina Panthers 0.54 TRUE 0.030909090909091 23.75 13.0833333333333 18.0833333333333 23.75
3733 2013 13 Philadelphia Eagles Arizona Cardinals Philadelphia Eagles Arizona Cardinals 24 21 -3.5 Philadelphia Eagles Arizona Cardinals 0.57 TRUE 0.0881818181818181 25 23.4166666666667 22.9166666666667 20.5833333333333
3736 2013 13 Minnesota Vikings Chicago Bears Minnesota Vikings Chicago Bears 23 20 -1 Minnesota Vikings Chicago Bears 0.66 FALSE -0.350909090909091 24.0833333333333 30.5 26.9166666666667 27.6666666666667
3739 2013 13 San Diego Chargers Cincinnati Bengals Cincinnati Bengals San Diego Chargers 17 10 -1.5 Cincinnati Bengals San Diego Chargers 0.6 FALSE -0.236363636363636 23.25 23.0833333333333 24.3333333333333 18
3742 2013 13 Buffalo Bills Atlanta Falcons Atlanta Falcons Buffalo Bills 34 31 -4.5 Buffalo Bills Buffalo Bills 0.62 FALSE -0.274545454545455 22.25 25.5833333333333 21.75 28.3333333333333
3745 2013 13 Seattle Seahawks New Orleans Saints Seattle Seahawks New Orleans Saints 34 7 -6.5 Seattle Seahawks New Orleans Saints 0.58 FALSE -0.198181818181818 28.3333333333333 15.5 26 19.1666666666667
3748 2013 14 Jacksonville Jaguars Houston Texans Jacksonville Jaguars Houston Texans 27 20 -3 Houston Texans Houston Texans 0.52 FALSE -0.0836363636363636 15.4615384615385 28.6153846153846 19.2307692307692 26.9230769230769
3751 2013 14 Green Bay Packers Atlanta Falcons Green Bay Packers Atlanta Falcons 22 21 -3.5 Green Bay Packers Green Bay Packers 0.55 FALSE -0.140909090909091 24.3076923076923 25.0769230769231 21.6923076923077 27.8461538461538
3754 2013 14 Cincinnati Bengals Indianapolis Colts Cincinnati Bengals Indianapolis Colts 42 28 -7 Cincinnati Bengals Cincinnati Bengals 0.58 TRUE 0.107272727272727 25.6923076923077 18.7692307692308 24.0769230769231 24.3076923076923
3757 2013 14 Baltimore Ravens Minnesota Vikings Baltimore Ravens Minnesota Vikings 29 26 -6 Baltimore Ravens Baltimore Ravens 0.73 FALSE -0.484545454545455 21.3846153846154 20.0769230769231 24.2307692307692 30.3846153846154
3760 2013 14 Tampa Bay Buccaneers Buffalo Bills Tampa Bay Buccaneers Buffalo Bills 27 6 -3 Tampa Bay Buccaneers Tampa Bay Buccaneers 0.57 TRUE 0.0881818181818181 18.7692307692308 22.3846153846154 21 25.6923076923077
3763 2013 14 New Orleans Saints Carolina Panthers New Orleans Saints Carolina Panthers 31 13 -3 New Orleans Saints New Orleans Saints 0.72 TRUE 0.374545454545455 26.3846153846154 18.6923076923077 22.9230769230769 14.4615384615385
3766 2013 14 Arizona Cardinals St. Louis Rams Arizona Cardinals St. Louis Rams 30 10 -4.5 Arizona Cardinals Arizona Cardinals 0.54 TRUE 0.030909090909091 23.4615384615385 19.7692307692308 22.2307692307692 23.6923076923077
3769 2013 14 Denver Broncos Tennessee Titans Denver Broncos Tennessee Titans 51 28 -12.5 Denver Broncos Denver Broncos 0.7 TRUE 0.336363636363636 39.6153846153846 26.5384615384615 22.4615384615385 24.4615384615385
3772 2013 14 New York Jets Oakland Raiders New York Jets Oakland Raiders 37 27 -3 New York Jets Oakland Raiders 0.61 FALSE -0.255454545454545 17.3846153846154 25.9230769230769 20.3076923076923 25.9230769230769
3775 2013 14 Philadelphia Eagles Detroit Lions Philadelphia Eagles Detroit Lions 34 20 -2.5 Philadelphia Eagles Detroit Lions 0.52 FALSE -0.0836363636363636 25.6923076923077 23.1538461538462 26.6153846153846 24.6923076923077
3778 2013 14 Washington Redskins Kansas City Chiefs Kansas City Chiefs Washington Redskins 45 10 -3.5 Kansas City Chiefs Kansas City Chiefs 0.82 TRUE 0.565454545454545 21.4615384615385 31.3076923076923 26.3846153846154 17.2307692307692
3781 2013 14 New England Patriots Cleveland Browns New England Patriots Cleveland Browns 27 26 -10 New England Patriots New England Patriots 0.8 FALSE -0.618181818181818 26.8461538461538 22.0769230769231 19.7692307692308 24.9230769230769
3784 2013 14 San Francisco 49ers Seattle Seahawks San Francisco 49ers Seattle Seahawks 19 17 -2.5 San Francisco 49ers San Francisco 49ers 0.52 FALSE -0.0836363636363636 24.3076923076923 16.4615384615385 27.4615384615385 15.7692307692308
3787 2013 14 San Diego Chargers New York Giants San Diego Chargers New York Giants 37 14 -4.5 San Diego Chargers San Diego Chargers 0.52 TRUE -0.00727272727272721 24.3076923076923 22.3846153846154 19.3076923076923 25.6923076923077
3790 2013 14 Pittsburgh Steelers Miami Dolphins Miami Dolphins Pittsburgh Steelers 34 28 -3 Pittsburgh Steelers Pittsburgh Steelers 0.67 FALSE -0.37 22.3846153846154 24 22 21.2307692307692
3793 2013 14 Chicago Bears Dallas Cowboys Chicago Bears Dallas Cowboys 45 28 -1.5 Chicago Bears Dallas Cowboys 0.65 FALSE -0.331818181818182 28.3076923076923 27.6923076923077 27.4615384615385 26.7692307692308
3796 2013 15 Denver Broncos San Diego Chargers San Diego Chargers Denver Broncos 27 20 -10 Denver Broncos Denver Broncos 0.65 FALSE -0.331818181818182 38.2142857142857 26.5714285714286 24.5 22.2142857142857
3799 2013 15 Pittsburgh Steelers Cincinnati Bengals Pittsburgh Steelers Cincinnati Bengals 30 20 -2 Cincinnati Bengals Cincinnati Bengals 0.66 FALSE -0.350909090909091 22.9285714285714 23.7142857142857 25.2857142857143 19.5714285714286
3802 2013 15 St. Louis Rams New Orleans Saints St. Louis Rams New Orleans Saints 27 16 -7 New Orleans Saints New Orleans Saints 0.82 FALSE -0.656363636363636 22.5714285714286 23.1428571428571 25.6428571428571 19.2857142857143
3805 2013 15 Carolina Panthers New York Jets Carolina Panthers New York Jets 30 20 -10 Carolina Panthers Carolina Panthers 0.76 FALSE -0.541818181818182 23.4285714285714 14.8571428571429 17.5714285714286 26.2142857142857
3808 2013 15 Cleveland Browns Chicago Bears Chicago Bears Cleveland Browns 38 31 -1 Chicago Bears Chicago Bears 0.65 TRUE 0.240909090909091 20.5714285714286 25.8571428571429 29 27.9285714285714
3811 2013 15 New York Giants Seattle Seahawks Seattle Seahawks New York Giants 23 0 -9 Seattle Seahawks Seattle Seahawks 0.72 TRUE 0.374545454545455 17.9285714285714 25.5 27.1428571428571 14.6428571428571
3814 2013 15 Dallas Cowboys Green Bay Packers Green Bay Packers Dallas Cowboys 37 36 -5.5 Dallas Cowboys Dallas Cowboys 0.66 FALSE -0.350909090909091 28.0714285714286 27.5 25.2142857142857 25.8571428571429
3817 2013 15 Jacksonville Jaguars Buffalo Bills Buffalo Bills Jacksonville Jaguars 27 20 -4 Buffalo Bills Jacksonville Jaguars 0.69 FALSE -0.408181818181818 15.7857142857143 28.5 21.4285714285714 25.2857142857143
3820 2013 15 Minnesota Vikings Philadelphia Eagles Minnesota Vikings Philadelphia Eagles 48 30 -6.5 Philadelphia Eagles Philadelphia Eagles 0.83 FALSE -0.675454545454545 25.9285714285714 30.3571428571429 26 24.9285714285714
3823 2013 15 Tennessee Titans Arizona Cardinals Arizona Cardinals Tennessee Titans 37 34 -3 Arizona Cardinals Arizona Cardinals 0.69 FALSE -0.408181818181818 23.2857142857143 25.3571428571429 24.4285714285714 20.7857142857143
3826 2013 15 Oakland Raiders Kansas City Chiefs Kansas City Chiefs Oakland Raiders 56 31 -6.5 Kansas City Chiefs Kansas City Chiefs 0.84 TRUE 0.603636363636364 21.0714285714286 28.0714285714286 28.5 18.2142857142857
3829 2013 15 Miami Dolphins New England Patriots Miami Dolphins New England Patriots 24 20 -2.5 Miami Dolphins New England Patriots 0.64 FALSE -0.312727272727273 22.1428571428571 21.1428571428571 26.3571428571429 22.2142857142857
3832 2013 15 Atlanta Falcons Washington Redskins Atlanta Falcons Washington Redskins 27 26 -5.5 Atlanta Falcons Atlanta Falcons 0.55 FALSE -0.140909090909091 22.0714285714286 27.7142857142857 21.7857142857143 31
3835 2013 15 Tampa Bay Buccaneers San Francisco 49ers San Francisco 49ers Tampa Bay Buccaneers 33 14 -5 San Francisco 49ers San Francisco 49ers 0.76 TRUE 0.450909090909091 18.4285714285714 23.1428571428571 24.9285714285714 16.2857142857143
3838 2013 15 Indianapolis Colts Houston Texans Indianapolis Colts Houston Texans 25 3 -6 Indianapolis Colts Indianapolis Colts 0.74 TRUE 0.412727272727273 24.1428571428571 22.7857142857143 18.0714285714286 26.7857142857143
3841 2013 15 Detroit Lions Baltimore Ravens Baltimore Ravens Detroit Lions 18 16 -5 Detroit Lions Detroit Lions 0.54 FALSE -0.121818181818182 25.8571428571429 24.2142857142857 21.1428571428571 19.7857142857143
3844 2013 16 Kansas City Chiefs Indianapolis Colts Indianapolis Colts Kansas City Chiefs 23 7 -7.5 Kansas City Chiefs Kansas City Chiefs 0.69 FALSE -0.408181818181818 27.0666666666667 18.5333333333333 24.0666666666667 21.7333333333333
3847 2013 16 Philadelphia Eagles Chicago Bears Philadelphia Eagles Chicago Bears 54 11 -3 Philadelphia Eagles Chicago Bears 0.54 FALSE -0.121818181818182 27.8666666666667 24 27.8 29.6666666666667
3850 2013 16 Cincinnati Bengals Minnesota Vikings Cincinnati Bengals Minnesota Vikings 42 14 -7.5 Cincinnati Bengals Cincinnati Bengals 0.7 TRUE 0.336363636363636 26.4 19.2 25.1333333333333 31.1333333333333
3853 2013 16 Green Bay Packers Pittsburgh Steelers Pittsburgh Steelers Green Bay Packers 38 31 -1 Pittsburgh Steelers Pittsburgh Steelers 0.51 TRUE -0.0263636363636363 25.6 26.6666666666667 23.9333333333333 24.2
3856 2013 16 New York Jets Cleveland Browns New York Jets Cleveland Browns 24 13 -2 New York Jets Cleveland Browns 0.56 FALSE -0.16 18 25.3333333333333 20.0666666666667 25.7333333333333
3859 2013 16 Jacksonville Jaguars Tennessee Titans Tennessee Titans Jacksonville Jaguars 20 16 -4.5 Tennessee Titans Jacksonville Jaguars 0.66 TRUE 0.26 15.8 27.9333333333333 23.0666666666667 24.7333333333333
3862 2013 16 Buffalo Bills Miami Dolphins Buffalo Bills Miami Dolphins 19 0 -1 Buffalo Bills Miami Dolphins 0.68 FALSE -0.389090909090909 21.2666666666667 23.6 20.6666666666667 21
3865 2013 16 Baltimore Ravens New England Patriots New England Patriots Baltimore Ravens 41 7 -1 New England Patriots New England Patriots 0.58 TRUE 0.107272727272727 20.2 21.2 27.3333333333333 21.2
3868 2013 16 St. Louis Rams Tampa Bay Buccaneers St. Louis Rams Tampa Bay Buccaneers 23 13 -3.5 St. Louis Rams St. Louis Rams 0.64 TRUE 0.221818181818182 22.6 22.4666666666667 18.0666666666667 23.1333333333333
3871 2013 16 Washington Redskins Dallas Cowboys Dallas Cowboys Washington Redskins 24 23 -3 Dallas Cowboys Dallas Cowboys 0.65 FALSE -0.331818181818182 21.8666666666667 30.5333333333333 27.8 27.2
3874 2013 16 Houston Texans Denver Broncos Denver Broncos Houston Texans 37 13 -10 Denver Broncos Denver Broncos 0.84 TRUE 0.603636363636364 17.7333333333333 27.4666666666667 38.1333333333333 25.6666666666667
3877 2013 16 San Diego Chargers Oakland Raiders San Diego Chargers Oakland Raiders 26 13 -10 San Diego Chargers San Diego Chargers 0.68 TRUE 0.298181818181818 24.6 21.6 20.5333333333333 27.9333333333333
3880 2013 16 Seattle Seahawks Arizona Cardinals Arizona Cardinals Seattle Seahawks 17 10 -9 Seattle Seahawks Seattle Seahawks 0.67 FALSE -0.37 26 14.8 23.9333333333333 20.0666666666667
3883 2013 16 Carolina Panthers New Orleans Saints Carolina Panthers New Orleans Saints 17 13 -3 Carolina Panthers Carolina Panthers 0.51 TRUE -0.0263636363636363 23 14.7333333333333 24.8 19.1333333333333
3886 2013 16 Detroit Lions New York Giants New York Giants Detroit Lions 23 20 -9 Detroit Lions Detroit Lions 0.61 FALSE -0.255454545454545 25.4666666666667 24.1333333333333 18.2666666666667 25.1333333333333
3889 2013 16 San Francisco 49ers Atlanta Falcons San Francisco 49ers Atlanta Falcons 34 24 -14.5 San Francisco 49ers San Francisco 49ers 0.69 FALSE -0.408181818181818 25.5333333333333 16.8 22.2 28.1333333333333
3892 2013 17 Seattle Seahawks St. Louis Rams Seattle Seahawks St. Louis Rams 27 9 -12 Seattle Seahawks Seattle Seahawks 0.57 TRUE 0.0881818181818181 26.0625 14.4375 21.75 22.75
3895 2013 17 Tennessee Titans Houston Texans Tennessee Titans Houston Texans 16 10 -7 Tennessee Titans Tennessee Titans 0.57 FALSE -0.179090909090909 22.625 23.8125 17.25 26.75
3898 2013 17 Indianapolis Colts Jacksonville Jaguars Indianapolis Colts Jacksonville Jaguars 30 10 -11 Indianapolis Colts Jacksonville Jaguars 0.52 FALSE -0.0836363636363636 24.4375 21 15.4375 28.0625
3901 2013 17 Miami Dolphins New York Jets New York Jets Miami Dolphins 20 7 -7 Miami Dolphins New York Jets 0.54 TRUE 0.030909090909091 19.8125 20.9375 18.125 24.1875
3904 2013 17 Minnesota Vikings Detroit Lions Minnesota Vikings Detroit Lions 14 13 -2 Detroit Lions Detroit Lions 0.55 FALSE -0.140909090909091 24.4375 30 24.6875 23.5
3907 2013 17 New York Giants Washington Redskins New York Giants Washington Redskins 20 6 -3.5 New York Giants New York Giants 0.59 TRUE 0.126363636363636 18.375 23.9375 20.875 29.875
3910 2013 17 Chicago Bears Green Bay Packers Green Bay Packers Chicago Bears 33 28 -3 Green Bay Packers Green Bay Packers 0.66 TRUE 0.26 27.8125 29.875 26.0625 26.75
3913 2013 17 New Orleans Saints Tampa Bay Buccaneers New Orleans Saints Tampa Bay Buccaneers 42 17 -10.5 New Orleans Saints New Orleans Saints 0.76 TRUE 0.450909090909091 25.875 19 18 24.3125
3916 2013 17 Atlanta Falcons Carolina Panthers Carolina Panthers Atlanta Falcons 21 20 -6 Carolina Panthers Carolina Panthers 0.61 FALSE -0.255454545454545 22.0625 27.6875 22.875 15.0625
3919 2013 17 New England Patriots Buffalo Bills New England Patriots Buffalo Bills 34 20 -7.5 New England Patriots New England Patriots 0.76 TRUE 0.450909090909091 27.75 21.125 21.1875 24.25
3922 2013 17 Oakland Raiders Denver Broncos Denver Broncos Oakland Raiders 34 14 -10 Denver Broncos Denver Broncos 0.76 TRUE 0.450909090909091 20.125 28.3125 37.875 24.9375
3925 2013 17 Cincinnati Bengals Baltimore Ravens Cincinnati Bengals Baltimore Ravens 34 17 -6.5 Cincinnati Bengals Cincinnati Bengals 0.54 TRUE 0.030909090909091 26.875 19.0625 20 22
3928 2013 17 Dallas Cowboys Philadelphia Eagles Philadelphia Eagles Dallas Cowboys 24 22 -7 Philadelphia Eagles Philadelphia Eagles 0.67 FALSE -0.37 27.4375 27 27.625 23.875
3931 2013 17 San Diego Chargers Kansas City Chiefs San Diego Chargers Kansas City Chiefs 27 24 -14.5 San Diego Chargers San Diego Chargers 0.54 FALSE -0.121818181818182 24.75 21.75 26.875 19.0625
3934 2013 17 Pittsburgh Steelers Cleveland Browns Pittsburgh Steelers Cleveland Browns 20 7 -9 Pittsburgh Steelers Pittsburgh Steelers 0.73 TRUE 0.393636363636364 23.6875 23.125 19.25 25.375
3937 2013 17 Arizona Cardinals San Francisco 49ers San Francisco 49ers Arizona Cardinals 23 20 -3 Arizona Cardinals San Francisco 49ers 0.58 TRUE 0.107272727272727 23.6875 20.25 25.375 17
3940 2014 1 Seattle Seahawks Green Bay Packers Seattle Seahawks Green Bay Packers 36 16 -5 Seattle Seahawks Green Bay Packers 0.51 FALSE -0.0645454545454546 36 16 16 36
3943 2014 1 Denver Broncos Indianapolis Colts Denver Broncos Indianapolis Colts 31 24 -8.5 Denver Broncos Denver Broncos 0.65 FALSE -0.331818181818182 31 24 24 31
3946 2014 1 Tampa Bay Buccaneers Carolina Panthers Carolina Panthers Tampa Bay Buccaneers 20 14 -4.5 Tampa Bay Buccaneers Tampa Bay Buccaneers 0.62 FALSE -0.274545454545455 14 20 20 14
3949 2014 1 Pittsburgh Steelers Cleveland Browns Pittsburgh Steelers Cleveland Browns 30 27 -6 Pittsburgh Steelers Pittsburgh Steelers 0.72 FALSE -0.465454545454545 30 27 27 30
3952 2014 1 New York Jets Oakland Raiders New York Jets Oakland Raiders 19 14 -6.5 New York Jets New York Jets 0.63 FALSE -0.293636363636364 19 14 14 19
3955 2014 1 Baltimore Ravens Cincinnati Bengals Cincinnati Bengals Baltimore Ravens 23 16 -1 Baltimore Ravens Baltimore Ravens 0.53 FALSE -0.102727272727273 16 23 23 16
3958 2014 1 Miami Dolphins New England Patriots Miami Dolphins New England Patriots 33 20 -4 New England Patriots New England Patriots 0.73 FALSE -0.484545454545455 33 20 20 33
3961 2014 1 Houston Texans Washington Redskins Houston Texans Washington Redskins 17 6 -3 Houston Texans Houston Texans 0.52 TRUE -0.00727272727272721 17 6 6 17
3964 2014 1 Atlanta Falcons New Orleans Saints Atlanta Falcons New Orleans Saints 37 34 -3 New Orleans Saints New Orleans Saints 0.69 FALSE -0.408181818181818 37 34 34 37
3967 2014 1 Dallas Cowboys San Francisco 49ers San Francisco 49ers Dallas Cowboys 28 17 -3.5 San Francisco 49ers San Francisco 49ers 0.64 TRUE 0.221818181818182 17 28 28 17
3970 2014 1 Philadelphia Eagles Jacksonville Jaguars Philadelphia Eagles Jacksonville Jaguars 34 17 -10 Philadelphia Eagles Philadelphia Eagles 0.7 TRUE 0.336363636363636 34 17 17 34
3973 2014 1 Kansas City Chiefs Tennessee Titans Tennessee Titans Kansas City Chiefs 26 10 -3 Kansas City Chiefs Kansas City Chiefs 0.66 FALSE -0.350909090909091 10 26 26 10
3976 2014 1 St. Louis Rams Minnesota Vikings Minnesota Vikings St. Louis Rams 34 6 -3 St. Louis Rams Minnesota Vikings 0.66 TRUE 0.26 6 34 34 6
3979 2014 1 Chicago Bears Buffalo Bills Buffalo Bills Chicago Bears 23 20 -7 Chicago Bears Chicago Bears 0.76 FALSE -0.541818181818182 20 23 23 20
3982 2014 1 Arizona Cardinals San Diego Chargers Arizona Cardinals San Diego Chargers 18 17 -3 Arizona Cardinals San Diego Chargers 0.56 TRUE 0.0690909090909093 18 17 17 18
3985 2014 1 Detroit Lions New York Giants Detroit Lions New York Giants 35 14 -6.5 Detroit Lions Detroit Lions 0.63 TRUE 0.202727272727273 35 14 14 35
3988 2014 2 Baltimore Ravens Pittsburgh Steelers Baltimore Ravens Pittsburgh Steelers 26 6 -2.5 Baltimore Ravens Pittsburgh Steelers 0.6 FALSE -0.236363636363636 21 14.5 18 26.5
3991 2014 2 San Francisco 49ers Chicago Bears Chicago Bears San Francisco 49ers 28 20 -7 San Francisco 49ers San Francisco 49ers 0.68 FALSE -0.389090909090909 24 22.5 24 21.5
3994 2014 2 Denver Broncos Kansas City Chiefs Denver Broncos Kansas City Chiefs 24 17 -13 Denver Broncos Denver Broncos 0.65 FALSE -0.331818181818182 27.5 20.5 13.5 25
3997 2014 2 Washington Redskins Jacksonville Jaguars Washington Redskins Jacksonville Jaguars 41 10 -5 Washington Redskins Jacksonville Jaguars 0.53 FALSE -0.102727272727273 23.5 13.5 13.5 37.5
4000 2014 2 Minnesota Vikings New England Patriots New England Patriots Minnesota Vikings 30 7 -3 New England Patriots New England Patriots 0.77 TRUE 0.47 20.5 18 25 20
4003 2014 2 Cleveland Browns New Orleans Saints Cleveland Browns New Orleans Saints 26 24 -6 New Orleans Saints New Orleans Saints 0.8 FALSE -0.618181818181818 26.5 27 29 31.5
4006 2014 2 Oakland Raiders Houston Texans Houston Texans Oakland Raiders 30 14 -3 Houston Texans Houston Texans 0.64 TRUE 0.221818181818182 14 24.5 23.5 10
4009 2014 2 New York Giants Arizona Cardinals Arizona Cardinals New York Giants 25 14 -2 New York Giants Arizona Cardinals 0.6 TRUE 0.145454545454546 14 30 21.5 15.5
4012 2014 2 Tennessee Titans Dallas Cowboys Dallas Cowboys Tennessee Titans 26 10 -3.5 Tennessee Titans Dallas Cowboys 0.6 TRUE 0.145454545454546 18 18 21.5 19
4015 2014 2 Buffalo Bills Miami Dolphins Buffalo Bills Miami Dolphins 29 10 -1 Buffalo Bills Miami Dolphins 0.54 FALSE -0.121818181818182 26 15 21.5 24.5
4018 2014 2 Cincinnati Bengals Atlanta Falcons Cincinnati Bengals Atlanta Falcons 24 10 -5.5 Cincinnati Bengals Atlanta Falcons 0.58 FALSE -0.198181818181818 23.5 13 23.5 29
4021 2014 2 San Diego Chargers Seattle Seahawks San Diego Chargers Seattle Seahawks 30 21 -5 Seattle Seahawks Seattle Seahawks 0.69 FALSE -0.408181818181818 23.5 19.5 28.5 23
4024 2014 2 Tampa Bay Buccaneers St. Louis Rams St. Louis Rams Tampa Bay Buccaneers 19 17 -4.5 Tampa Bay Buccaneers Tampa Bay Buccaneers 0.68 FALSE -0.389090909090909 15.5 19.5 12.5 25.5
4027 2014 2 Green Bay Packers New York Jets Green Bay Packers New York Jets 31 24 -7.5 Green Bay Packers Green Bay Packers 0.75 FALSE -0.522727272727273 23.5 30 21.5 22.5
4030 2014 2 Carolina Panthers Detroit Lions Carolina Panthers Detroit Lions 24 7 -1.5 Carolina Panthers Detroit Lions 0.61 FALSE -0.255454545454545 22 10.5 21 19
4033 2014 2 Indianapolis Colts Philadelphia Eagles Philadelphia Eagles Indianapolis Colts 30 27 -3 Indianapolis Colts Indianapolis Colts 0.56 FALSE -0.16 25.5 30.5 32 22
4036 2014 3 Atlanta Falcons Tampa Bay Buccaneers Atlanta Falcons Tampa Bay Buccaneers 56 14 -6.5 Atlanta Falcons Atlanta Falcons 0.7 TRUE 0.336363636363636 34.3333333333333 24 15 31.6666666666667
4039 2014 3 Arizona Cardinals San Francisco 49ers Arizona Cardinals San Francisco 49ers 23 14 -3 San Francisco 49ers San Francisco 49ers 0.7 FALSE -0.427272727272727 22 15 20.6666666666667 22.6666666666667
4042 2014 3 New York Giants Houston Texans New York Giants Houston Texans 30 17 -1 New York Giants Houston Texans 0.52 FALSE -0.0836363636363636 19.3333333333333 25.6666666666667 21.3333333333333 16.6666666666667
4045 2014 3 St. Louis Rams Dallas Cowboys Dallas Cowboys St. Louis Rams 34 31 -2 Dallas Cowboys Dallas Cowboys 0.84 TRUE 0.603636363636364 18.6666666666667 28.3333333333333 25.6666666666667 23
4048 2014 3 Buffalo Bills San Diego Chargers San Diego Chargers Buffalo Bills 22 10 -2.5 Buffalo Bills San Diego Chargers 0.57 TRUE 0.0881818181818181 20.6666666666667 17.3333333333333 23 16.3333333333333
4051 2014 3 Miami Dolphins Kansas City Chiefs Kansas City Chiefs Miami Dolphins 34 15 -5.5 Miami Dolphins Kansas City Chiefs 0.56 TRUE 0.0690909090909093 19.3333333333333 27.6666666666667 20.3333333333333 21.6666666666667
4054 2014 3 Cleveland Browns Baltimore Ravens Baltimore Ravens Cleveland Browns 23 21 -1.5 Baltimore Ravens Baltimore Ravens 0.66 TRUE 0.26 24.6666666666667 25.6666666666667 21.6666666666667 16.6666666666667
4057 2014 3 New England Patriots Oakland Raiders New England Patriots Oakland Raiders 16 9 -14 New England Patriots New England Patriots 0.72 FALSE -0.465454545454545 22 16.3333333333333 12.3333333333333 21.6666666666667
4060 2014 3 Detroit Lions Green Bay Packers Detroit Lions Green Bay Packers 19 7 -1.5 Detroit Lions Green Bay Packers 0.6 FALSE -0.236363636363636 20.3333333333333 15 18 26.3333333333333
4063 2014 3 Cincinnati Bengals Tennessee Titans Cincinnati Bengals Tennessee Titans 33 7 -6.5 Cincinnati Bengals Cincinnati Bengals 0.72 TRUE 0.374545454545455 26.6666666666667 11 14.3333333333333 23
4066 2014 3 Jacksonville Jaguars Indianapolis Colts Indianapolis Colts Jacksonville Jaguars 44 17 -6.5 Indianapolis Colts Indianapolis Colts 0.83 TRUE 0.584545454545454 14.6666666666667 39.6666666666667 31.6666666666667 26
4069 2014 3 Carolina Panthers Pittsburgh Steelers Pittsburgh Steelers Carolina Panthers 37 19 -3 Carolina Panthers Carolina Panthers 0.66 FALSE -0.350909090909091 21 19.3333333333333 24.3333333333333 24
4072 2014 3 New Orleans Saints Minnesota Vikings New Orleans Saints Minnesota Vikings 20 9 -10 New Orleans Saints New Orleans Saints 0.79 TRUE 0.508181818181818 26 24 16.6666666666667 18.6666666666667
4075 2014 3 Philadelphia Eagles Washington Redskins Philadelphia Eagles Washington Redskins 37 34 -4 Philadelphia Eagles Philadelphia Eagles 0.58 FALSE -0.198181818181818 33.6666666666667 26 27 21.3333333333333
4078 2014 3 Seattle Seahawks Denver Broncos Seattle Seahawks Denver Broncos 26 20 -4.5 Seattle Seahawks Denver Broncos 0.54 FALSE -0.121818181818182 27.6666666666667 22 25 22.3333333333333
4081 2014 3 New York Jets Chicago Bears Chicago Bears New York Jets 27 19 -1.5 New York Jets Chicago Bears 0.67 TRUE 0.279090909090909 20.6666666666667 24 25 20.6666666666667
4084 2014 4 Washington Redskins New York Giants New York Giants Washington Redskins 45 14 -3 Washington Redskins Washington Redskins 0.57 FALSE -0.179090909090909 23.75 27.25 25.75 22.75
4087 2014 4 Dallas Cowboys New Orleans Saints Dallas Cowboys New Orleans Saints 38 17 -3 New Orleans Saints New Orleans Saints 0.64 FALSE -0.312727272727273 28.75 21.5 23.75 27.5
4090 2014 4 Pittsburgh Steelers Tampa Bay Buccaneers Tampa Bay Buccaneers Pittsburgh Steelers 27 24 -7.5 Pittsburgh Steelers Pittsburgh Steelers 0.69 FALSE -0.408181818181818 24.25 24.75 18 29.75
4093 2014 4 San Diego Chargers Jacksonville Jaguars San Diego Chargers Jacksonville Jaguars 33 14 -12 San Diego Chargers San Diego Chargers 0.63 TRUE 0.202727272727273 25.5 15.75 14.5 38
4096 2014 4 San Francisco 49ers Philadelphia Eagles San Francisco 49ers Philadelphia Eagles 26 21 -4 San Francisco 49ers Philadelphia Eagles 0.55 FALSE -0.140909090909091 22 22.25 30.5 26
4099 2014 4 Chicago Bears Green Bay Packers Green Bay Packers Chicago Bears 38 17 -2 Green Bay Packers Green Bay Packers 0.65 TRUE 0.240909090909091 23 25 23 24
4102 2014 4 New York Jets Detroit Lions Detroit Lions New York Jets 24 17 -1.5 New York Jets Detroit Lions 0.69 TRUE 0.317272727272727 19.75 24 21.25 15.5
4105 2014 4 Indianapolis Colts Tennessee Titans Indianapolis Colts Tennessee Titans 41 17 -7.5 Indianapolis Colts Indianapolis Colts 0.77 TRUE 0.47 34 23.75 15 27.5
4108 2014 4 Houston Texans Buffalo Bills Houston Texans Buffalo Bills 23 17 -3 Houston Texans Houston Texans 0.51 TRUE -0.0263636363636363 21.75 16.75 19.75 18.75
4111 2014 4 Baltimore Ravens Carolina Panthers Baltimore Ravens Carolina Panthers 38 10 -3 Baltimore Ravens Baltimore Ravens 0.51 TRUE -0.0263636363636363 25.75 15 18.25 24
4114 2014 4 Minnesota Vikings Atlanta Falcons Minnesota Vikings Atlanta Falcons 41 28 -6 Atlanta Falcons Atlanta Falcons 0.8 FALSE -0.618181818181818 22.75 21 32.75 28.25
4117 2014 4 Oakland Raiders Miami Dolphins Miami Dolphins Oakland Raiders 38 14 -4 Miami Dolphins Miami Dolphins 0.62 TRUE 0.183636363636364 12.75 25.75 24 24.25
4120 2014 4 Kansas City Chiefs New England Patriots Kansas City Chiefs New England Patriots 41 14 -3 New England Patriots New England Patriots 0.57 FALSE -0.179090909090909 25.5 19.75 20 22.5
4123 2014 5 Green Bay Packers Minnesota Vikings Green Bay Packers Minnesota Vikings 42 10 -9.5 Green Bay Packers Green Bay Packers 0.75 TRUE 0.431818181818182 26.8 21.2 20.2 25.2
4126 2014 5 Tennessee Titans Cleveland Browns Cleveland Browns Tennessee Titans 29 28 -1 Cleveland Browns Cleveland Browns 0.64 FALSE -0.312727272727273 17.6 27.8 25.75 26.25
4129 2014 5 Denver Broncos Arizona Cardinals Denver Broncos Arizona Cardinals 41 20 -8.5 Denver Broncos Denver Broncos 0.56 TRUE 0.0690909090909093 29 21.75 21.5 21.5
4132 2014 5 New England Patriots Cincinnati Bengals New England Patriots Cincinnati Bengals 43 17 -2.5 Cincinnati Bengals Cincinnati Bengals 0.61 FALSE -0.255454545454545 24.6 21.4 24.25 19
4135 2014 5 San Diego Chargers New York Jets San Diego Chargers New York Jets 31 0 -7 San Diego Chargers San Diego Chargers 0.64 TRUE 0.221818181818182 26.6 12.6 15.8 25.4
4138 2014 5 Detroit Lions Buffalo Bills Buffalo Bills Detroit Lions 17 14 -5 Detroit Lions Detroit Lions 0.61 FALSE -0.255454545454545 19.8 15.8 19.2 17.8
4141 2014 5 Indianapolis Colts Baltimore Ravens Indianapolis Colts Baltimore Ravens 20 13 -3 Indianapolis Colts Indianapolis Colts 0.61 TRUE 0.164545454545455 31.2 21.6 23.2 16
4144 2014 5 Philadelphia Eagles St. Louis Rams Philadelphia Eagles St. Louis Rams 34 28 -4 Philadelphia Eagles Philadelphia Eagles 0.73 TRUE 0.393636363636364 31.2 26.4 21 29.75
4147 2014 5 Dallas Cowboys Houston Texans Dallas Cowboys Houston Texans 20 17 -5.5 Dallas Cowboys Houston Texans 0.5 TRUE -0.0454545454545454 27 20.6 20.8 17.4
4150 2014 5 Carolina Panthers Chicago Bears Carolina Panthers Chicago Bears 31 24 -1.5 Carolina Panthers Chicago Bears 0.66 FALSE -0.350909090909091 20.8 24 23.2 26.2
4153 2014 5 New York Giants Atlanta Falcons New York Giants Atlanta Falcons 30 20 -4 New York Giants New York Giants 0.52 TRUE -0.00727272727272721 26.6 22.2 30.2 28.6
4156 2014 5 New Orleans Saints Tampa Bay Buccaneers New Orleans Saints Tampa Bay Buccaneers 37 31 -11 New Orleans Saints New Orleans Saints 0.68 FALSE -0.389090909090909 26.4 28.2 20.6 31.2
4159 2014 5 Jacksonville Jaguars Pittsburgh Steelers Pittsburgh Steelers Jacksonville Jaguars 17 9 -6 Pittsburgh Steelers Pittsburgh Steelers 0.71 TRUE 0.355454545454545 13.4 33.8 22.8 21.6
4162 2014 5 San Francisco 49ers Kansas City Chiefs San Francisco 49ers Kansas City Chiefs 22 17 -5 San Francisco 49ers San Francisco 49ers 0.51 FALSE -0.0645454545454546 22 21.2 23.8 20.2
4165 2014 5 Washington Redskins Seattle Seahawks Seattle Seahawks Washington Redskins 27 17 -7 Seattle Seahawks Seattle Seahawks 0.69 TRUE 0.317272727272727 22.4 27.2 27.5 20.75
4168 2014 6 Houston Texans Indianapolis Colts Indianapolis Colts Houston Texans 33 28 -2.5 Indianapolis Colts Indianapolis Colts 0.74 TRUE 0.412727272727273 22 20 31.5 22.6666666666667
4171 2014 6 New York Jets Denver Broncos Denver Broncos New York Jets 31 17 -10 Denver Broncos Denver Broncos 0.82 TRUE 0.565454545454545 16 26.3333333333333 29.4 20.8
4174 2014 6 Cleveland Browns Pittsburgh Steelers Cleveland Browns Pittsburgh Steelers 31 10 -2 Cleveland Browns Pittsburgh Steelers 0.66 FALSE -0.350909090909091 26.8 23 20.6666666666667 23.1666666666667
4177 2014 6 Arizona Cardinals Washington Redskins Arizona Cardinals Washington Redskins 30 20 -5.5 Arizona Cardinals Arizona Cardinals 0.65 TRUE 0.240909090909091 23.2 21.2 22 27.6666666666667
4180 2014 6 Oakland Raiders San Diego Chargers San Diego Chargers Oakland Raiders 31 28 -7.5 San Diego Chargers San Diego Chargers 0.75 FALSE -0.522727272727273 15.8 26.8 27.3333333333333 15.1666666666667
4183 2014 6 Minnesota Vikings Detroit Lions Detroit Lions Minnesota Vikings 17 3 -1.5 Minnesota Vikings Detroit Lions 0.62 TRUE 0.183636363636364 17.3333333333333 23.8333333333333 19.3333333333333 13.6666666666667
4186 2014 6 Tampa Bay Buccaneers Baltimore Ravens Baltimore Ravens Tampa Bay Buccaneers 48 17 -3.5 Baltimore Ravens Baltimore Ravens 0.63 TRUE 0.202727272727273 20 34 27.3333333333333 16.1666666666667
4189 2014 6 Seattle Seahawks Dallas Cowboys Dallas Cowboys Seattle Seahawks 30 23 -9.5 Seattle Seahawks Dallas Cowboys 0.52 TRUE -0.00727272727272721 26.6 22.6 27.5 21
4192 2014 6 Philadelphia Eagles New York Giants Philadelphia Eagles New York Giants 27 0 -1.5 Philadelphia Eagles New York Giants 0.56 FALSE -0.16 30.5 22 22.1666666666667 23
4195 2014 6 Tennessee Titans Jacksonville Jaguars Tennessee Titans Jacksonville Jaguars 16 14 -4 Tennessee Titans Tennessee Titans 0.52 FALSE -0.0836363636363636 17.3333333333333 25.5 13.5 30.8333333333333
4198 2014 6 Miami Dolphins Green Bay Packers Green Bay Packers Miami Dolphins 27 24 -2 Green Bay Packers Green Bay Packers 0.73 TRUE 0.393636363636364 24 24.8 26.8333333333333 21.6666666666667
4201 2014 6 Cincinnati Bengals Carolina Panthers Cincinnati Bengals Carolina Panthers 37 37 -7 Cincinnati Bengals Cincinnati Bengals 0.53 FALSE -0.102727272727273 26.8 22.6 23.5 26.1666666666667
4204 2014 6 Buffalo Bills New England Patriots New England Patriots Buffalo Bills 37 22 0 PickEm New England Patriots 0.69 TRUE 0.317272727272727 19.6666666666667 21 26.6666666666667 21.5
4207 2014 6 Atlanta Falcons Chicago Bears Chicago Bears Atlanta Falcons 27 13 -3.5 Atlanta Falcons Atlanta Falcons 0.55 FALSE -0.140909090909091 27.3333333333333 28.3333333333333 23.8333333333333 24
4210 2014 6 St. Louis Rams San Francisco 49ers San Francisco 49ers St. Louis Rams 31 17 -3.5 San Francisco 49ers San Francisco 49ers 0.75 TRUE 0.431818181818182 20.2 30 23.5 20.5
4213 2014 7 New England Patriots New York Jets New England Patriots New York Jets 27 25 -9.5 New England Patriots New England Patriots 0.64 FALSE -0.312727272727273 26.7142857142857 22 17.2857142857143 26.4285714285714
4216 2014 7 Jacksonville Jaguars Cleveland Browns Jacksonville Jaguars Cleveland Browns 24 6 -4.5 Cleveland Browns Cleveland Browns 0.64 FALSE -0.312727272727273 15 27.2857142857143 23.3333333333333 23.1666666666667
4219 2014 7 Oakland Raiders Arizona Cardinals Arizona Cardinals Oakland Raiders 24 13 -3.5 Arizona Cardinals Arizona Cardinals 0.78 TRUE 0.489090909090909 15.3333333333333 26.3333333333333 23.3333333333333 19.8333333333333
4222 2014 7 Indianapolis Colts Cincinnati Bengals Indianapolis Colts Cincinnati Bengals 27 0 -3.5 Indianapolis Colts Indianapolis Colts 0.67 TRUE 0.279090909090909 30.8571428571429 19.4285714285714 22.3333333333333 23.3333333333333
4225 2014 7 San Diego Chargers Kansas City Chiefs Kansas City Chiefs San Diego Chargers 23 20 -3 San Diego Chargers Kansas City Chiefs 0.54 TRUE 0.030909090909091 26.2857142857143 16.2857142857143 23.6666666666667 20.1666666666667
4228 2014 7 Denver Broncos San Francisco 49ers Denver Broncos San Francisco 49ers 42 17 -6.5 Denver Broncos San Francisco 49ers 0.54 FALSE -0.121818181818182 31.5 20.1666666666667 22.5714285714286 23.5714285714286
4231 2014 7 St. Louis Rams Seattle Seahawks St. Louis Rams Seattle Seahawks 28 26 -6.5 Seattle Seahawks Seattle Seahawks 0.76 FALSE -0.541818181818182 21.5 29.3333333333333 26.5 23.5
4234 2014 7 Detroit Lions New Orleans Saints Detroit Lions New Orleans Saints 24 23 -1.5 Detroit Lions New Orleans Saints 0.57 TRUE 0.0881818181818181 20 15 25.8333333333333 27.5
4237 2014 7 Baltimore Ravens Atlanta Falcons Baltimore Ravens Atlanta Falcons 29 7 -7 Baltimore Ravens Baltimore Ravens 0.58 TRUE 0.107272727272727 27.5714285714286 14.8571428571429 24.4285714285714 28.4285714285714
4240 2014 7 Chicago Bears Miami Dolphins Miami Dolphins Chicago Bears 27 14 -3 Chicago Bears Chicago Bears 0.65 FALSE -0.331818181818182 22.4285714285714 24.4285714285714 24.5 23
4243 2014 7 Dallas Cowboys New York Giants Dallas Cowboys New York Giants 31 21 -5.5 Dallas Cowboys Dallas Cowboys 0.59 TRUE 0.126363636363636 28 21 22 24.1428571428571
4246 2014 7 Washington Redskins Tennessee Titans Washington Redskins Tennessee Titans 19 17 -6 Washington Redskins Washington Redskins 0.56 FALSE -0.16 21.5714285714286 26.1428571428571 17.2857142857143 24.5714285714286
4249 2014 7 Buffalo Bills Minnesota Vikings Buffalo Bills Minnesota Vikings 17 16 -6.5 Buffalo Bills Buffalo Bills 0.61 FALSE -0.255454545454545 19.2857142857143 20.2857142857143 17.1428571428571 22.8571428571429
4252 2014 7 Green Bay Packers Carolina Panthers Green Bay Packers Carolina Panthers 38 17 -6.5 Green Bay Packers Green Bay Packers 0.5 TRUE -0.0454545454545454 28.4285714285714 21 22.5714285714286 27.8571428571429
4255 2014 7 Pittsburgh Steelers Houston Texans Pittsburgh Steelers Houston Texans 30 23 -3 Pittsburgh Steelers Pittsburgh Steelers 0.53 TRUE 0.0118181818181819 22 23.1428571428571 22.1428571428571 21.4285714285714
4258 2014 8 Denver Broncos San Diego Chargers Denver Broncos San Diego Chargers 35 21 -9 Denver Broncos San Diego Chargers 0.53 FALSE -0.102727272727273 32 20.2857142857143 25.625 18.625
4261 2014 8 Arizona Cardinals Philadelphia Eagles Arizona Cardinals Philadelphia Eagles 24 20 -1 Philadelphia Eagles Philadelphia Eagles 0.57 FALSE -0.179090909090909 23.4285714285714 19.8571428571429 29 22.2857142857143
4264 2014 8 Cincinnati Bengals Baltimore Ravens Cincinnati Bengals Baltimore Ravens 27 24 -3 Baltimore Ravens Baltimore Ravens 0.63 FALSE -0.293636363636364 23 23.4285714285714 27.125 16.375
4267 2014 8 Kansas City Chiefs St. Louis Rams Kansas City Chiefs St. Louis Rams 34 7 -7 Kansas City Chiefs Kansas City Chiefs 0.64 TRUE 0.221818181818182 25.1428571428571 18.2857142857143 19.4285714285714 30
4270 2014 8 Cleveland Browns Oakland Raiders Cleveland Browns Oakland Raiders 23 13 -6.5 Cleveland Browns Cleveland Browns 0.56 TRUE 0.0690909090909093 23.2857142857143 21.7142857142857 15 25.8571428571429
4273 2014 8 Pittsburgh Steelers Indianapolis Colts Pittsburgh Steelers Indianapolis Colts 51 34 -4.5 Indianapolis Colts Indianapolis Colts 0.79 FALSE -0.599090909090909 25.625 24.5 31.25 23.375
4276 2014 8 New England Patriots Chicago Bears New England Patriots Chicago Bears 51 23 -6 New England Patriots New England Patriots 0.58 TRUE 0.107272727272727 29.75 22.125 22.5 27.75
4279 2014 8 Atlanta Falcons Detroit Lions Detroit Lions Atlanta Falcons 22 21 -3.5 Detroit Lions Detroit Lions 0.65 FALSE -0.331818181818182 24 27.625 20.25 15.75
4282 2014 8 New Orleans Saints Green Bay Packers New Orleans Saints Green Bay Packers 44 23 -2 New Orleans Saints Green Bay Packers 0.69 FALSE -0.408181818181818 28.4285714285714 26.8571428571429 27.75 23.875
4285 2014 8 New York Jets Buffalo Bills Buffalo Bills New York Jets 43 23 -3 New York Jets New York Jets 0.56 FALSE -0.16 18 28.5 22.25 20.625
4288 2014 8 Carolina Panthers Seattle Seahawks Seattle Seahawks Carolina Panthers 13 9 -6 Seattle Seahawks Seattle Seahawks 0.64 FALSE -0.312727272727273 20.875 26 24.5714285714286 21.4285714285714
4291 2014 8 Jacksonville Jaguars Miami Dolphins Miami Dolphins Jacksonville Jaguars 27 13 -6.5 Miami Dolphins Miami Dolphins 0.69 TRUE 0.317272727272727 14.75 27.25 24.8571428571429 21.5714285714286
4294 2014 8 Tampa Bay Buccaneers Minnesota Vikings Minnesota Vikings Tampa Bay Buccaneers 19 13 -1.5 Tampa Bay Buccaneers Tampa Bay Buccaneers 0.56 FALSE -0.16 19 31.8571428571429 17.375 21.625
4297 2014 8 Tennessee Titans Houston Texans Houston Texans Tennessee Titans 30 16 -3.5 Houston Texans Houston Texans 0.75 TRUE 0.431818181818182 17.125 25.25 23.125 20.75
4300 2014 8 Dallas Cowboys Washington Redskins Washington Redskins Dallas Cowboys 20 17 -9.5 Dallas Cowboys Dallas Cowboys 0.69 FALSE -0.408181818181818 26.625 20.875 21.375 25
4303 2014 9 Carolina Panthers New Orleans Saints New Orleans Saints Carolina Panthers 28 10 -3 New Orleans Saints New Orleans Saints 0.63 TRUE 0.202727272727273 19.6666666666667 26.2222222222222 28.375 24.75
4306 2014 9 New England Patriots Denver Broncos New England Patriots Denver Broncos 43 21 -3 Denver Broncos Denver Broncos 0.52 FALSE -0.0836363636363636 31.2222222222222 22 30.625 23.125
4309 2014 9 Dallas Cowboys Arizona Cardinals Arizona Cardinals Dallas Cowboys 28 17 -1.5 Dallas Cowboys Arizona Cardinals 0.75 TRUE 0.431818181818182 25.5555555555556 21.6666666666667 24 19.5
4312 2014 9 Cincinnati Bengals Jacksonville Jaguars Cincinnati Bengals Jacksonville Jaguars 33 23 -10 Cincinnati Bengals Cincinnati Bengals 0.7 FALSE -0.427272727272727 24.25 23.375 15.6666666666667 27.8888888888889
4315 2014 9 Cleveland Browns Tampa Bay Buccaneers Cleveland Browns Tampa Bay Buccaneers 22 17 -7 Cleveland Browns Cleveland Browns 0.61 FALSE -0.255454545454545 23.125 21.125 18.75 30.625
4318 2014 9 Kansas City Chiefs New York Jets Kansas City Chiefs New York Jets 24 10 -8.5 Kansas City Chiefs Kansas City Chiefs 0.64 TRUE 0.221818181818182 25 17.25 17.1111111111111 28
4321 2014 9 Miami Dolphins San Diego Chargers Miami Dolphins San Diego Chargers 37 0 -2.5 Miami Dolphins San Diego Chargers 0.71 FALSE -0.446363636363636 26.375 18.875 22.7777777777778 20.6666666666667
4324 2014 9 San Francisco 49ers St. Louis Rams St. Louis Rams San Francisco 49ers 13 10 -10.5 San Francisco 49ers San Francisco 49ers 0.72 FALSE -0.465454545454545 21 22.25 18.625 27.5
4327 2014 9 Seattle Seahawks Oakland Raiders Seattle Seahawks Oakland Raiders 30 24 -13.5 Seattle Seahawks Seattle Seahawks 0.71 FALSE -0.446363636363636 25.25 21.75 16.125 26.375
4330 2014 9 Pittsburgh Steelers Baltimore Ravens Pittsburgh Steelers Baltimore Ravens 43 23 -2 Pittsburgh Steelers Pittsburgh Steelers 0.52 TRUE -0.00727272727272721 27.5555555555556 24.3333333333333 26.6666666666667 19.3333333333333
4333 2014 9 Minnesota Vikings Washington Redskins Minnesota Vikings Washington Redskins 29 26 0 PickEm Washington Redskins 0.59 FALSE -0.217272727272727 18.6666666666667 22.1111111111111 21.8888888888889 25.4444444444444
4336 2014 9 Houston Texans Philadelphia Eagles Philadelphia Eagles Houston Texans 31 21 -2 Philadelphia Eagles Philadelphia Eagles 0.7 TRUE 0.336363636363636 22.8888888888889 21.8888888888889 29.25 22.125
4339 2014 9 New York Giants Indianapolis Colts Indianapolis Colts New York Giants 40 24 -3 Indianapolis Colts Indianapolis Colts 0.73 TRUE 0.393636363636364 22.25 26.125 32.2222222222222 23.4444444444444
4342 2014 10 Cincinnati Bengals Cleveland Browns Cleveland Browns Cincinnati Bengals 24 3 -6.5 Cincinnati Bengals Cincinnati Bengals 0.71 FALSE -0.446363636363636 21.8888888888889 23.4444444444444 23.2222222222222 19.1111111111111
4345 2014 10 Arizona Cardinals St. Louis Rams Arizona Cardinals St. Louis Rams 31 14 -7 Arizona Cardinals Arizona Cardinals 0.7 TRUE 0.336363636363636 24.7777777777778 18.8888888888889 18.1111111111111 27.8888888888889
4348 2014 10 Oakland Raiders Denver Broncos Denver Broncos Oakland Raiders 41 17 -12.5 Denver Broncos Denver Broncos 0.86 TRUE 0.641818181818182 16.2222222222222 28 31.7777777777778 22.4444444444444
4351 2014 10 Baltimore Ravens Tennessee Titans Baltimore Ravens Tennessee Titans 21 7 -10.5 Baltimore Ravens Baltimore Ravens 0.72 TRUE 0.374545454545455 26.1 18.1 16 24.7777777777778
4354 2014 10 Green Bay Packers Chicago Bears Green Bay Packers Chicago Bears 55 14 -9.5 Green Bay Packers Green Bay Packers 0.71 TRUE 0.355454545454545 30.7777777777778 22.7777777777778 21.5555555555556 30.7777777777778
4357 2014 10 Seattle Seahawks New York Giants Seattle Seahawks New York Giants 38 17 -9.5 Seattle Seahawks Seattle Seahawks 0.59 TRUE 0.126363636363636 26.6666666666667 21.2222222222222 21.6666666666667 27.4444444444444
4360 2014 10 Buffalo Bills Kansas City Chiefs Kansas City Chiefs Buffalo Bills 17 13 -1.5 Buffalo Bills Kansas City Chiefs 0.66 TRUE 0.26 21.2222222222222 20.2222222222222 24.1111111111111 16.7777777777778
4363 2014 10 New Orleans Saints San Francisco 49ers San Francisco 49ers New Orleans Saints 27 24 -5.5 New Orleans Saints New Orleans Saints 0.61 FALSE -0.255454545454545 27.8888888888889 25 21.6666666666667 22.4444444444444
4366 2014 10 Detroit Lions Miami Dolphins Detroit Lions Miami Dolphins 20 16 -3 Detroit Lions Detroit Lions 0.64 TRUE 0.221818181818182 20.2222222222222 15.7777777777778 25.2222222222222 19
4369 2014 10 Tampa Bay Buccaneers Atlanta Falcons Atlanta Falcons Tampa Bay Buccaneers 27 17 -3 Atlanta Falcons Atlanta Falcons 0.71 TRUE 0.355454545454545 18.5555555555556 30.2222222222222 24.3333333333333 26.4444444444444
4372 2014 10 Jacksonville Jaguars Dallas Cowboys Dallas Cowboys Jacksonville Jaguars 31 17 -7.5 Dallas Cowboys Dallas Cowboys 0.74 TRUE 0.412727272727273 15.8 28.2 26.1 21.2
4375 2014 10 New York Jets Pittsburgh Steelers New York Jets Pittsburgh Steelers 20 13 -4.5 Pittsburgh Steelers Pittsburgh Steelers 0.78 FALSE -0.58 17.4 26.5 26.1 23.9
4378 2014 10 Philadelphia Eagles Carolina Panthers Philadelphia Eagles Carolina Panthers 45 21 -7 Philadelphia Eagles Philadelphia Eagles 0.64 TRUE 0.221818181818182 31 22 19.8 28.1
4381 2014 11 Miami Dolphins Buffalo Bills Miami Dolphins Buffalo Bills 22 9 -4 Miami Dolphins Miami Dolphins 0.58 TRUE 0.107272727272727 24.9 18 20 20.4
4384 2014 11 New Orleans Saints Cincinnati Bengals Cincinnati Bengals New Orleans Saints 27 10 -8 New Orleans Saints New Orleans Saints 0.72 FALSE -0.465454545454545 26.1 25.2 22.4 22.1
4387 2014 11 Carolina Panthers Atlanta Falcons Atlanta Falcons Carolina Panthers 19 17 -2.5 Atlanta Falcons Atlanta Falcons 0.62 FALSE -0.274545454545455 19.5454545454545 27.2727272727273 23.8 25.5
4390 2014 11 St. Louis Rams Denver Broncos St. Louis Rams Denver Broncos 22 7 -9 Denver Broncos Denver Broncos 0.84 FALSE -0.694545454545454 18.5 25.8 29.3 22.4
4393 2014 11 San Diego Chargers Oakland Raiders San Diego Chargers Oakland Raiders 13 6 -10 San Diego Chargers San Diego Chargers 0.64 FALSE -0.312727272727273 21.8 19.2 15.2 26.5
4396 2014 11 Green Bay Packers Philadelphia Eagles Green Bay Packers Philadelphia Eagles 53 20 -5.5 Green Bay Packers Green Bay Packers 0.77 TRUE 0.47 33 22.5 29.9 25.1
4399 2014 11 Cleveland Browns Houston Texans Houston Texans Cleveland Browns 23 7 -4 Cleveland Browns Cleveland Browns 0.64 FALSE -0.312727272727273 21.6 19.5 22.9 20.4
4402 2014 11 Kansas City Chiefs Seattle Seahawks Kansas City Chiefs Seattle Seahawks 24 20 -1 Seattle Seahawks Seattle Seahawks 0.53 FALSE -0.102727272727273 24.1 17.1 26 21.5
4405 2014 11 New York Giants San Francisco 49ers San Francisco 49ers New York Giants 16 10 -4 San Francisco 49ers San Francisco 49ers 0.71 TRUE 0.355454545454545 20.5 26.3 21.1 21.2
4408 2014 11 Indianapolis Colts New England Patriots New England Patriots Indianapolis Colts 42 20 -3 Indianapolis Colts New England Patriots 0.67 TRUE 0.279090909090909 31 25.3 32.3 21.8
4411 2014 11 Chicago Bears Minnesota Vikings Chicago Bears Minnesota Vikings 21 13 -2.5 Chicago Bears Chicago Bears 0.67 TRUE 0.279090909090909 21.5 29 18.1 22
4414 2014 11 Washington Redskins Tampa Bay Buccaneers Tampa Bay Buccaneers Washington Redskins 27 7 -7 Washington Redskins Washington Redskins 0.59 FALSE -0.217272727272727 20.4 25.6 19.4 27.9
4417 2014 11 Arizona Cardinals Detroit Lions Arizona Cardinals Detroit Lions 14 6 -1.5 Detroit Lions Detroit Lions 0.54 FALSE -0.121818181818182 23.7 17.6 18.8 15.6
4420 2014 11 Tennessee Titans Pittsburgh Steelers Pittsburgh Steelers Tennessee Titans 27 24 -7 Pittsburgh Steelers Pittsburgh Steelers 0.83 FALSE -0.675454545454545 16.8 25 26.1818181818182 23.9090909090909
4423 2014 12 Oakland Raiders Kansas City Chiefs Oakland Raiders Kansas City Chiefs 24 20 -7.5 Kansas City Chiefs Kansas City Chiefs 0.74 FALSE -0.503636363636364 16 25.9090909090909 23.7272727272727 17.7272727272727
4426 2014 12 San Francisco 49ers Washington Redskins San Francisco 49ers Washington Redskins 17 13 -9.5 San Francisco 49ers San Francisco 49ers 0.75 FALSE -0.522727272727273 20.7272727272727 20.4545454545455 19.7272727272727 24.8181818181818
4429 2014 12 Seattle Seahawks Arizona Cardinals Seattle Seahawks Arizona Cardinals 19 3 -7.5 Seattle Seahawks Arizona Cardinals 0.5 FALSE -0.0454545454545454 25.3636363636364 19.8181818181818 21.8181818181818 17.7272727272727
4432 2014 12 San Diego Chargers St. Louis Rams San Diego Chargers St. Louis Rams 27 24 -5 San Diego Chargers San Diego Chargers 0.51 FALSE -0.0645454545454546 22.2727272727273 19.6363636363636 19 25.9090909090909
4435 2014 12 Denver Broncos Miami Dolphins Denver Broncos Miami Dolphins 39 36 -6.5 Denver Broncos Denver Broncos 0.77 FALSE -0.560909090909091 30.1818181818182 23.6363636363636 25.9090909090909 19.9090909090909
4438 2014 12 Philadelphia Eagles Tennessee Titans Philadelphia Eagles Tennessee Titans 43 24 -11.5 Philadelphia Eagles Philadelphia Eagles 0.62 TRUE 0.183636363636364 31.0909090909091 25 17.4545454545455 26.6363636363636
4441 2014 12 Houston Texans Cincinnati Bengals Cincinnati Bengals Houston Texans 22 13 -2.5 Houston Texans Cincinnati Bengals 0.55 TRUE 0.05 22 20.5454545454545 22.3636363636364 21.2727272727273
4444 2014 12 New York Giants Dallas Cowboys Dallas Cowboys New York Giants 31 28 -4.5 Dallas Cowboys Dallas Cowboys 0.69 FALSE -0.408181818181818 21.1818181818182 26.7272727272727 26.5454545454545 21.8181818181818
4447 2014 12 Indianapolis Colts Jacksonville Jaguars Indianapolis Colts Jacksonville Jaguars 23 3 -13.5 Indianapolis Colts Indianapolis Colts 0.76 TRUE 0.450909090909091 30.2727272727273 23.2727272727273 14.6363636363636 27.7272727272727
4450 2014 12 Chicago Bears Tampa Bay Buccaneers Chicago Bears Tampa Bay Buccaneers 21 13 -4.5 Chicago Bears Chicago Bears 0.64 TRUE 0.221818181818182 21.4545454545455 27.5454545454545 18.8181818181818 27.2727272727273
4453 2014 12 Atlanta Falcons Cleveland Browns Cleveland Browns Atlanta Falcons 26 24 -2.5 Atlanta Falcons Atlanta Falcons 0.56 FALSE -0.16 23.8181818181818 25.5454545454545 22 19.9090909090909
4456 2014 12 Minnesota Vikings Green Bay Packers Green Bay Packers Minnesota Vikings 24 21 -8 Green Bay Packers Green Bay Packers 0.81 FALSE -0.637272727272727 18.3636363636364 22.1818181818182 32.1818181818182 22.3636363636364
4459 2014 12 New England Patriots Detroit Lions New England Patriots Detroit Lions 34 9 -7 New England Patriots New England Patriots 0.73 TRUE 0.393636363636364 32.4545454545455 20.6363636363636 17.9090909090909 17.2727272727273
4462 2014 12 New Orleans Saints Baltimore Ravens Baltimore Ravens New Orleans Saints 34 27 -3 New Orleans Saints New Orleans Saints 0.61 FALSE -0.255454545454545 26.1818181818182 26 26.8181818181818 18.9090909090909
4465 2014 12 Buffalo Bills New York Jets Buffalo Bills New York Jets 38 3 -2.5 Buffalo Bills Buffalo Bills 0.65 TRUE 0.240909090909091 21.6363636363636 18.8181818181818 16.0909090909091 27.5454545454545
4468 2014 13 San Francisco 49ers Seattle Seahawks Seattle Seahawks San Francisco 49ers 19 3 -1.5 San Francisco 49ers Seattle Seahawks 0.5 TRUE -0.0454545454545454 19.25 20.3333333333333 24.8333333333333 18.4166666666667
4471 2014 13 Detroit Lions Chicago Bears Detroit Lions Chicago Bears 34 17 -7 Detroit Lions Detroit Lions 0.59 TRUE 0.126363636363636 19.25 17.25 21.0833333333333 28.0833333333333
4474 2014 13 Dallas Cowboys Philadelphia Eagles Philadelphia Eagles Dallas Cowboys 33 10 -3.5 Dallas Cowboys Dallas Cowboys 0.52 FALSE -0.0836363636363636 25.1666666666667 22.75 31.25 23.75
4477 2014 13 Kansas City Chiefs Denver Broncos Denver Broncos Kansas City Chiefs 29 16 0 PickEm Denver Broncos 0.71 TRUE 0.355454545454545 23.0833333333333 18.6666666666667 30.0833333333333 23
4480 2014 13 Tampa Bay Buccaneers Cincinnati Bengals Cincinnati Bengals Tampa Bay Buccaneers 14 13 -6 Cincinnati Bengals Cincinnati Bengals 0.79 FALSE -0.599090909090909 18.3333333333333 26.1666666666667 21.6666666666667 20.5833333333333
4483 2014 13 Indianapolis Colts Washington Redskins Indianapolis Colts Washington Redskins 49 27 -8 Indianapolis Colts Indianapolis Colts 0.8 TRUE 0.527272727272727 31.8333333333333 23.5833333333333 20.3333333333333 26.8333333333333
4486 2014 13 Baltimore Ravens San Diego Chargers San Diego Chargers Baltimore Ravens 34 33 -6.5 Baltimore Ravens Baltimore Ravens 0.58 FALSE -0.198181818181818 27.3333333333333 20.1666666666667 23.25 20.75
4489 2014 13 Houston Texans Tennessee Titans Houston Texans Tennessee Titans 45 21 -7 Houston Texans Houston Texans 0.7 TRUE 0.336363636363636 23.9166666666667 20.5833333333333 17.75 28.1666666666667
4492 2014 13 Jacksonville Jaguars New York Giants Jacksonville Jaguars New York Giants 25 24 -3 New York Giants New York Giants 0.85 FALSE -0.713636363636364 15.5 27.4166666666667 21.4166666666667 26.5833333333333
4495 2014 13 St. Louis Rams Oakland Raiders St. Louis Rams Oakland Raiders 52 0 -6 St. Louis Rams St. Louis Rams 0.71 TRUE 0.355454545454545 21.75 23.75 14.6666666666667 28.0833333333333
4498 2014 13 Atlanta Falcons Arizona Cardinals Atlanta Falcons Arizona Cardinals 29 18 -1.5 Arizona Cardinals Arizona Cardinals 0.7 FALSE -0.427272727272727 24.25 24.9166666666667 21.5 18.6666666666667
4501 2014 13 Green Bay Packers New England Patriots Green Bay Packers New England Patriots 26 21 -3 Green Bay Packers New England Patriots 0.58 FALSE -0.198181818181818 31.6666666666667 22.25 31.5 21.0833333333333
4504 2014 13 Pittsburgh Steelers New Orleans Saints New Orleans Saints Pittsburgh Steelers 35 32 -3.5 Pittsburgh Steelers Pittsburgh Steelers 0.64 FALSE -0.312727272727273 26.6666666666667 24.8333333333333 26.9166666666667 26.5
4507 2014 13 Minnesota Vikings Carolina Panthers Minnesota Vikings Carolina Panthers 31 13 -2.5 Minnesota Vikings Minnesota Vikings 0.51 TRUE -0.0263636363636363 19.4166666666667 21.4166666666667 19 27.5833333333333
4510 2014 13 Buffalo Bills Cleveland Browns Buffalo Bills Cleveland Browns 26 10 -3 Buffalo Bills Cleveland Browns 0.58 FALSE -0.198181818181818 22 18.0833333333333 21 20.4166666666667
4513 2014 13 New York Jets Miami Dolphins Miami Dolphins New York Jets 16 13 -7 Miami Dolphins Miami Dolphins 0.79 FALSE -0.599090909090909 15.8333333333333 26.5833333333333 25.0833333333333 19.3333333333333
4516 2014 14 Chicago Bears Dallas Cowboys Dallas Cowboys Chicago Bears 41 28 -3.5 Dallas Cowboys Dallas Cowboys 0.6 TRUE 0.145454545454546 21.6153846153846 29.0769230769231 26.3846153846154 23.1538461538462
4519 2014 14 Oakland Raiders San Francisco 49ers Oakland Raiders San Francisco 49ers 24 13 -8.5 San Francisco 49ers San Francisco 49ers 0.73 FALSE -0.484545454545455 15.3846153846154 26.9230769230769 18.7692307692308 20.6153846153846
4522 2014 14 New Orleans Saints Carolina Panthers Carolina Panthers New Orleans Saints 41 10 -9.5 New Orleans Saints New Orleans Saints 0.75 FALSE -0.522727272727273 25.6153846153846 27.6153846153846 20.6923076923077 26.2307692307692
4525 2014 14 Cleveland Browns Indianapolis Colts Indianapolis Colts Cleveland Browns 25 24 -3 Indianapolis Colts Indianapolis Colts 0.76 FALSE -0.541818181818182 21.2307692307692 20.7692307692308 31.3076923076923 23.6153846153846
4528 2014 14 Denver Broncos Buffalo Bills Denver Broncos Buffalo Bills 24 17 -9 Denver Broncos Denver Broncos 0.76 FALSE -0.541818181818182 29.6153846153846 22.5384615384615 21.6153846153846 18.5384615384615
4531 2014 14 San Diego Chargers New England Patriots New England Patriots San Diego Chargers 23 14 -4 New England Patriots New England Patriots 0.75 TRUE 0.431818181818182 22.5384615384615 20.9230769230769 30.8461538461538 20.5384615384615
4534 2014 14 Washington Redskins St. Louis Rams St. Louis Rams Washington Redskins 24 0 -3 St. Louis Rams St. Louis Rams 0.7 TRUE 0.336363636363636 18.7692307692308 26.6153846153846 21.9230769230769 21.9230769230769
4537 2014 14 Minnesota Vikings New York Jets Minnesota Vikings New York Jets 30 24 -4 Minnesota Vikings Minnesota Vikings 0.7 TRUE 0.336363636363636 20.2307692307692 21.6153846153846 16.4615384615385 26.8461538461538
4540 2014 14 Jacksonville Jaguars Houston Texans Houston Texans Jacksonville Jaguars 27 13 -6.5 Houston Texans Houston Texans 0.78 TRUE 0.489090909090909 15.3076923076923 27.3846153846154 24.1538461538462 20
4543 2014 14 Miami Dolphins Baltimore Ravens Baltimore Ravens Miami Dolphins 28 13 -3 Miami Dolphins Baltimore Ravens 0.59 TRUE 0.126363636363636 24.1538461538462 20 27.3846153846154 19.6153846153846
4546 2014 14 Detroit Lions Tampa Bay Buccaneers Detroit Lions Tampa Bay Buccaneers 34 17 -10.5 Detroit Lions Detroit Lions 0.69 TRUE 0.317272727272727 20.3846153846154 17.2307692307692 18.2307692307692 26.7692307692308
4549 2014 14 Cincinnati Bengals Pittsburgh Steelers Pittsburgh Steelers Cincinnati Bengals 42 21 -3 Cincinnati Bengals Pittsburgh Steelers 0.54 TRUE 0.030909090909091 21.6153846153846 22.2307692307692 27.8461538461538 24.5384615384615
4552 2014 14 Tennessee Titans New York Giants New York Giants Tennessee Titans 36 7 -3 New York Giants New York Giants 0.75 TRUE 0.431818181818182 16.9230769230769 28.7692307692308 22.5384615384615 25.0769230769231
4555 2014 14 Philadelphia Eagles Seattle Seahawks Seattle Seahawks Philadelphia Eagles 24 14 -1.5 Seattle Seahawks Seattle Seahawks 0.61 TRUE 0.164545454545455 29.9230769230769 23.7692307692308 24.7692307692308 18.0769230769231
4558 2014 14 Arizona Cardinals Kansas City Chiefs Arizona Cardinals Kansas City Chiefs 17 14 -2.5 Kansas City Chiefs Kansas City Chiefs 0.58 FALSE -0.198181818181818 21.1538461538462 18.3076923076923 22.3846153846154 18.5384615384615
4561 2014 14 Green Bay Packers Atlanta Falcons Green Bay Packers Atlanta Falcons 43 37 -13.5 Green Bay Packers Green Bay Packers 0.77 FALSE -0.560909090909091 32.5384615384615 23.3846153846154 25.2307692307692 26.3076923076923
4564 2014 15 St. Louis Rams Arizona Cardinals Arizona Cardinals St. Louis Rams 12 6 -6 St. Louis Rams Arizona Cardinals 0.52 TRUE -0.00727272727272721 20.7857142857143 21.2142857142857 20.5 17.4285714285714
4567 2014 15 Cleveland Browns Cincinnati Bengals Cincinnati Bengals Cleveland Browns 30 0 -2 Cleveland Browns Cincinnati Bengals 0.57 TRUE 0.0881818181818181 19.7142857142857 21.4285714285714 22.2142857142857 20.6428571428571
4570 2014 15 Atlanta Falcons Pittsburgh Steelers Pittsburgh Steelers Atlanta Falcons 27 20 -3 Pittsburgh Steelers Pittsburgh Steelers 0.61 TRUE 0.164545454545455 24.8571428571429 26.3571428571429 27.7857142857143 24.2142857142857
4573 2014 15 New York Giants Washington Redskins New York Giants Washington Redskins 24 13 -7 New York Giants New York Giants 0.72 TRUE 0.374545454545455 22.6428571428571 24.2142857142857 18.3571428571429 26.4285714285714
4576 2014 15 Tennessee Titans New York Jets New York Jets Tennessee Titans 16 11 -3 New York Jets New York Jets 0.57 TRUE 0.0881818181818181 16.5 27.8571428571429 16.4285714285714 25.7142857142857
4579 2014 15 Kansas City Chiefs Oakland Raiders Kansas City Chiefs Oakland Raiders 31 13 -11 Kansas City Chiefs Kansas City Chiefs 0.54 TRUE 0.030909090909091 23 18.1428571428571 15.2142857142857 27.2142857142857
4582 2014 15 New England Patriots Miami Dolphins New England Patriots Miami Dolphins 41 13 -9 New England Patriots New England Patriots 0.76 TRUE 0.450909090909091 31.5714285714286 20 23.3571428571429 21.5
4585 2014 15 San Diego Chargers Denver Broncos Denver Broncos San Diego Chargers 22 10 -4 Denver Broncos Denver Broncos 0.64 TRUE 0.221818181818182 21.6428571428571 21 29.0714285714286 21.6428571428571
4588 2014 15 Philadelphia Eagles Dallas Cowboys Dallas Cowboys Philadelphia Eagles 38 27 -3.5 Philadelphia Eagles Dallas Cowboys 0.53 TRUE 0.0118181818181819 29.7142857142857 24.7857142857143 27.2142857142857 23.4285714285714
4591 2014 15 Baltimore Ravens Jacksonville Jaguars Baltimore Ravens Jacksonville Jaguars 20 12 -14 Baltimore Ravens Baltimore Ravens 0.7 FALSE -0.427272727272727 26.8571428571429 19.0714285714286 15.0714285714286 26.8571428571429
4594 2014 15 Seattle Seahawks San Francisco 49ers Seattle Seahawks San Francisco 49ers 17 7 -9.5 Seattle Seahawks Seattle Seahawks 0.56 TRUE 0.0690909090909093 24.2142857142857 17.2857142857143 17.9285714285714 20.3571428571429
4597 2014 15 Buffalo Bills Green Bay Packers Buffalo Bills Green Bay Packers 21 13 -3.5 Green Bay Packers Green Bay Packers 0.76 FALSE -0.541818181818182 21.5714285714286 18.1428571428571 31.1428571428571 23.2142857142857
4600 2014 15 Indianapolis Colts Houston Texans Indianapolis Colts Houston Texans 17 10 -7 Indianapolis Colts Indianapolis Colts 0.7 FALSE -0.427272727272727 30.2857142857143 22.6428571428571 23.1428571428571 19.7857142857143
4603 2014 15 Detroit Lions Minnesota Vikings Detroit Lions Minnesota Vikings 16 14 -8 Detroit Lions Detroit Lions 0.63 FALSE -0.293636363636364 20.0714285714286 17 19.7857142857143 21.2142857142857
4606 2014 15 Carolina Panthers Tampa Bay Buccaneers Carolina Panthers Tampa Bay Buccaneers 19 17 -3.5 Carolina Panthers Carolina Panthers 0.62 FALSE -0.274545454545455 20.5714285714286 25.5714285714286 18.1428571428571 26.2142857142857
4609 2014 15 Chicago Bears New Orleans Saints New Orleans Saints Chicago Bears 31 15 -3.5 New Orleans Saints New Orleans Saints 0.74 TRUE 0.412727272727273 21.1428571428571 29.2142857142857 26 26.7142857142857
4612 2014 16 Jacksonville Jaguars Tennessee Titans Jacksonville Jaguars Tennessee Titans 21 13 -4.5 Jacksonville Jaguars Jacksonville Jaguars 0.72 TRUE 0.374545454545455 15.4666666666667 25.9333333333333 16.2666666666667 27.4
4615 2014 16 Washington Redskins Philadelphia Eagles Washington Redskins Philadelphia Eagles 27 24 -7 Philadelphia Eagles Philadelphia Eagles 0.79 FALSE -0.599090909090909 18.9333333333333 26.2666666666667 29.3333333333333 24.9333333333333
4618 2014 16 San Francisco 49ers San Diego Chargers San Diego Chargers San Francisco 49ers 38 35 -1.5 San Francisco 49ers San Diego Chargers 0.6 TRUE 0.145454545454546 19.0666666666667 21.5333333333333 22.7333333333333 21.9333333333333
4621 2014 16 Dallas Cowboys Indianapolis Colts Dallas Cowboys Indianapolis Colts 42 7 -3.5 Dallas Cowboys Indianapolis Colts 0.54 FALSE -0.121818181818182 28.2 22.3333333333333 28.7333333333333 23.9333333333333
4624 2014 16 Arizona Cardinals Seattle Seahawks Seattle Seahawks Arizona Cardinals 35 6 -9.5 Seattle Seahawks Seattle Seahawks 0.56 TRUE 0.0690909090909093 19.5333333333333 18.6 24.9333333333333 16.5333333333333
4627 2014 16 New York Jets New England Patriots New England Patriots New York Jets 17 16 -9.5 New England Patriots New England Patriots 0.73 FALSE -0.484545454545455 16.4 25.1333333333333 30.6 19.7333333333333
4630 2014 16 Carolina Panthers Cleveland Browns Carolina Panthers Cleveland Browns 17 13 -6 Carolina Panthers Carolina Panthers 0.65 FALSE -0.331818181818182 20.3333333333333 24.7333333333333 19.2666666666667 21.1333333333333
4633 2014 16 Houston Texans Baltimore Ravens Houston Texans Baltimore Ravens 25 13 -6.5 Baltimore Ravens Baltimore Ravens 0.72 FALSE -0.465454545454545 23.2666666666667 19.3333333333333 25.9333333333333 19.4666666666667
4636 2014 16 St. Louis Rams New York Giants New York Giants St. Louis Rams 37 27 -6.5 St. Louis Rams New York Giants 0.57 TRUE 0.0881818181818181 21.2 22.2666666666667 23.6 24.4
4639 2014 16 Oakland Raiders Buffalo Bills Oakland Raiders Buffalo Bills 26 24 -6.5 Buffalo Bills Buffalo Bills 0.61 FALSE -0.255454545454545 15.9333333333333 27 21.7333333333333 18.6666666666667
4642 2014 16 Pittsburgh Steelers Kansas City Chiefs Pittsburgh Steelers Kansas City Chiefs 20 12 -2.5 Pittsburgh Steelers Pittsburgh Steelers 0.68 TRUE 0.298181818181818 27.2666666666667 23.4 22.2666666666667 18.2666666666667
4645 2014 16 Chicago Bears Detroit Lions Detroit Lions Chicago Bears 20 14 -10 Detroit Lions Detroit Lions 0.76 FALSE -0.541818181818182 20.6666666666667 28.6 20.0666666666667 16.8
4648 2014 16 Tampa Bay Buccaneers Green Bay Packers Green Bay Packers Tampa Bay Buccaneers 20 3 -11.5 Green Bay Packers Green Bay Packers 0.78 TRUE 0.489090909090909 17.1333333333333 25.8 30.4 21.8666666666667
4651 2014 16 Miami Dolphins Minnesota Vikings Miami Dolphins Minnesota Vikings 37 35 -4.5 Miami Dolphins Minnesota Vikings 0.56 TRUE 0.0690909090909093 24.2666666666667 22.4 20.8 22.2666666666667
4654 2014 16 New Orleans Saints Atlanta Falcons Atlanta Falcons New Orleans Saints 30 14 -6 New Orleans Saints New Orleans Saints 0.51 FALSE -0.0645454545454546 25.2 26.9333333333333 25.2 25.5333333333333
4657 2014 16 Cincinnati Bengals Denver Broncos Cincinnati Bengals Denver Broncos 37 28 -3.5 Denver Broncos Denver Broncos 0.71 FALSE -0.446363636363636 23.2 21.1333333333333 29 22.6666666666667
4660 2014 17 San Francisco 49ers Arizona Cardinals San Francisco 49ers Arizona Cardinals 20 17 -6.5 San Francisco 49ers San Francisco 49ers 0.58 FALSE -0.198181818181818 19.125 21.25 19.375 18.6875
4663 2014 17 Washington Redskins Dallas Cowboys Dallas Cowboys Washington Redskins 44 17 -6 Dallas Cowboys Dallas Cowboys 0.62 TRUE 0.183636363636364 18.8125 27.375 29.1875 22
4666 2014 17 Tampa Bay Buccaneers New Orleans Saints New Orleans Saints Tampa Bay Buccaneers 23 20 -6 New Orleans Saints New Orleans Saints 0.71 FALSE -0.446363636363636 17.3125 25.625 25.0625 26.5
4669 2014 17 Atlanta Falcons Carolina Panthers Carolina Panthers Atlanta Falcons 34 3 -3 Atlanta Falcons Atlanta Falcons 0.6 FALSE -0.236363636363636 23.8125 26.0625 21.1875 23.375
4672 2014 17 Pittsburgh Steelers Cincinnati Bengals Pittsburgh Steelers Cincinnati Bengals 27 17 -3 Pittsburgh Steelers Pittsburgh Steelers 0.65 TRUE 0.240909090909091 27.25 23 22.8125 21.5
4675 2014 17 New York Giants Philadelphia Eagles Philadelphia Eagles New York Giants 34 26 -1 New York Giants New York Giants 0.56 FALSE -0.16 23.75 25 29.625 25
4678 2014 17 Green Bay Packers Detroit Lions Green Bay Packers Detroit Lions 30 20 -8.5 Green Bay Packers Green Bay Packers 0.64 TRUE 0.221818181818182 30.375 21.75 20.0625 17.625
4681 2014 17 Houston Texans Jacksonville Jaguars Houston Texans Jacksonville Jaguars 23 17 -8.5 Houston Texans Houston Texans 0.6 FALSE -0.236363636363636 23.25 19.1875 15.5625 25.75
4684 2014 17 Baltimore Ravens Cleveland Browns Baltimore Ravens Cleveland Browns 20 10 -14 Baltimore Ravens Baltimore Ravens 0.67 FALSE -0.37 25.5625 18.875 18.6875 21.0625
4687 2014 17 Seattle Seahawks St. Louis Rams Seattle Seahawks St. Louis Rams 20 6 -11.5 Seattle Seahawks Seattle Seahawks 0.65 TRUE 0.240909090909091 24.625 15.875 20.25 22.125
4690 2014 17 Miami Dolphins New York Jets New York Jets Miami Dolphins 37 24 -7 Miami Dolphins Miami Dolphins 0.55 FALSE -0.140909090909091 24.25 23.3125 17.6875 25.0625
4693 2014 17 Minnesota Vikings Chicago Bears Minnesota Vikings Chicago Bears 13 9 -7 Minnesota Vikings Minnesota Vikings 0.54 FALSE -0.121818181818182 20.3125 21.4375 19.9375 27.625
4696 2014 17 Kansas City Chiefs San Diego Chargers Kansas City Chiefs San Diego Chargers 19 7 -3 Kansas City Chiefs San Diego Chargers 0.76 FALSE -0.541818181818182 22.0625 17.5625 21.75 21.75
4699 2014 17 Denver Broncos Oakland Raiders Denver Broncos Oakland Raiders 47 14 -15.5 Denver Broncos Denver Broncos 0.53 TRUE 0.0118181818181819 30.125 22.125 15.8125 28.25
4702 2014 17 Tennessee Titans Indianapolis Colts Indianapolis Colts Tennessee Titans 27 10 -7.5 Indianapolis Colts Indianapolis Colts 0.76 TRUE 0.450909090909091 15.875 27.375 28.625 23.0625
4705 2014 17 New England Patriots Buffalo Bills Buffalo Bills New England Patriots 17 9 -4.5 New England Patriots New England Patriots 0.6 FALSE -0.236363636363636 29.25 19.5625 21.4375 18.0625
4708 2015 1 New England Patriots Pittsburgh Steelers New England Patriots Pittsburgh Steelers 28 21 -7 New England Patriots New England Patriots 0.67 FALSE -0.37 28 21 21 28
4711 2015 1 San Diego Chargers Detroit Lions San Diego Chargers Detroit Lions 33 28 -3.5 San Diego Chargers San Diego Chargers 0.53 TRUE 0.0118181818181819 33 28 28 33
4714 2015 1 Buffalo Bills Indianapolis Colts Buffalo Bills Indianapolis Colts 27 14 -1 Indianapolis Colts Indianapolis Colts 0.72 FALSE -0.465454545454545 27 14 14 27
4717 2015 1 New York Jets Cleveland Browns New York Jets Cleveland Browns 31 10 -3.5 New York Jets New York Jets 0.72 TRUE 0.374545454545455 31 10 10 31
4720 2015 1 Oakland Raiders Cincinnati Bengals Cincinnati Bengals Oakland Raiders 33 13 -3 Cincinnati Bengals Cincinnati Bengals 0.63 TRUE 0.202727272727273 13 33 33 13
4723 2015 1 Arizona Cardinals New Orleans Saints Arizona Cardinals New Orleans Saints 31 19 -2.5 Arizona Cardinals Arizona Cardinals 0.71 TRUE 0.355454545454545 31 19 19 31
4726 2015 1 Jacksonville Jaguars Carolina Panthers Carolina Panthers Jacksonville Jaguars 20 9 -3 Carolina Panthers Carolina Panthers 0.59 TRUE 0.126363636363636 9 20 20 9
4729 2015 1 Denver Broncos Baltimore Ravens Denver Broncos Baltimore Ravens 19 13 -4.5 Denver Broncos Denver Broncos 0.64 TRUE 0.221818181818182 19 13 13 19
4732 2015 1 Dallas Cowboys New York Giants Dallas Cowboys New York Giants 27 26 -7 Dallas Cowboys Dallas Cowboys 0.63 FALSE -0.293636363636364 27 26 26 27
4735 2015 1 St. Louis Rams Seattle Seahawks St. Louis Rams Seattle Seahawks 34 31 -3.5 Seattle Seahawks Seattle Seahawks 0.61 FALSE -0.255454545454545 34 31 31 34
4738 2015 1 Houston Texans Kansas City Chiefs Kansas City Chiefs Houston Texans 27 20 -1 Kansas City Chiefs Kansas City Chiefs 0.52 TRUE -0.00727272727272721 20 27 27 20
4741 2015 1 Chicago Bears Green Bay Packers Green Bay Packers Chicago Bears 31 23 -6.5 Green Bay Packers Green Bay Packers 0.84 TRUE 0.603636363636364 23 31 31 23
4744 2015 1 Washington Redskins Miami Dolphins Miami Dolphins Washington Redskins 17 10 -4 Miami Dolphins Miami Dolphins 0.85 TRUE 0.622727272727273 10 17 17 10
4747 2015 1 Tampa Bay Buccaneers Tennessee Titans Tennessee Titans Tampa Bay Buccaneers 42 14 -3 Tampa Bay Buccaneers Tennessee Titans 0.5 TRUE -0.0454545454545454 14 42 42 14
4750 2015 1 San Francisco 49ers Minnesota Vikings San Francisco 49ers Minnesota Vikings 20 3 -2.5 Minnesota Vikings Minnesota Vikings 0.66 FALSE -0.350909090909091 20 3 3 20
4753 2015 1 Atlanta Falcons Philadelphia Eagles Atlanta Falcons Philadelphia Eagles 26 24 -3 Philadelphia Eagles Philadelphia Eagles 0.71 FALSE -0.446363636363636 26 24 24 26
4756 2015 2 Kansas City Chiefs Denver Broncos Denver Broncos Kansas City Chiefs 31 24 -3 Kansas City Chiefs Kansas City Chiefs 0.52 FALSE -0.0836363636363636 25.5 25.5 25 18.5
4759 2015 2 New York Giants Atlanta Falcons Atlanta Falcons New York Giants 24 20 -2 New York Giants New York Giants 0.53 FALSE -0.102727272727273 23 25.5 25 22
4762 2015 2 Buffalo Bills New England Patriots New England Patriots Buffalo Bills 40 32 -1 Buffalo Bills New England Patriots 0.67 TRUE 0.279090909090909 29.5 27 34 26.5
4765 2015 2 New Orleans Saints Tampa Bay Buccaneers Tampa Bay Buccaneers New Orleans Saints 26 19 -9 New Orleans Saints New Orleans Saints 0.74 FALSE -0.503636363636364 19 28.5 20 30.5
4768 2015 2 Washington Redskins St. Louis Rams Washington Redskins St. Louis Rams 24 10 -3 St. Louis Rams St. Louis Rams 0.8 FALSE -0.618181818181818 17 13.5 22 27.5
4771 2015 2 Carolina Panthers Houston Texans Carolina Panthers Houston Texans 24 17 -3 Carolina Panthers Houston Texans 0.52 FALSE -0.0836363636363636 22 13 18.5 25.5
4774 2015 2 Minnesota Vikings Detroit Lions Minnesota Vikings Detroit Lions 26 16 -2.5 Minnesota Vikings Detroit Lions 0.68 FALSE -0.389090909090909 14.5 18 22 29.5
4777 2015 2 Cincinnati Bengals San Diego Chargers Cincinnati Bengals San Diego Chargers 24 19 -3.5 Cincinnati Bengals Cincinnati Bengals 0.52 TRUE -0.00727272727272721 28.5 16 26 26
4780 2015 2 Cleveland Browns Tennessee Titans Cleveland Browns Tennessee Titans 28 14 -1 Tennessee Titans Tennessee Titans 0.76 FALSE -0.541818181818182 19 22.5 28 21
4783 2015 2 Oakland Raiders Baltimore Ravens Oakland Raiders Baltimore Ravens 37 33 -6 Baltimore Ravens Baltimore Ravens 0.84 FALSE -0.694545454545454 25 33 23 28
4786 2015 2 Green Bay Packers Seattle Seahawks Green Bay Packers Seattle Seahawks 27 17 -3 Green Bay Packers Green Bay Packers 0.59 TRUE 0.126363636363636 29 20 24 30.5
4789 2015 2 Chicago Bears Arizona Cardinals Arizona Cardinals Chicago Bears 48 23 -2 Arizona Cardinals Arizona Cardinals 0.76 TRUE 0.450909090909091 23 39.5 39.5 21
4792 2015 2 Pittsburgh Steelers San Francisco 49ers Pittsburgh Steelers San Francisco 49ers 43 18 -6 Pittsburgh Steelers Pittsburgh Steelers 0.58 TRUE 0.107272727272727 32 23 19 23
4795 2015 2 Philadelphia Eagles Dallas Cowboys Dallas Cowboys Philadelphia Eagles 20 10 -6.5 Philadelphia Eagles Philadelphia Eagles 0.56 FALSE -0.16 17 23 23.5 18
4798 2015 2 Jacksonville Jaguars Miami Dolphins Jacksonville Jaguars Miami Dolphins 23 20 -6 Miami Dolphins Miami Dolphins 0.84 FALSE -0.694545454545454 16 20 18.5 16.5
4801 2015 2 Indianapolis Colts New York Jets New York Jets Indianapolis Colts 20 7 -6 Indianapolis Colts Indianapolis Colts 0.73 FALSE -0.484545454545455 10.5 23.5 25.5 8.5
4804 2015 3 New York Giants Washington Redskins New York Giants Washington Redskins 32 21 -3 New York Giants New York Giants 0.68 TRUE 0.298181818181818 26 24 18.3333333333333 19.6666666666667
4807 2015 3 Houston Texans Tampa Bay Buccaneers Houston Texans Tampa Bay Buccaneers 19 9 -6 Houston Texans Houston Texans 0.59 TRUE 0.126363636363636 18.6666666666667 20 16.3333333333333 26.6666666666667
4810 2015 3 St. Louis Rams Pittsburgh Steelers Pittsburgh Steelers St. Louis Rams 12 6 -1 St. Louis Rams Pittsburgh Steelers 0.74 TRUE 0.412727272727273 16.6666666666667 22.3333333333333 25.3333333333333 17.3333333333333
4813 2015 3 Carolina Panthers New Orleans Saints Carolina Panthers New Orleans Saints 27 22 -9.5 Carolina Panthers Carolina Panthers 0.63 FALSE -0.293636363636364 23.6666666666667 16 20 28
4816 2015 3 Miami Dolphins Buffalo Bills Buffalo Bills Miami Dolphins 41 14 -1 Miami Dolphins Buffalo Bills 0.66 TRUE 0.26 17 24.6666666666667 33.3333333333333 22.6666666666667
4819 2015 3 New York Jets Philadelphia Eagles Philadelphia Eagles New York Jets 24 17 -3 New York Jets New York Jets 0.55 FALSE -0.140909090909091 22.6666666666667 13.6666666666667 19.3333333333333 21
4822 2015 3 Arizona Cardinals San Francisco 49ers Arizona Cardinals San Francisco 49ers 47 7 -7 Arizona Cardinals Arizona Cardinals 0.66 TRUE 0.26 42 16.3333333333333 15 31
4825 2015 3 Dallas Cowboys Atlanta Falcons Atlanta Falcons Dallas Cowboys 39 28 0 PickEm Atlanta Falcons 0.7 TRUE 0.336363636363636 25 25 29.6666666666667 24
4828 2015 3 New England Patriots Jacksonville Jaguars New England Patriots Jacksonville Jaguars 51 17 -14 New England Patriots New England Patriots 0.79 TRUE 0.508181818181818 39.6666666666667 23.3333333333333 16.3333333333333 30.3333333333333
4831 2015 3 Minnesota Vikings San Diego Chargers Minnesota Vikings San Diego Chargers 31 14 -2 Minnesota Vikings San Diego Chargers 0.5 FALSE -0.0454545454545454 20 16.6666666666667 22 27.6666666666667
4834 2015 3 Cleveland Browns Oakland Raiders Oakland Raiders Cleveland Browns 27 20 -3.5 Cleveland Browns Oakland Raiders 0.6 TRUE 0.145454545454546 19.3333333333333 24 25.6666666666667 28.6666666666667
4837 2015 3 Seattle Seahawks Chicago Bears Seattle Seahawks Chicago Bears 26 0 -16.5 Seattle Seahawks Seattle Seahawks 0.71 TRUE 0.355454545454545 24.6666666666667 20.3333333333333 15.3333333333333 35
4840 2015 3 Tennessee Titans Indianapolis Colts Indianapolis Colts Tennessee Titans 35 33 -3.5 Indianapolis Colts Indianapolis Colts 0.82 FALSE -0.656363636363636 29.6666666666667 25.6666666666667 18.6666666666667 26.6666666666667
4843 2015 3 Baltimore Ravens Cincinnati Bengals Cincinnati Bengals Baltimore Ravens 28 24 -1.5 Baltimore Ravens Cincinnati Bengals 0.55 TRUE 0.05 23.3333333333333 28 28.3333333333333 18.6666666666667
4846 2015 3 Detroit Lions Denver Broncos Denver Broncos Detroit Lions 24 12 -3 Denver Broncos Denver Broncos 0.72 TRUE 0.374545454545455 18.6666666666667 27.6666666666667 24.6666666666667 16.3333333333333
4849 2015 3 Green Bay Packers Kansas City Chiefs Green Bay Packers Kansas City Chiefs 38 28 -5.5 Green Bay Packers Green Bay Packers 0.71 TRUE 0.355454545454545 32 22.6666666666667 26.3333333333333 29.6666666666667
4852 2015 4 Pittsburgh Steelers Baltimore Ravens Baltimore Ravens Pittsburgh Steelers 23 20 -3 Baltimore Ravens Baltimore Ravens 0.59 FALSE -0.217272727272727 24 18.75 23.25 26
4855 2015 4 Indianapolis Colts Jacksonville Jaguars Indianapolis Colts Jacksonville Jaguars 16 13 -4 Indianapolis Colts Indianapolis Colts 0.62 FALSE -0.274545454545455 18 23.25 15.5 26.75
4858 2015 4 Cincinnati Bengals Kansas City Chiefs Cincinnati Bengals Kansas City Chiefs 36 21 -3.5 Cincinnati Bengals Cincinnati Bengals 0.59 TRUE 0.126363636363636 30.25 19.25 25 31.25
4861 2015 4 San Diego Chargers Cleveland Browns San Diego Chargers Cleveland Browns 30 27 -5 San Diego Chargers San Diego Chargers 0.67 FALSE -0.37 24 27.5 21.25 25.5
4864 2015 4 Denver Broncos Minnesota Vikings Denver Broncos Minnesota Vikings 23 20 -7 Denver Broncos Denver Broncos 0.63 FALSE -0.293636363636364 24.25 17.25 20 18.25
4867 2015 4 New Orleans Saints Dallas Cowboys New Orleans Saints Dallas Cowboys 26 20 -3 New Orleans Saints Dallas Cowboys 0.58 FALSE -0.198181818181818 21.5 26 23.75 25.25
4870 2015 4 Buffalo Bills New York Giants New York Giants Buffalo Bills 24 10 -6 Buffalo Bills New York Giants 0.54 TRUE 0.030909090909091 27.5 23 25.5 20.5
4873 2015 4 Atlanta Falcons Houston Texans Atlanta Falcons Houston Texans 48 21 -4.5 Atlanta Falcons Atlanta Falcons 0.73 TRUE 0.393636363636364 34.25 23.25 19.25 27
4876 2015 4 Miami Dolphins New York Jets New York Jets Miami Dolphins 27 14 -2.5 New York Jets New York Jets 0.61 TRUE 0.164545454545455 16.25 25.25 23.75 13.75
4879 2015 4 Washington Redskins Philadelphia Eagles Washington Redskins Philadelphia Eagles 23 20 -3 Philadelphia Eagles Philadelphia Eagles 0.76 FALSE -0.541818181818182 19.5 19.75 19.5 21.5
4882 2015 4 Arizona Cardinals St. Louis Rams St. Louis Rams Arizona Cardinals 24 22 -7 Arizona Cardinals Arizona Cardinals 0.79 FALSE -0.599090909090909 37 18.25 18.5 22.25
4885 2015 4 San Francisco 49ers Green Bay Packers Green Bay Packers San Francisco 49ers 17 3 -7.5 Green Bay Packers Green Bay Packers 0.73 TRUE 0.393636363636364 12 27.5 28.25 17.75
4888 2015 4 Tampa Bay Buccaneers Carolina Panthers Carolina Panthers Tampa Bay Buccaneers 37 23 -3 Carolina Panthers Carolina Panthers 0.81 TRUE 0.546363636363637 18 29.25 27 17.75
4891 2015 4 Chicago Bears Oakland Raiders Chicago Bears Oakland Raiders 22 20 -3 Oakland Raiders Oakland Raiders 0.65 FALSE -0.331818181818182 17 31.25 24.25 27
4894 2015 4 Seattle Seahawks Detroit Lions Seattle Seahawks Detroit Lions 13 10 -10 Seattle Seahawks Seattle Seahawks 0.65 FALSE -0.331818181818182 21.75 17.75 16.5 24
4897 2015 5 Houston Texans Indianapolis Colts Indianapolis Colts Houston Texans 27 20 -5 Houston Texans Houston Texans 0.57 FALSE -0.179090909090909 19.4 27 19.8 22.6
4900 2015 5 Baltimore Ravens Cleveland Browns Cleveland Browns Baltimore Ravens 33 30 -6.5 Baltimore Ravens Baltimore Ravens 0.59 FALSE -0.217272727272727 24.6 27.4 23.6 26.4
4903 2015 5 Tennessee Titans Buffalo Bills Buffalo Bills Tennessee Titans 14 13 -1 Buffalo Bills Buffalo Bills 0.72 FALSE -0.465454545454545 25.5 22.75 24.8 21
4906 2015 5 Cincinnati Bengals Seattle Seahawks Cincinnati Bengals Seattle Seahawks 27 24 -3 Cincinnati Bengals Cincinnati Bengals 0.54 FALSE -0.121818181818182 29.6 20.2 22.2 19.6
4909 2015 5 Kansas City Chiefs Chicago Bears Chicago Bears Kansas City Chiefs 18 17 -9.5 Kansas City Chiefs Kansas City Chiefs 0.53 FALSE -0.102727272727273 23.4 28.6 17.2 28.4
4912 2015 5 New York Giants San Francisco 49ers New York Giants San Francisco 49ers 30 27 -7.5 New York Giants New York Giants 0.66 FALSE -0.350909090909091 26.4 21.8 15 28
4915 2015 5 Philadelphia Eagles New Orleans Saints Philadelphia Eagles New Orleans Saints 39 17 -6.5 Philadelphia Eagles New Orleans Saints 0.62 FALSE -0.274545454545455 23.4 20.6 20.6 28.6
4918 2015 5 Oakland Raiders Denver Broncos Denver Broncos Oakland Raiders 16 10 -5.5 Denver Broncos Denver Broncos 0.69 TRUE 0.317272727272727 21.4 24.8 22.6 15.8
4921 2015 5 Detroit Lions Arizona Cardinals Arizona Cardinals Detroit Lions 42 17 -4.5 Arizona Cardinals Arizona Cardinals 0.71 TRUE 0.355454545454545 16.6 27.6 38 18
4924 2015 5 Atlanta Falcons Washington Redskins Atlanta Falcons Washington Redskins 25 19 -7 Atlanta Falcons Atlanta Falcons 0.77 FALSE -0.560909090909091 32.4 22.4 19.4 20.8
4927 2015 5 Dallas Cowboys New England Patriots New England Patriots Dallas Cowboys 30 6 -8.5 New England Patriots New England Patriots 0.83 TRUE 0.584545454545454 20.2 26.2 37.25 19
4930 2015 5 Tampa Bay Buccaneers Jacksonville Jaguars Tampa Bay Buccaneers Jacksonville Jaguars 38 31 -1 Tampa Bay Buccaneers Jacksonville Jaguars 0.61 FALSE -0.255454545454545 22 29.6 18.6 29
4933 2015 5 Green Bay Packers St. Louis Rams Green Bay Packers St. Louis Rams 24 10 -9 Green Bay Packers Green Bay Packers 0.65 TRUE 0.240909090909091 27.4 16.2 16.8 22.6
4936 2015 5 San Diego Chargers Pittsburgh Steelers Pittsburgh Steelers San Diego Chargers 24 20 -4 San Diego Chargers San Diego Chargers 0.55 FALSE -0.140909090909091 23.2 26.8 24 19
4939 2015 6 New Orleans Saints Atlanta Falcons New Orleans Saints Atlanta Falcons 31 21 -3 Atlanta Falcons Atlanta Falcons 0.72 FALSE -0.465454545454545 22.3333333333333 27.3333333333333 30.5 23.8333333333333
4942 2015 6 New York Jets Washington Redskins New York Jets Washington Redskins 34 20 -7.5 New York Jets New York Jets 0.54 TRUE 0.030909090909091 25.8 15 19.5 23
4945 2015 6 Tennessee Titans Miami Dolphins Miami Dolphins Tennessee Titans 38 10 -2.5 Tennessee Titans Miami Dolphins 0.56 TRUE 0.0690909090909093 22.4 25.8 20.6 22.2
4948 2015 6 Seattle Seahawks Carolina Panthers Carolina Panthers Seattle Seahawks 27 23 -7 Seattle Seahawks Seattle Seahawks 0.51 FALSE -0.0645454545454546 22.3333333333333 20.8333333333333 27 18.8
4951 2015 6 Green Bay Packers San Diego Chargers Green Bay Packers San Diego Chargers 27 20 -10.5 Green Bay Packers Green Bay Packers 0.69 FALSE -0.408181818181818 27.3333333333333 16.8333333333333 22.6666666666667 26.8333333333333
4954 2015 6 San Francisco 49ers Baltimore Ravens San Francisco 49ers Baltimore Ravens 25 20 -2.5 Baltimore Ravens Baltimore Ravens 0.5 FALSE -0.0454545454545454 16.6666666666667 26.6666666666667 23.8333333333333 27
4957 2015 6 Jacksonville Jaguars Houston Texans Houston Texans Jacksonville Jaguars 31 20 -3 Jacksonville Jaguars Houston Texans 0.56 TRUE 0.0690909090909093 18.8333333333333 29.3333333333333 21.3333333333333 25.8333333333333
4960 2015 6 Buffalo Bills Cincinnati Bengals Cincinnati Bengals Buffalo Bills 34 21 -3 Cincinnati Bengals Cincinnati Bengals 0.73 TRUE 0.393636363636364 24.1666666666667 23.1666666666667 30.3333333333333 20.3333333333333
4963 2015 6 Pittsburgh Steelers Arizona Cardinals Pittsburgh Steelers Arizona Cardinals 25 13 -5.5 Arizona Cardinals Arizona Cardinals 0.71 FALSE -0.446363636363636 24.1666666666667 18 33.8333333333333 19.1666666666667
4966 2015 6 Minnesota Vikings Kansas City Chiefs Minnesota Vikings Kansas City Chiefs 16 10 -3.5 Minnesota Vikings Minnesota Vikings 0.67 TRUE 0.279090909090909 19.2 16.6 21.1666666666667 26.5
4969 2015 6 Indianapolis Colts New England Patriots New England Patriots Indianapolis Colts 34 27 -9 New England Patriots New England Patriots 0.82 FALSE -0.656363636363636 21 24.5 36.6 20.6
4972 2015 6 Detroit Lions Chicago Bears Detroit Lions Chicago Bears 37 34 -3.5 Detroit Lions Detroit Lions 0.54 FALSE -0.121818181818182 20 28.6666666666667 20 29.8333333333333
4975 2015 6 Cleveland Browns Denver Broncos Denver Broncos Cleveland Browns 26 23 -3.5 Denver Broncos Denver Broncos 0.75 FALSE -0.522727272727273 23.5 26.3333333333333 23.1666666666667 17
4978 2015 6 Philadelphia Eagles New York Giants Philadelphia Eagles New York Giants 27 7 -3.5 Philadelphia Eagles New York Giants 0.6 FALSE -0.236363636363636 24 18.3333333333333 23.1666666666667 22.6666666666667
4981 2015 7 San Francisco 49ers Seattle Seahawks Seattle Seahawks San Francisco 49ers 20 3 -6.5 Seattle Seahawks Seattle Seahawks 0.56 TRUE 0.0690909090909093 14.7142857142857 25.7142857142857 22 18.2857142857143
4984 2015 7 Carolina Panthers Philadelphia Eagles Carolina Panthers Philadelphia Eagles 27 16 -2.5 Carolina Panthers Carolina Panthers 0.6 TRUE 0.145454545454546 27 18.3333333333333 22.8571428571429 19.5714285714286
4987 2015 7 New York Giants Dallas Cowboys New York Giants Dallas Cowboys 27 20 -3 New York Giants New York Giants 0.6 TRUE 0.145454545454546 23.7142857142857 22.2857142857143 20.1666666666667 26.3333333333333
4990 2015 7 Washington Redskins Tampa Bay Buccaneers Washington Redskins Tampa Bay Buccaneers 31 30 -3 Washington Redskins Washington Redskins 0.62 FALSE -0.274545454545455 21.1428571428571 24 23.3333333333333 29.8333333333333
4993 2015 7 New England Patriots New York Jets New England Patriots New York Jets 30 23 -7 New England Patriots New England Patriots 0.57 FALSE -0.179090909090909 35.5 21 25.3333333333333 17.5
4996 2015 7 San Diego Chargers Oakland Raiders Oakland Raiders San Diego Chargers 37 29 -3.5 San Diego Chargers San Diego Chargers 0.66 FALSE -0.350909090909091 23.5714285714286 28.2857142857143 24 25.5
4999 2015 7 Detroit Lions Minnesota Vikings Minnesota Vikings Detroit Lions 28 19 -1 Detroit Lions Detroit Lions 0.52 FALSE -0.0836363636363636 19.8571428571429 28.5714285714286 20.6666666666667 17
5002 2015 7 Miami Dolphins Houston Texans Miami Dolphins Houston Texans 44 26 -4.5 Miami Dolphins Miami Dolphins 0.59 TRUE 0.126363636363636 24.5 22.8333333333333 22 28.4285714285714
5005 2015 7 St. Louis Rams Cleveland Browns St. Louis Rams Cleveland Browns 24 6 -6 St. Louis Rams St. Louis Rams 0.64 TRUE 0.221818181818182 18 19.8333333333333 21 26
5008 2015 7 Indianapolis Colts New Orleans Saints New Orleans Saints Indianapolis Colts 27 21 -5 Indianapolis Colts Indianapolis Colts 0.65 FALSE -0.331818181818182 21 24.8571428571429 23 26.4285714285714
5011 2015 7 Tennessee Titans Atlanta Falcons Atlanta Falcons Tennessee Titans 10 7 -6 Atlanta Falcons Atlanta Falcons 0.89 FALSE -0.79 19.8333333333333 23.1666666666667 27.5714285714286 21.4285714285714
5014 2015 7 Jacksonville Jaguars Buffalo Bills Jacksonville Jaguars Buffalo Bills 34 31 -3.5 Buffalo Bills Buffalo Bills 0.64 FALSE -0.312727272727273 21 29.5714285714286 25.1428571428571 24.7142857142857
5017 2015 7 Kansas City Chiefs Pittsburgh Steelers Kansas City Chiefs Pittsburgh Steelers 23 13 -3.5 Kansas City Chiefs Pittsburgh Steelers 0.65 FALSE -0.331818181818182 21.4285714285714 24.5714285714286 22.5714285714286 18.7142857142857
5020 2015 7 Arizona Cardinals Baltimore Ravens Arizona Cardinals Baltimore Ravens 26 18 -10 Arizona Cardinals Arizona Cardinals 0.57 FALSE -0.179090909090909 32.7142857142857 19 23 26.8571428571429
5023 2015 8 New England Patriots Miami Dolphins New England Patriots Miami Dolphins 36 7 -8 New England Patriots New England Patriots 0.68 TRUE 0.298181818181818 35.5714285714286 19 22 24.7142857142857
5026 2015 8 Chicago Bears Minnesota Vikings Minnesota Vikings Chicago Bears 23 20 -1.5 Minnesota Vikings Minnesota Vikings 0.63 TRUE 0.202727272727273 20 28.8571428571429 21 17.4285714285714
5029 2015 8 Oakland Raiders New York Jets Oakland Raiders New York Jets 34 20 -3 New York Jets New York Jets 0.59 FALSE -0.217272727272727 25.4285714285714 24.7142857142857 24.5714285714286 19.8571428571429
5032 2015 8 Dallas Cowboys Seattle Seahawks Seattle Seahawks Dallas Cowboys 13 12 -5 Seattle Seahawks Seattle Seahawks 0.74 FALSE -0.503636363636364 19 24.4285714285714 20.875 17.5
5035 2015 8 St. Louis Rams San Francisco 49ers St. Louis Rams San Francisco 49ers 27 6 -8 St. Louis Rams St. Louis Rams 0.59 TRUE 0.126363636363636 19.2857142857143 17.8571428571429 13.625 25.875
5038 2015 8 Pittsburgh Steelers Cincinnati Bengals Cincinnati Bengals Pittsburgh Steelers 16 10 0 PickEm Cincinnati Bengals 0.57 TRUE 0.0881818181818181 21 18.375 28.2857142857143 18.8571428571429
5041 2015 8 Denver Broncos Green Bay Packers Denver Broncos Green Bay Packers 29 10 -2.5 Green Bay Packers Green Bay Packers 0.7 FALSE -0.427272727272727 24 16 24.8571428571429 18.5714285714286
5044 2015 8 Kansas City Chiefs Detroit Lions Kansas City Chiefs Detroit Lions 45 10 -3 Kansas City Chiefs Detroit Lions 0.52 FALSE -0.0836363636363636 24.375 22.75 18.625 30.625
5047 2015 8 Houston Texans Tennessee Titans Houston Texans Tennessee Titans 20 6 -3.5 Houston Texans Houston Texans 0.58 TRUE 0.107272727272727 21.75 25.625 17.8571428571429 22.7142857142857
5050 2015 8 Baltimore Ravens San Diego Chargers Baltimore Ravens San Diego Chargers 29 26 -4.5 Baltimore Ravens San Diego Chargers 0.56 TRUE 0.0690909090909093 23.75 26.75 23.875 28.375
5053 2015 8 Cleveland Browns Arizona Cardinals Arizona Cardinals Cleveland Browns 34 20 -7 Arizona Cardinals Arizona Cardinals 0.83 TRUE 0.584545454545454 20.875 27 32.875 19.125
5056 2015 8 Atlanta Falcons Tampa Bay Buccaneers Tampa Bay Buccaneers Atlanta Falcons 23 20 -8 Atlanta Falcons Atlanta Falcons 0.78 FALSE -0.58 26.625 21.625 23.2857142857143 28.4285714285714
5059 2015 8 New Orleans Saints New York Giants New Orleans Saints New York Giants 52 49 -3 New Orleans Saints New Orleans Saints 0.55 FALSE -0.140909090909091 26.625 29.25 26.875 26
5062 2015 8 Carolina Panthers Indianapolis Colts Carolina Panthers Indianapolis Colts 29 26 -5.5 Carolina Panthers Carolina Panthers 0.63 FALSE -0.293636363636364 27.2857142857143 19.4285714285714 21.625 25.375
5065 2015 9 Cincinnati Bengals Cleveland Browns Cincinnati Bengals Cleveland Browns 31 10 -13 Cincinnati Bengals Cincinnati Bengals 0.64 TRUE 0.221818181818182 28.625 17.75 19.6666666666667 27.4444444444444
5068 2015 9 New York Jets Jacksonville Jaguars New York Jets Jacksonville Jaguars 28 23 -8 New York Jets New York Jets 0.59 FALSE -0.217272727272727 25 20.25 21.25 29.375
5071 2015 9 Dallas Cowboys Philadelphia Eagles Philadelphia Eagles Dallas Cowboys 33 27 -3 Philadelphia Eagles Philadelphia Eagles 0.57 TRUE 0.0881818181818181 20 25.5 24.125 20.5
5074 2015 9 Buffalo Bills Miami Dolphins Buffalo Bills Miami Dolphins 33 17 -4 Buffalo Bills Buffalo Bills 0.5 TRUE -0.0454545454545454 26.125 23.75 21.375 25.75
5077 2015 9 Carolina Panthers Green Bay Packers Carolina Panthers Green Bay Packers 37 29 -2.5 Green Bay Packers Green Bay Packers 0.64 FALSE -0.312727272727273 28.5 20.625 25.375 20.875
5080 2015 9 New England Patriots Washington Redskins New England Patriots Washington Redskins 27 10 -13.5 New England Patriots New England Patriots 0.78 TRUE 0.489090909090909 34.5 17.875 19.75 24.375
5083 2015 9 Minnesota Vikings St. Louis Rams Minnesota Vikings St. Louis Rams 21 18 -1 Minnesota Vikings Minnesota Vikings 0.52 TRUE -0.00727272727272721 21 17.5 19.125 18.25
5086 2015 9 Indianapolis Colts Denver Broncos Indianapolis Colts Denver Broncos 27 24 -3.5 Denver Broncos Denver Broncos 0.72 FALSE -0.465454545454545 22.2222222222222 25.2222222222222 24 17.375
5089 2015 9 New Orleans Saints Tennessee Titans Tennessee Titans New Orleans Saints 34 28 -6.5 New Orleans Saints New Orleans Saints 0.75 FALSE -0.522727272727273 26.7777777777778 29.7777777777778 19.875 23.375
5092 2015 9 Pittsburgh Steelers Oakland Raiders Pittsburgh Steelers Oakland Raiders 38 35 -6 Pittsburgh Steelers Pittsburgh Steelers 0.54 FALSE -0.121818181818182 22.8888888888889 20.2222222222222 26.625 26.375
5095 2015 9 San Francisco 49ers Atlanta Falcons San Francisco 49ers Atlanta Falcons 17 16 -8.5 Atlanta Falcons Atlanta Falcons 0.73 FALSE -0.484545454545455 14 24.7777777777778 25.4444444444444 21.1111111111111
5098 2015 9 Tampa Bay Buccaneers New York Giants New York Giants Tampa Bay Buccaneers 32 18 -2 New York Giants New York Giants 0.74 TRUE 0.412727272727273 22.625 28.875 27.4444444444444 25.1111111111111
5101 2015 9 San Diego Chargers Chicago Bears Chicago Bears San Diego Chargers 22 19 -3.5 San Diego Chargers San Diego Chargers 0.63 FALSE -0.293636363636364 23.3333333333333 27.6666666666667 20.25 27.625
5104 2015 10 New York Jets Buffalo Bills Buffalo Bills New York Jets 22 17 -2.5 New York Jets New York Jets 0.54 FALSE -0.121818181818182 24.1111111111111 20.4444444444444 25.6666666666667 23
5107 2015 10 St. Louis Rams Chicago Bears Chicago Bears St. Louis Rams 37 13 -7 St. Louis Rams St. Louis Rams 0.53 FALSE -0.102727272727273 18.4444444444444 20.3333333333333 22.1111111111111 26
5110 2015 10 Baltimore Ravens Jacksonville Jaguars Jacksonville Jaguars Baltimore Ravens 22 20 -5 Baltimore Ravens Jacksonville Jaguars 0.54 TRUE 0.030909090909091 23.3333333333333 26.2222222222222 21.3333333333333 28.3333333333333
5113 2015 10 Seattle Seahawks Arizona Cardinals Arizona Cardinals Seattle Seahawks 39 32 -3 Seattle Seahawks Arizona Cardinals 0.58 TRUE 0.107272727272727 22.1111111111111 19.8888888888889 33.5555555555556 20.5555555555556
5116 2015 10 New York Giants New England Patriots New England Patriots New York Giants 27 26 -7 New England Patriots New England Patriots 0.51 FALSE -0.0645454545454546 27.3 25.3 33.6666666666667 18.7777777777778
5119 2015 10 Tennessee Titans Carolina Panthers Carolina Panthers Tennessee Titans 27 10 -3.5 Carolina Panthers Carolina Panthers 0.69 TRUE 0.317272727272727 18.7777777777778 23.7777777777778 28.3333333333333 19.4444444444444
5122 2015 10 Tampa Bay Buccaneers Dallas Cowboys Tampa Bay Buccaneers Dallas Cowboys 10 6 -1 Dallas Cowboys Dallas Cowboys 0.66 FALSE -0.350909090909091 21.2222222222222 26.3333333333333 18.4444444444444 23.7777777777778
5125 2015 10 Oakland Raiders Minnesota Vikings Minnesota Vikings Oakland Raiders 30 14 -3 Oakland Raiders Oakland Raiders 0.61 FALSE -0.255454545454545 25.2222222222222 26.7777777777778 22 17.1111111111111
5128 2015 10 Denver Broncos Kansas City Chiefs Kansas City Chiefs Denver Broncos 29 13 -3.5 Denver Broncos Denver Broncos 0.68 FALSE -0.389090909090909 22.7777777777778 18.6666666666667 24.8888888888889 21.6666666666667
5131 2015 10 Philadelphia Eagles Miami Dolphins Miami Dolphins Philadelphia Eagles 20 19 -6 Philadelphia Eagles Philadelphia Eagles 0.58 FALSE -0.198181818181818 23.5555555555556 20.4444444444444 21.2222222222222 25
5134 2015 10 Green Bay Packers Detroit Lions Detroit Lions Green Bay Packers 18 16 -10.5 Green Bay Packers Green Bay Packers 0.84 FALSE -0.694545454545454 24.3333333333333 20.5555555555556 18.5555555555556 29
5137 2015 10 Washington Redskins New Orleans Saints Washington Redskins New Orleans Saints 47 14 -1 New Orleans Saints New Orleans Saints 0.68 FALSE -0.389090909090909 22.7777777777778 23.2222222222222 25.5 31.5
5140 2015 10 Pittsburgh Steelers Cleveland Browns Pittsburgh Steelers Cleveland Browns 30 9 -7 Pittsburgh Steelers Pittsburgh Steelers 0.63 TRUE 0.202727272727273 23.6 19.1 18.6 27.7
5143 2015 10 Cincinnati Bengals Houston Texans Houston Texans Cincinnati Bengals 10 6 -10 Cincinnati Bengals Cincinnati Bengals 0.65 FALSE -0.331818181818182 26.1111111111111 16.8888888888889 20.4444444444444 23.4444444444444
5146 2015 11 Jacksonville Jaguars Tennessee Titans Jacksonville Jaguars Tennessee Titans 19 13 -3 Jacksonville Jaguars Jacksonville Jaguars 0.62 TRUE 0.183636363636364 21.1 26.8 18.2 23.3
5149 2015 11 Philadelphia Eagles Tampa Bay Buccaneers Tampa Bay Buccaneers Philadelphia Eagles 45 17 -6.5 Philadelphia Eagles Philadelphia Eagles 0.58 FALSE -0.198181818181818 22.9 22.9 23.6 25.4
5152 2015 11 Atlanta Falcons Indianapolis Colts Indianapolis Colts Atlanta Falcons 24 21 -3.5 Atlanta Falcons Atlanta Falcons 0.54 FALSE -0.121818181818182 25 21.4 22.4 24.8
5155 2015 11 Minnesota Vikings Green Bay Packers Green Bay Packers Minnesota Vikings 30 13 0 PickEm Green Bay Packers 0.54 TRUE 0.030909090909091 21.1 18.4 24.9 19.8
5158 2015 11 Seattle Seahawks San Francisco 49ers Seattle Seahawks San Francisco 49ers 29 13 -14 Seattle Seahawks Seattle Seahawks 0.58 TRUE 0.107272727272727 22.8 19.2 13.9 25.2
5161 2015 11 Chicago Bears Denver Broncos Denver Broncos Chicago Bears 17 15 -2 Denver Broncos Chicago Bears 0.54 TRUE 0.030909090909091 21.4 25.1 22.2 18.3
5164 2015 11 Arizona Cardinals Cincinnati Bengals Arizona Cardinals Cincinnati Bengals 34 31 -4 Arizona Cardinals Arizona Cardinals 0.55 FALSE -0.140909090909091 33.6 21.6 26.6 18.6
5167 2015 11 San Diego Chargers Kansas City Chiefs Kansas City Chiefs San Diego Chargers 33 3 -3 Kansas City Chiefs Kansas City Chiefs 0.55 TRUE 0.05 21.3 28.2 25.7 19.8
5170 2015 11 Miami Dolphins Dallas Cowboys Dallas Cowboys Miami Dolphins 24 14 -2 Dallas Cowboys Dallas Cowboys 0.64 TRUE 0.221818181818182 20.5 24.9 19 22.8
5173 2015 11 Houston Texans New York Jets Houston Texans New York Jets 24 17 -4 New York Jets New York Jets 0.6 FALSE -0.236363636363636 20.8 22.8 23.4 20.8
5176 2015 11 Baltimore Ravens St. Louis Rams Baltimore Ravens St. Louis Rams 16 13 -3 Baltimore Ravens St. Louis Rams 0.55 TRUE 0.05 22.6 24.9 17.9 19.9
5179 2015 11 Carolina Panthers Washington Redskins Carolina Panthers Washington Redskins 44 16 -7 Carolina Panthers Carolina Panthers 0.64 TRUE 0.221818181818182 29.9 19.1 22.1 25.3
5182 2015 11 Detroit Lions Oakland Raiders Detroit Lions Oakland Raiders 18 13 -1.5 Oakland Raiders Oakland Raiders 0.69 FALSE -0.408181818181818 18.5 27.4 24 25.9
5185 2015 11 New England Patriots Buffalo Bills New England Patriots Buffalo Bills 20 13 -7 New England Patriots New England Patriots 0.71 FALSE -0.446363636363636 32.3 18.2 24.4 22.7
5188 2015 12 Dallas Cowboys Carolina Panthers Carolina Panthers Dallas Cowboys 33 14 -1 Carolina Panthers Carolina Panthers 0.7 TRUE 0.336363636363636 18.5454545454545 23.7272727272727 30.1818181818182 18.6363636363636
5191 2015 12 Detroit Lions Philadelphia Eagles Detroit Lions Philadelphia Eagles 45 14 -3 Detroit Lions Detroit Lions 0.59 TRUE 0.126363636363636 20.9090909090909 26.1818181818182 22.0909090909091 24.9090909090909
5194 2015 12 Green Bay Packers Chicago Bears Chicago Bears Green Bay Packers 17 13 -8 Green Bay Packers Green Bay Packers 0.67 FALSE -0.37 23.8181818181818 19.5454545454545 21 24
5197 2015 12 Jacksonville Jaguars San Diego Chargers San Diego Chargers Jacksonville Jaguars 31 25 -5 Jacksonville Jaguars San Diego Chargers 0.59 TRUE 0.126363636363636 21.4545454545455 27.1818181818182 22.1818181818182 27.9090909090909
5200 2015 12 Kansas City Chiefs Buffalo Bills Kansas City Chiefs Buffalo Bills 30 22 -4.5 Kansas City Chiefs Kansas City Chiefs 0.65 TRUE 0.240909090909091 26.0909090909091 20 24.1818181818182 23.3636363636364
5203 2015 12 Atlanta Falcons Minnesota Vikings Minnesota Vikings Atlanta Falcons 20 10 -2 Atlanta Falcons Minnesota Vikings 0.65 TRUE 0.240909090909091 23.6363636363636 21.2727272727273 21 17.6363636363636
5206 2015 12 New York Jets Miami Dolphins New York Jets Miami Dolphins 38 20 -4.5 New York Jets New York Jets 0.53 TRUE 0.0118181818181819 24.7272727272727 20.7272727272727 20.4545454545455 26.0909090909091
5209 2015 12 Tennessee Titans Oakland Raiders Oakland Raiders Tennessee Titans 24 21 -1 Oakland Raiders Oakland Raiders 0.7 TRUE 0.336363636363636 18.4545454545455 23.3636363636364 24 25.4545454545455
5212 2015 12 Denver Broncos New England Patriots Denver Broncos New England Patriots 30 24 -2.5 New England Patriots New England Patriots 0.61 FALSE -0.255454545454545 22.9090909090909 18.8181818181818 31.5454545454545 19.2727272727273
5215 2015 12 Houston Texans New Orleans Saints Houston Texans New Orleans Saints 24 6 -3.5 Houston Texans Houston Texans 0.59 TRUE 0.126363636363636 21.0909090909091 21.2727272727273 23.7272727272727 30.8181818181818
5218 2015 12 Washington Redskins New York Giants Washington Redskins New York Giants 20 14 -1.5 New York Giants New York Giants 0.75 FALSE -0.522727272727273 21.9090909090909 24.2727272727273 26.0909090909091 24.8181818181818
5221 2015 12 Cincinnati Bengals St. Louis Rams Cincinnati Bengals St. Louis Rams 31 7 -9.5 Cincinnati Bengals Cincinnati Bengals 0.67 TRUE 0.279090909090909 27 17.5454545454545 16.9090909090909 20.9090909090909
5224 2015 12 Seattle Seahawks Pittsburgh Steelers Seattle Seahawks Pittsburgh Steelers 39 30 -3 Seattle Seahawks Pittsburgh Steelers 0.65 FALSE -0.331818181818182 24.2727272727273 20.1818181818182 24.1818181818182 20.9090909090909
5227 2015 12 Indianapolis Colts Tampa Bay Buccaneers Indianapolis Colts Tampa Bay Buccaneers 25 12 -3 Indianapolis Colts Tampa Bay Buccaneers 0.62 FALSE -0.274545454545455 22.6363636363636 23.6363636363636 22.5454545454545 25.3636363636364
5230 2015 12 San Francisco 49ers Arizona Cardinals Arizona Cardinals San Francisco 49ers 19 13 -8.5 Arizona Cardinals Arizona Cardinals 0.69 FALSE -0.408181818181818 13.8181818181818 24.6363636363636 32.2727272727273 20.8181818181818
5233 2015 12 Cleveland Browns Baltimore Ravens Baltimore Ravens Cleveland Browns 33 27 -6 Cleveland Browns Cleveland Browns 0.57 FALSE -0.179090909090909 19.3636363636364 28.1818181818182 23.5454545454545 25.0909090909091
5236 2015 13 Detroit Lions Green Bay Packers Green Bay Packers Detroit Lions 27 23 -2.5 Green Bay Packers Green Bay Packers 0.73 TRUE 0.393636363636364 21.0833333333333 26.25 24.0833333333333 19.8333333333333
5239 2015 13 Tampa Bay Buccaneers Atlanta Falcons Tampa Bay Buccaneers Atlanta Falcons 23 19 0 PickEm Atlanta Falcons 0.55 FALSE -0.140909090909091 22.5833333333333 24.8333333333333 23.25 21.4166666666667
5242 2015 13 Cleveland Browns Cincinnati Bengals Cincinnati Bengals Cleveland Browns 37 3 -7.5 Cincinnati Bengals Cincinnati Bengals 0.8 TRUE 0.527272727272727 18 28.9166666666667 27.8333333333333 16.3333333333333
5245 2015 13 New Orleans Saints Carolina Panthers Carolina Panthers New Orleans Saints 41 38 -6 Carolina Panthers Carolina Panthers 0.71 FALSE -0.446363636363636 24.9166666666667 31.6666666666667 31.0833333333333 20.25
5248 2015 13 St. Louis Rams Arizona Cardinals Arizona Cardinals St. Louis Rams 27 3 -3.5 Arizona Cardinals Arizona Cardinals 0.83 TRUE 0.584545454545454 15.75 21.4166666666667 31.8333333333333 19.3333333333333
5251 2015 13 Tennessee Titans Jacksonville Jaguars Tennessee Titans Jacksonville Jaguars 42 39 -3 Tennessee Titans Tennessee Titans 0.55 FALSE -0.140909090909091 20.4166666666667 24.6666666666667 22.9166666666667 28.4166666666667
5254 2015 13 Minnesota Vikings Seattle Seahawks Seattle Seahawks Minnesota Vikings 38 7 -2.5 Seattle Seahawks Seattle Seahawks 0.57 TRUE 0.0881818181818181 19.8333333333333 19.3333333333333 25.4166666666667 19.0833333333333
5257 2015 13 Oakland Raiders Kansas City Chiefs Kansas City Chiefs Oakland Raiders 34 20 -3 Kansas City Chiefs Kansas City Chiefs 0.56 TRUE 0.0690909090909093 23.6666666666667 26.1666666666667 26.75 20
5260 2015 13 Miami Dolphins Baltimore Ravens Miami Dolphins Baltimore Ravens 15 13 -3.5 Miami Dolphins Baltimore Ravens 0.51 TRUE -0.0263636363636363 20 25 22.6666666666667 24.25
5263 2015 13 New York Giants New York Jets New York Jets New York Giants 23 20 -2.5 New York Jets New York Giants 0.69 FALSE -0.408181818181818 25.5833333333333 24.6666666666667 24.5833333333333 20.6666666666667
5266 2015 13 San Diego Chargers Denver Broncos Denver Broncos San Diego Chargers 17 3 -6 Denver Broncos Denver Broncos 0.68 TRUE 0.298181818181818 20.5833333333333 27 22.4166666666667 17.5
5269 2015 13 Pittsburgh Steelers Indianapolis Colts Pittsburgh Steelers Indianapolis Colts 45 10 -9.5 Pittsburgh Steelers Pittsburgh Steelers 0.51 TRUE -0.0263636363636363 25.9166666666667 20 21.5833333333333 25.4166666666667
5272 2015 13 Buffalo Bills Houston Texans Buffalo Bills Houston Texans 30 21 -3 Buffalo Bills Houston Texans 0.61 FALSE -0.255454545454545 24.6666666666667 23.1666666666667 21.0833333333333 22
5275 2015 13 New England Patriots Philadelphia Eagles Philadelphia Eagles New England Patriots 35 28 -9.5 New England Patriots New England Patriots 0.78 FALSE -0.58 31.25 20.5833333333333 23.1666666666667 25.1666666666667
5278 2015 13 Chicago Bears San Francisco 49ers San Francisco 49ers Chicago Bears 26 20 -6.5 Chicago Bears Chicago Bears 0.65 FALSE -0.331818181818182 20.9166666666667 24.1666666666667 14.8333333333333 24.25
5281 2015 13 Washington Redskins Dallas Cowboys Dallas Cowboys Washington Redskins 19 16 -2 Washington Redskins Washington Redskins 0.7 FALSE -0.427272727272727 21.4166666666667 23.8333333333333 18.5833333333333 23.0833333333333
GameID Season Week Home Away Winner Loser PtsW PtsL Total TOTside TOT PublicWinTOT PublicNetTOT Prime HomePtsFor HomePtsAgt AwayPtsFor AwayPtsAgt
100 2009 1 Pittsburgh Steelers Tennessee Titans Pittsburgh Steelers Tennessee Titans 13 10 36 1 0.62 FALSE -0.274545454545455 1 13 10 10 13
103 2009 1 Houston Texans New York Jets New York Jets Houston Texans 24 7 44.5 1 0.5 FALSE -0.0454545454545454 0 7 24 24 7
106 2009 1 New York Giants Washington Redskins New York Giants Washington Redskins 23 17 37 0 0.53 FALSE -0.102727272727273 0 23 17 17 23
109 2009 1 Arizona Cardinals San Francisco 49ers San Francisco 49ers Arizona Cardinals 20 16 46 1 0.52 FALSE -0.0836363636363636 0 16 20 20 16
112 2009 1 Seattle Seahawks St. Louis Rams Seattle Seahawks St. Louis Rams 28 0 41 1 0.61 FALSE -0.255454545454545 0 28 0 0 28
115 2009 1 Carolina Panthers Philadelphia Eagles Philadelphia Eagles Carolina Panthers 38 10 43.5 1 0.57 TRUE 0.0881818181818181 0 10 38 38 10
118 2009 1 Cleveland Browns Minnesota Vikings Minnesota Vikings Cleveland Browns 34 20 40 1 0.55 TRUE 0.05 0 20 34 34 20
121 2009 1 Atlanta Falcons Miami Dolphins Atlanta Falcons Miami Dolphins 19 7 44 1 0.5 FALSE -0.0454545454545454 0 19 7 7 19
124 2009 1 Baltimore Ravens Kansas City Chiefs Baltimore Ravens Kansas City Chiefs 38 24 36.5 0 0.61 FALSE -0.255454545454545 0 38 24 24 38
127 2009 1 Green Bay Packers Chicago Bears Green Bay Packers Chicago Bears 21 15 47 0 0.54 TRUE 0.030909090909091 1 21 15 15 21
130 2009 1 Indianapolis Colts Jacksonville Jaguars Indianapolis Colts Jacksonville Jaguars 14 12 45.5 1 0.5 FALSE -0.0454545454545454 0 14 12 12 14
133 2009 1 New Orleans Saints Detroit Lions New Orleans Saints Detroit Lions 45 27 50 1 0.58 TRUE 0.107272727272727 0 45 27 27 45
136 2009 1 Cincinnati Bengals Denver Broncos Denver Broncos Cincinnati Bengals 12 7 41 1 0.55 FALSE -0.140909090909091 0 7 12 12 7
139 2009 1 Tampa Bay Buccaneers Dallas Cowboys Dallas Cowboys Tampa Bay Buccaneers 34 21 40 1 0.51 TRUE -0.0263636363636363 0 21 34 34 21
142 2009 1 Oakland Raiders San Diego Chargers San Diego Chargers Oakland Raiders 24 20 43 1 0.62 TRUE 0.183636363636364 1 20 24 24 20
145 2009 1 New England Patriots Buffalo Bills New England Patriots Buffalo Bills 25 24 47.5 1 0.56 TRUE 0.0690909090909093 1 25 24 24 25
148 2009 2 Dallas Cowboys New York Giants New York Giants Dallas Cowboys 33 31 45 1 0.66 TRUE 0.26 1 32.5 27 28 24
151 2009 2 Chicago Bears Pittsburgh Steelers Chicago Bears Pittsburgh Steelers 17 14 38.5 0 0.53 TRUE 0.0118181818181819 0 16 17.5 13.5 13.5
154 2009 2 Kansas City Chiefs Oakland Raiders Oakland Raiders Kansas City Chiefs 13 10 39.5 1 0.53 FALSE -0.102727272727273 0 17 25.5 16.5 17
157 2009 2 Washington Redskins St. Louis Rams Washington Redskins St. Louis Rams 9 7 37 1 0.51 FALSE -0.0645454545454546 0 13 15 3.5 18.5
160 2009 2 San Diego Chargers Baltimore Ravens Baltimore Ravens San Diego Chargers 31 26 41 1 0.51 TRUE -0.0263636363636363 0 25 25.5 34.5 25
163 2009 2 San Francisco 49ers Seattle Seahawks San Francisco 49ers Seattle Seahawks 23 10 39.5 1 0.56 FALSE -0.16 0 21.5 13 19 11.5
166 2009 2 Buffalo Bills Tampa Bay Buccaneers Buffalo Bills Tampa Bay Buccaneers 33 20 42 0 0.57 FALSE -0.179090909090909 0 28.5 22.5 20.5 33.5
169 2009 2 New York Jets New England Patriots New York Jets New England Patriots 16 9 45 1 0.57 FALSE -0.179090909090909 0 20 8 17 20
172 2009 2 Philadelphia Eagles New Orleans Saints New Orleans Saints Philadelphia Eagles 48 22 46 1 0.69 TRUE 0.317272727272727 0 30 29 46.5 24.5
175 2009 2 Atlanta Falcons Carolina Panthers Atlanta Falcons Carolina Panthers 28 20 43 1 0.57 TRUE 0.0881818181818181 0 23.5 13.5 15 33
178 2009 2 Green Bay Packers Cincinnati Bengals Cincinnati Bengals Green Bay Packers 31 24 42 1 0.62 TRUE 0.183636363636364 0 22.5 23 19 18
181 2009 2 Denver Broncos Cleveland Browns Denver Broncos Cleveland Browns 27 6 38.5 0 0.51 TRUE -0.0263636363636363 0 19.5 6.5 13 30.5
184 2009 2 Jacksonville Jaguars Arizona Cardinals Arizona Cardinals Jacksonville Jaguars 31 17 44 1 0.52 TRUE -0.00727272727272721 0 14.5 22.5 23.5 18.5
187 2009 2 Tennessee Titans Houston Texans Houston Texans Tennessee Titans 34 31 41 0 0.55 FALSE -0.140909090909091 0 20.5 23.5 20.5 27.5
190 2009 2 Detroit Lions Minnesota Vikings Minnesota Vikings Detroit Lions 27 13 45.5 1 0.65 FALSE -0.331818181818182 0 20 36 30.5 16.5
193 2009 2 Miami Dolphins Indianapolis Colts Indianapolis Colts Miami Dolphins 27 23 41.5 1 0.55 TRUE 0.05 1 15 23 20.5 17.5
196 2009 3 San Diego Chargers Miami Dolphins San Diego Chargers Miami Dolphins 23 13 45 1 0.59 FALSE -0.217272727272727 0 24.3333333333333 21.3333333333333 14.3333333333333 23
199 2009 3 Buffalo Bills New Orleans Saints New Orleans Saints Buffalo Bills 27 7 51 1 0.65 FALSE -0.331818181818182 0 21.3333333333333 24 40 18.6666666666667
202 2009 3 Tampa Bay Buccaneers New York Giants New York Giants Tampa Bay Buccaneers 24 0 46 0 0.53 TRUE 0.0118181818181819 0 13.6666666666667 30.3333333333333 26.6666666666667 16
205 2009 3 New York Jets Tennessee Titans New York Jets Tennessee Titans 24 17 36 1 0.52 TRUE -0.00727272727272721 0 21.3333333333333 11 19.3333333333333 23.6666666666667
208 2009 3 Cincinnati Bengals Pittsburgh Steelers Cincinnati Bengals Pittsburgh Steelers 23 20 36.5 1 0.63 TRUE 0.202727272727273 0 20.3333333333333 18.6666666666667 15.6666666666667 16.6666666666667
211 2009 3 Minnesota Vikings San Francisco 49ers Minnesota Vikings San Francisco 49ers 27 24 39 1 0.58 TRUE 0.107272727272727 0 29.3333333333333 19 22.3333333333333 17.6666666666667
214 2009 3 Detroit Lions Washington Redskins Detroit Lions Washington Redskins 19 14 39 0 0.51 TRUE -0.0263636363636363 0 19.6666666666667 28.6666666666667 13.3333333333333 16.3333333333333
217 2009 3 Philadelphia Eagles Kansas City Chiefs Philadelphia Eagles Kansas City Chiefs 34 14 38.5 1 0.61 TRUE 0.164545454545455 0 31.3333333333333 24 16 28.3333333333333
220 2009 3 Houston Texans Jacksonville Jaguars Jacksonville Jaguars Houston Texans 31 24 47 0 0.56 FALSE -0.16 0 21.6666666666667 28.6666666666667 20 23
223 2009 3 New England Patriots Atlanta Falcons New England Patriots Atlanta Falcons 26 10 45.5 1 0.62 FALSE -0.274545454545455 0 20 16.6666666666667 19 17.6666666666667
226 2009 3 Seattle Seahawks Chicago Bears Chicago Bears Seattle Seahawks 25 19 37.5 0 0.53 FALSE -0.102727272727273 0 19 16 19 18
229 2009 3 Baltimore Ravens Cleveland Browns Baltimore Ravens Cleveland Browns 34 3 39 1 0.55 FALSE -0.140909090909091 0 34.3333333333333 17.6666666666667 9.66666666666667 31.6666666666667
232 2009 3 Arizona Cardinals Indianapolis Colts Indianapolis Colts Arizona Cardinals 31 10 49.5 1 0.68 FALSE -0.389090909090909 1 19 22.6666666666667 24 15
235 2009 3 Oakland Raiders Denver Broncos Denver Broncos Oakland Raiders 23 3 38 0 0.52 TRUE -0.00727272727272721 0 12 19 20.6666666666667 5.33333333333333
238 2009 3 St. Louis Rams Green Bay Packers Green Bay Packers St. Louis Rams 36 17 42.5 1 0.68 TRUE 0.298181818181818 0 8 24.3333333333333 27 21
241 2009 3 Dallas Cowboys Carolina Panthers Dallas Cowboys Carolina Panthers 21 7 48.5 1 0.65 FALSE -0.331818181818182 1 28.6666666666667 20.3333333333333 12.3333333333333 29
244 2009 4 Jacksonville Jaguars Tennessee Titans Jacksonville Jaguars Tennessee Titans 37 17 42 1 0.51 TRUE -0.0263636363636363 0 24.25 21.5 18.75 27
247 2009 4 Houston Texans Oakland Raiders Houston Texans Oakland Raiders 29 6 42.5 1 0.52 FALSE -0.0836363636363636 0 23.5 23 10.5 21.5
250 2009 4 San Francisco 49ers St. Louis Rams San Francisco 49ers St. Louis Rams 35 0 37 1 0.56 FALSE -0.16 0 25.5 13.25 6 27
253 2009 4 New England Patriots Baltimore Ravens New England Patriots Baltimore Ravens 27 21 45.5 0 0.59 FALSE -0.217272727272727 0 21.75 17.75 31 20
256 2009 4 Pittsburgh Steelers San Diego Chargers Pittsburgh Steelers San Diego Chargers 38 28 43.5 1 0.55 TRUE 0.05 1 21.25 19.5 25.25 25.5
259 2009 4 Washington Redskins Tampa Bay Buccaneers Washington Redskins Tampa Bay Buccaneers 16 13 36 0 0.64 TRUE 0.221818181818182 0 14 15.5 13.5 26.75
262 2009 4 New Orleans Saints New York Jets New Orleans Saints New York Jets 24 10 47 1 0.7 FALSE -0.427272727272727 0 36 16.5 18.5 14.25
265 2009 4 Kansas City Chiefs New York Giants New York Giants Kansas City Chiefs 27 16 43 0 0.52 TRUE -0.00727272727272721 0 16 28 26.75 16
268 2009 4 Indianapolis Colts Seattle Seahawks Indianapolis Colts Seattle Seahawks 34 17 43.5 1 0.6 TRUE 0.145454545454546 0 26.5 15.5 18.5 20.5
271 2009 4 Chicago Bears Detroit Lions Chicago Bears Detroit Lions 48 24 43 1 0.64 TRUE 0.221818181818182 0 26.25 19.5 20.75 33.5
274 2009 4 Denver Broncos Dallas Cowboys Denver Broncos Dallas Cowboys 17 10 43.5 1 0.53 FALSE -0.102727272727273 0 19.75 6.5 24 19.5
277 2009 4 Cleveland Browns Cincinnati Bengals Cincinnati Bengals Cleveland Browns 23 20 37.5 1 0.61 TRUE 0.164545454545455 0 12.25 29.5 21 19
280 2009 4 Miami Dolphins Buffalo Bills Miami Dolphins Buffalo Bills 38 10 37 1 0.54 TRUE 0.030909090909091 0 20.25 19.75 18.5 27.5
283 2009 4 Minnesota Vikings Green Bay Packers Minnesota Vikings Green Bay Packers 30 23 46.5 1 0.69 TRUE 0.317272727272727 1 29.5 20 26 23.25
286 2009 5 Arizona Cardinals Houston Texans Arizona Cardinals Houston Texans 28 21 50.5 1 0.61 FALSE -0.255454545454545 0 21.25 22.25 23 24
289 2009 5 Carolina Panthers Washington Redskins Carolina Panthers Washington Redskins 20 17 38 0 0.56 TRUE 0.0690909090909093 0 14.25 26 14.6 16.4
292 2009 5 Philadelphia Eagles Tampa Bay Buccaneers Philadelphia Eagles Tampa Bay Buccaneers 33 14 42 1 0.66 TRUE 0.26 0 31.75 21.5 13.6 28
295 2009 5 San Francisco 49ers Atlanta Falcons Atlanta Falcons San Francisco 49ers 45 10 39.5 1 0.53 TRUE 0.0118181818181819 0 22.4 19.6 25.5 15.75
298 2009 5 New York Giants Oakland Raiders New York Giants Oakland Raiders 44 7 38 1 0.57 TRUE 0.0881818181818181 0 30.2 14.2 9.8 26
301 2009 5 Detroit Lions Pittsburgh Steelers Pittsburgh Steelers Detroit Lions 28 20 44 1 0.66 TRUE 0.26 0 20.6 32.4 22.6 19.6
304 2009 5 Denver Broncos New England Patriots Denver Broncos New England Patriots 20 17 41.5 0 0.52 TRUE -0.00727272727272721 0 19.8 8.6 20.8 18.2
307 2009 5 St. Louis Rams Minnesota Vikings Minnesota Vikings St. Louis Rams 38 10 41 1 0.65 TRUE 0.240909090909091 0 6.8 29.2 31.2 18
310 2009 5 Seattle Seahawks Jacksonville Jaguars Seattle Seahawks Jacksonville Jaguars 41 0 44 0 0.51 TRUE -0.0263636363636363 0 23 16.4 19.4 25.4
313 2009 5 Kansas City Chiefs Dallas Cowboys Dallas Cowboys Kansas City Chiefs 26 20 43.5 1 0.6 TRUE 0.145454545454546 0 16.8 27.6 24.4 19.6
316 2009 5 Tennessee Titans Indianapolis Colts Indianapolis Colts Tennessee Titans 31 9 44.5 1 0.57 FALSE -0.179090909090909 1 16.8 27.8 27.4 14.2
319 2009 5 Buffalo Bills Cleveland Browns Cleveland Browns Buffalo Bills 6 3 42 1 0.52 FALSE -0.0836363636363636 0 15.4 23.2 11 24.2
322 2009 5 Baltimore Ravens Cincinnati Bengals Cincinnati Bengals Baltimore Ravens 17 14 42.5 1 0.58 FALSE -0.198181818181818 0 27.6 19.4 20.2 18
325 2009 5 Miami Dolphins New York Jets Miami Dolphins New York Jets 31 27 36.5 1 0.66 TRUE 0.26 1 22.4 21.2 20.2 17.6
328 2009 6 Seattle Seahawks Arizona Cardinals Arizona Cardinals Seattle Seahawks 27 3 45.5 1 0.69 FALSE -0.408181818181818 0 19.6666666666667 18.1666666666667 22.4 18.4
331 2009 6 Tampa Bay Buccaneers Carolina Panthers Carolina Panthers Tampa Bay Buccaneers 28 21 40.5 0 0.57 FALSE -0.179090909090909 0 14.8333333333333 28 17 25
334 2009 6 Atlanta Falcons Chicago Bears Atlanta Falcons Chicago Bears 21 14 46.5 1 0.59 FALSE -0.217272727272727 1 24.6 15.4 23.8 19.8
337 2009 6 Oakland Raiders Philadelphia Eagles Oakland Raiders Philadelphia Eagles 13 9 40.5 1 0.76 FALSE -0.541818181818182 0 10.3333333333333 23.1666666666667 27.2 19.8
340 2009 6 New Orleans Saints New York Giants New Orleans Saints New York Giants 48 27 47.5 1 0.7 TRUE 0.336363636363636 0 38.4 18.6 29.6666666666667 19.8333333333333
343 2009 6 Minnesota Vikings Baltimore Ravens Minnesota Vikings Baltimore Ravens 33 31 45.5 0 0.56 FALSE -0.16 0 31.5 20.1666666666667 28.1666666666667 21.6666666666667
346 2009 6 Jacksonville Jaguars St. Louis Rams Jacksonville Jaguars St. Louis Rams 23 20 42.5 0 0.57 FALSE -0.179090909090909 0 20 24.5 9 28.1666666666667
349 2009 6 New England Patriots Tennessee Titans New England Patriots Tennessee Titans 59 0 38.5 1 0.61 TRUE 0.164545454545455 0 27.1666666666667 15.1666666666667 14 33
352 2009 6 Washington Redskins Kansas City Chiefs Kansas City Chiefs Washington Redskins 14 6 36.5 0 0.55 TRUE 0.05 0 13.1666666666667 16 16.3333333333333 24
355 2009 6 Cincinnati Bengals Houston Texans Houston Texans Cincinnati Bengals 28 17 46 1 0.61 FALSE -0.255454545454545 0 19.6666666666667 19.6666666666667 23.8333333333333 22.8333333333333
358 2009 6 Green Bay Packers Detroit Lions Green Bay Packers Detroit Lions 26 0 48 1 0.65 FALSE -0.331818181818182 0 26 18.6 17.1666666666667 31.3333333333333
361 2009 6 New York Jets Buffalo Bills Buffalo Bills New York Jets 16 13 35.5 1 0.57 FALSE -0.179090909090909 0 19 17.3333333333333 15.5 21.5
364 2009 6 Pittsburgh Steelers Cleveland Browns Pittsburgh Steelers Cleveland Browns 27 14 38 1 0.56 TRUE 0.0690909090909093 0 23.3333333333333 18.6666666666667 11.5 24.6666666666667
367 2009 6 San Diego Chargers Denver Broncos Denver Broncos San Diego Chargers 34 23 45 1 0.59 TRUE 0.126363636363636 1 24.8 27.2 22.1666666666667 11
370 2009 7 Dallas Cowboys Atlanta Falcons Dallas Cowboys Atlanta Falcons 37 21 48 1 0.58 TRUE 0.107272727272727 0 26.5 19.8333333333333 24 19
373 2009 7 Cincinnati Bengals Chicago Bears Cincinnati Bengals Chicago Bears 45 10 42.5 1 0.59 TRUE 0.126363636363636 0 23.2857142857143 18.2857142857143 21.5 24
376 2009 7 Miami Dolphins New Orleans Saints New Orleans Saints Miami Dolphins 46 34 48 1 0.65 TRUE 0.240909090909091 0 24.3333333333333 25.3333333333333 39.6666666666667 21.1666666666667
379 2009 7 St. Louis Rams Indianapolis Colts Indianapolis Colts St. Louis Rams 42 6 45 1 0.62 TRUE 0.183636363636364 0 8.57142857142857 30.1428571428571 29.8333333333333 12.8333333333333
382 2009 7 New York Giants Arizona Cardinals Arizona Cardinals New York Giants 24 17 47 1 0.71 FALSE -0.446363636363636 1 27.8571428571429 20.4285714285714 22.6666666666667 18.1666666666667
385 2009 7 Oakland Raiders New York Jets New York Jets Oakland Raiders 38 0 34 1 0.54 TRUE 0.030909090909091 0 8.85714285714286 25.2857142857143 21.7142857142857 14.8571428571429
388 2009 7 Cleveland Browns Green Bay Packers Green Bay Packers Cleveland Browns 31 3 41.5 1 0.55 FALSE -0.140909090909091 0 10.2857142857143 25.5714285714286 26.8333333333333 16
391 2009 7 Kansas City Chiefs San Diego Chargers San Diego Chargers Kansas City Chiefs 37 7 44 1 0.53 FALSE -0.102727272727273 0 15 25.8571428571429 26.8333333333333 23.8333333333333
394 2009 7 Houston Texans San Francisco 49ers Houston Texans San Francisco 49ers 24 21 44.5 1 0.66 TRUE 0.26 0 23.8571428571429 22.5714285714286 22.1666666666667 20.3333333333333
397 2009 7 Carolina Panthers Buffalo Bills Buffalo Bills Carolina Panthers 20 9 37 0 0.52 TRUE -0.00727272727272721 0 15.6666666666667 24.1666666666667 16.1428571428571 19.7142857142857
400 2009 7 Pittsburgh Steelers Minnesota Vikings Pittsburgh Steelers Minnesota Vikings 27 17 46.5 1 0.53 FALSE -0.102727272727273 0 23.8571428571429 18.4285714285714 29.4285714285714 21.1428571428571
403 2009 7 Tampa Bay Buccaneers New England Patriots New England Patriots Tampa Bay Buccaneers 35 7 44.5 1 0.68 FALSE -0.389090909090909 0 13.7142857142857 29 28.2857142857143 14
406 2009 7 Washington Redskins Philadelphia Eagles Philadelphia Eagles Washington Redskins 27 17 38 1 0.65 TRUE 0.240909090909091 1 13.7142857142857 17.5714285714286 27.1666666666667 19.3333333333333
409 2009 8 Dallas Cowboys Seattle Seahawks Dallas Cowboys Seattle Seahawks 38 17 46 1 0.59 TRUE 0.126363636363636 0 28.1428571428571 19.4285714285714 19.2857142857143 21
412 2009 8 Detroit Lions St. Louis Rams St. Louis Rams Detroit Lions 17 10 43.5 1 0.5 FALSE -0.0454545454545454 0 16.1428571428571 29.2857142857143 9.625 27.625
415 2009 8 Green Bay Packers Minnesota Vikings Minnesota Vikings Green Bay Packers 38 26 47.5 1 0.6 TRUE 0.145454545454546 0 26.7142857142857 19.1428571428571 30.5 21.75
418 2009 8 Indianapolis Colts San Francisco 49ers Indianapolis Colts San Francisco 49ers 18 14 45 1 0.74 FALSE -0.503636363636364 0 28.1428571428571 13 21 20
421 2009 8 Arizona Cardinals Carolina Panthers Carolina Panthers Arizona Cardinals 34 21 43.5 1 0.74 TRUE 0.412727272727273 0 22.4285714285714 20.4285714285714 18.2857142857143 23.7142857142857
424 2009 8 Chicago Bears Cleveland Browns Chicago Bears Cleveland Browns 30 6 40 1 0.52 FALSE -0.0836363636363636 0 22.7142857142857 21.4285714285714 9.75 26.125
427 2009 8 Baltimore Ravens Denver Broncos Baltimore Ravens Denver Broncos 30 7 42.5 0 0.57 TRUE 0.0881818181818181 0 28.4285714285714 19.5714285714286 20 13.7142857142857
430 2009 8 Tennessee Titans Jacksonville Jaguars Tennessee Titans Jacksonville Jaguars 30 13 44.5 0 0.66 TRUE 0.26 0 16.2857142857143 30.1428571428571 19 25.2857142857143
433 2009 8 New York Jets Miami Dolphins Miami Dolphins New York Jets 30 25 40.5 1 0.61 TRUE 0.164545454545455 0 22.125 16.75 25.1428571428571 25.2857142857143
436 2009 8 Buffalo Bills Houston Texans Houston Texans Buffalo Bills 31 10 41.5 1 0.55 FALSE -0.140909090909091 0 15.375 21.125 24.75 21
439 2009 8 Philadelphia Eagles New York Giants Philadelphia Eagles New York Giants 40 17 44 1 0.65 TRUE 0.240909090909091 0 29 19 26.5 22.875
442 2009 8 San Diego Chargers Oakland Raiders San Diego Chargers Oakland Raiders 24 16 41.5 1 0.64 FALSE -0.312727272727273 0 26.4285714285714 22.7142857142857 9.75 25.125
445 2009 8 New Orleans Saints Atlanta Falcons New Orleans Saints Atlanta Falcons 35 27 56 1 0.63 TRUE 0.202727272727273 1 39 22 24.4285714285714 21.2857142857143
448 2009 9 San Francisco 49ers Tennessee Titans Tennessee Titans San Francisco 49ers 34 27 40.5 1 0.53 TRUE 0.0118181818181819 0 21.75 21.75 18.5 29.75
451 2009 9 Cincinnati Bengals Baltimore Ravens Cincinnati Bengals Baltimore Ravens 17 7 45 0 0.55 TRUE 0.05 0 22.5 16.875 25.75 19.25
454 2009 9 Atlanta Falcons Washington Redskins Atlanta Falcons Washington Redskins 31 17 41 1 0.53 TRUE 0.0118181818181819 0 25.25 20.75 14.125 19.25
457 2009 9 New England Patriots Miami Dolphins New England Patriots Miami Dolphins 27 17 47 1 0.68 FALSE -0.389090909090909 0 28.125 14.375 24.125 25.5
460 2009 9 Jacksonville Jaguars Kansas City Chiefs Jacksonville Jaguars Kansas City Chiefs 24 21 41.5 0 0.6 FALSE -0.236363636363636 0 19.625 24.75 15.75 25.625
463 2009 9 Indianapolis Colts Houston Texans Indianapolis Colts Houston Texans 20 17 50.5 1 0.7 FALSE -0.427272727272727 0 27.125 13.5 23.8888888888889 20.8888888888889
466 2009 9 New Orleans Saints Carolina Panthers New Orleans Saints Carolina Panthers 30 20 51 1 0.64 FALSE -0.312727272727273 0 37.875 21.75 18.5 24.5
469 2009 9 Chicago Bears Arizona Cardinals Arizona Cardinals Chicago Bears 41 21 45 1 0.63 TRUE 0.202727272727273 0 22.5 23.875 24.75 20.5
472 2009 9 Philadelphia Eagles Dallas Cowboys Dallas Cowboys Philadelphia Eagles 20 16 49.5 1 0.64 FALSE -0.312727272727273 1 27.375 19.125 27.125 19
475 2009 9 Seattle Seahawks Detroit Lions Seattle Seahawks Detroit Lions 32 20 42 1 0.53 TRUE 0.0118181818181819 0 20.875 20.875 16.625 29.625
478 2009 9 Tampa Bay Buccaneers Green Bay Packers Tampa Bay Buccaneers Green Bay Packers 38 28 43 1 0.59 TRUE 0.126363636363636 0 16.75 28.875 26.875 21.5
481 2009 9 New York Giants San Diego Chargers San Diego Chargers New York Giants 21 20 48.5 1 0.61 FALSE -0.255454545454545 0 25.7777777777778 22.6666666666667 25.75 22.375
484 2009 9 Denver Broncos Pittsburgh Steelers Pittsburgh Steelers Denver Broncos 28 10 41.5 1 0.59 FALSE -0.217272727272727 1 18.75 15.5 24.375 17.375
487 2009 10 San Francisco 49ers Chicago Bears San Francisco 49ers Chicago Bears 10 6 43 1 0.6 FALSE -0.236363636363636 1 20.4444444444444 20 20.6666666666667 22.3333333333333
490 2009 10 St. Louis Rams New Orleans Saints New Orleans Saints St. Louis Rams 28 23 50.5 1 0.62 TRUE 0.183636363636364 0 11.1111111111111 27.6666666666667 36.7777777777778 21.8888888888889
493 2009 10 Indianapolis Colts New England Patriots Indianapolis Colts New England Patriots 35 34 49 1 0.56 TRUE 0.0690909090909093 1 28 15.7777777777778 28.7777777777778 16.6666666666667
496 2009 10 San Diego Chargers Philadelphia Eagles San Diego Chargers Philadelphia Eagles 31 23 47 1 0.6 TRUE 0.145454545454546 0 26.3333333333333 22.4444444444444 26.8888888888889 20.4444444444444
499 2009 10 Arizona Cardinals Seattle Seahawks Arizona Cardinals Seattle Seahawks 31 20 46.5 1 0.69 TRUE 0.317272727272727 0 25.4444444444444 20.4444444444444 20.7777777777778 22
502 2009 10 Miami Dolphins Tampa Bay Buccaneers Miami Dolphins Tampa Bay Buccaneers 25 23 42.5 1 0.55 TRUE 0.05 0 24.2222222222222 25.2222222222222 17.4444444444444 28.4444444444444
505 2009 10 Oakland Raiders Kansas City Chiefs Kansas City Chiefs Oakland Raiders 16 10 36.5 0 0.51 TRUE -0.0263636363636363 0 9.77777777777778 24.1111111111111 15.7777777777778 23.8888888888889
508 2009 10 New York Jets Jacksonville Jaguars Jacksonville Jaguars New York Jets 24 22 41 1 0.52 TRUE -0.00727272727272721 0 22.1111111111111 17.5555555555556 20.1111111111111 24.4444444444444
511 2009 10 Carolina Panthers Atlanta Falcons Carolina Panthers Atlanta Falcons 28 19 44 1 0.66 TRUE 0.26 0 19.5555555555556 23.8888888888889 24.5555555555556 21.5555555555556
514 2009 10 Tennessee Titans Buffalo Bills Tennessee Titans Buffalo Bills 41 17 41 0 0.56 FALSE -0.16 0 21 28.3333333333333 15.5555555555556 23.3333333333333
517 2009 10 Pittsburgh Steelers Cincinnati Bengals Cincinnati Bengals Pittsburgh Steelers 18 12 41.5 1 0.61 FALSE -0.255454545454545 0 23 17.4444444444444 22 16.3333333333333
520 2009 10 Green Bay Packers Dallas Cowboys Green Bay Packers Dallas Cowboys 17 7 48 1 0.68 FALSE -0.389090909090909 0 25.7777777777778 19.8888888888889 24.8888888888889 18.7777777777778
523 2009 10 Washington Redskins Denver Broncos Washington Redskins Denver Broncos 27 17 36.5 0 0.55 FALSE -0.140909090909091 0 15.5555555555556 19 18.5555555555556 16.7777777777778
526 2009 10 Minnesota Vikings Detroit Lions Minnesota Vikings Detroit Lions 27 10 47.5 1 0.58 FALSE -0.198181818181818 0 30.1111111111111 20.4444444444444 15.8888888888889 29.3333333333333
529 2009 10 Cleveland Browns Baltimore Ravens Baltimore Ravens Cleveland Browns 16 0 39.5 1 0.52 FALSE -0.0836363636363636 1 8.66666666666667 25 24.6666666666667 17.1111111111111
532 2009 11 Carolina Panthers Miami Dolphins Miami Dolphins Carolina Panthers 24 17 42 1 0.52 FALSE -0.0836363636363636 1 19.3 23.9 24.2 24.4
535 2009 11 Chicago Bears Philadelphia Eagles Philadelphia Eagles Chicago Bears 24 20 47 1 0.53 FALSE -0.102727272727273 1 20.6 22.5 26.6 20.4
538 2009 11 Kansas City Chiefs Pittsburgh Steelers Kansas City Chiefs Pittsburgh Steelers 27 24 39.5 1 0.53 TRUE 0.0118181818181819 0 16.9 23.9 23.1 18.4
541 2009 11 Denver Broncos San Diego Chargers San Diego Chargers Denver Broncos 32 3 41.5 1 0.54 FALSE -0.121818181818182 0 17 18.3 26.9 20.5
544 2009 11 Minnesota Vikings Seattle Seahawks Minnesota Vikings Seattle Seahawks 35 9 47 1 0.68 FALSE -0.389090909090909 0 30.6 19.3 19.6 23.3
547 2009 11 Green Bay Packers San Francisco 49ers Green Bay Packers San Francisco 49ers 30 24 41.5 1 0.58 TRUE 0.107272727272727 0 26.2 20.3 20.8 21
550 2009 11 Dallas Cowboys Washington Redskins Dallas Cowboys Washington Redskins 7 6 41.5 1 0.61 FALSE -0.255454545454545 0 23.1 17.5 14.6 17.8
553 2009 11 New England Patriots New York Jets New England Patriots New York Jets 31 14 45.5 1 0.66 FALSE -0.350909090909091 0 29 16.4 21.3 18.9
556 2009 11 Tampa Bay Buccaneers New Orleans Saints New Orleans Saints Tampa Bay Buccaneers 38 7 51 1 0.58 FALSE -0.198181818181818 0 16.4 29.4 36.9 20.4
559 2009 11 New York Giants Atlanta Falcons New York Giants Atlanta Falcons 34 31 46.5 1 0.59 TRUE 0.126363636363636 0 26.6 23.5 25.2 22.8
562 2009 11 Jacksonville Jaguars Buffalo Bills Jacksonville Jaguars Buffalo Bills 18 15 41 0 0.57 TRUE 0.0881818181818181 0 19.9 23.5 15.5 22.8
565 2009 11 Oakland Raiders Cincinnati Bengals Oakland Raiders Cincinnati Bengals 20 17 36 1 0.61 TRUE 0.164545454545455 0 10.8 23.4 21.5 16.7
568 2009 11 Detroit Lions Cleveland Browns Detroit Lions Cleveland Browns 38 37 37.5 0 0.63 FALSE -0.293636363636364 0 18.1 30.1 11.5 26.3
571 2009 11 Baltimore Ravens Indianapolis Colts Indianapolis Colts Baltimore Ravens 17 15 44.5 1 0.53 FALSE -0.102727272727273 0 23.7 17.1 26.9 15.7
574 2009 11 St. Louis Rams Arizona Cardinals Arizona Cardinals St. Louis Rams 21 13 47 1 0.65 FALSE -0.331818181818182 0 11.3 27 25 19.7
577 2009 11 Houston Texans Tennessee Titans Tennessee Titans Houston Texans 20 17 48 1 0.59 FALSE -0.217272727272727 1 23.2 20.8 20.9 27.2
580 2009 12 Denver Broncos New York Giants Denver Broncos New York Giants 26 6 43.5 1 0.59 FALSE -0.217272727272727 1 17.8181818181818 17.1818181818182 24.7272727272727 23.7272727272727
583 2009 12 Detroit Lions Green Bay Packers Green Bay Packers Detroit Lions 34 12 48.5 1 0.62 FALSE -0.274545454545455 1 17.5454545454545 30.4545454545455 26.9090909090909 19.5454545454545
586 2009 12 Dallas Cowboys Oakland Raiders Dallas Cowboys Oakland Raiders 24 7 40.5 1 0.54 FALSE -0.121818181818182 1 23.1818181818182 16.5454545454545 10.4545454545455 23.4545454545455
589 2009 12 Baltimore Ravens Pittsburgh Steelers Baltimore Ravens Pittsburgh Steelers 20 17 35 1 0.62 TRUE 0.183636363636364 1 23.3636363636364 17.0909090909091 22.5454545454545 18.5454545454545
592 2009 12 St. Louis Rams Seattle Seahawks Seattle Seahawks St. Louis Rams 27 17 42.5 1 0.55 TRUE 0.05 0 11.8181818181818 27 20.2727272727273 22.7272727272727
595 2009 12 Atlanta Falcons Tampa Bay Buccaneers Atlanta Falcons Tampa Bay Buccaneers 20 17 46 1 0.5 FALSE -0.0454545454545454 0 24.7272727272727 22.2727272727273 16.4545454545455 28.5454545454545
598 2009 12 Philadelphia Eagles Washington Redskins Philadelphia Eagles Washington Redskins 27 24 40.5 0 0.53 FALSE -0.102727272727273 0 26.6363636363636 20.7272727272727 15.4545454545455 18.6363636363636
601 2009 12 Buffalo Bills Miami Dolphins Buffalo Bills Miami Dolphins 31 14 38.5 0 0.53 FALSE -0.102727272727273 0 16.9090909090909 22 23.2727272727273 25
604 2009 12 San Diego Chargers Kansas City Chiefs San Diego Chargers Kansas City Chiefs 43 14 45 1 0.65 TRUE 0.240909090909091 0 28.3636363636364 19.9090909090909 16.6363636363636 25.6363636363636
607 2009 12 San Francisco 49ers Jacksonville Jaguars San Francisco 49ers Jacksonville Jaguars 20 3 42 0 0.55 TRUE 0.05 0 20.7272727272727 19.3636363636364 18.3636363636364 23.1818181818182
610 2009 12 Tennessee Titans Arizona Cardinals Tennessee Titans Arizona Cardinals 20 17 44.5 1 0.64 FALSE -0.312727272727273 0 20.8181818181818 26.2727272727273 24.2727272727273 19.7272727272727
613 2009 12 Houston Texans Indianapolis Colts Indianapolis Colts Houston Texans 35 27 48 1 0.59 TRUE 0.126363636363636 0 23.5454545454545 22.0909090909091 27.6363636363636 16.7272727272727
616 2009 12 Cincinnati Bengals Cleveland Browns Cincinnati Bengals Cleveland Browns 16 7 39.5 1 0.64 FALSE -0.312727272727273 0 21 15.8181818181818 11.0909090909091 25.3636363636364
619 2009 12 Minnesota Vikings Chicago Bears Minnesota Vikings Chicago Bears 36 10 47 1 0.55 FALSE -0.140909090909091 0 31.0909090909091 18.4545454545455 19.6363636363636 23.7272727272727
622 2009 12 New York Jets Carolina Panthers New York Jets Carolina Panthers 17 6 41.5 1 0.52 FALSE -0.0836363636363636 0 20.9090909090909 17.7272727272727 18.0909090909091 23.2727272727273
625 2009 12 New Orleans Saints New England Patriots New Orleans Saints New England Patriots 38 17 57.5 1 0.65 FALSE -0.331818181818182 1 37 20.0909090909091 27.9090909090909 18.3636363636364
628 2009 13 Buffalo Bills New York Jets New York Jets Buffalo Bills 19 13 37 1 0.6 FALSE -0.236363636363636 1 16.5833333333333 21.75 20.75 17.3333333333333
631 2009 13 Seattle Seahawks San Francisco 49ers Seattle Seahawks San Francisco 49ers 20 17 41.5 1 0.54 FALSE -0.121818181818182 0 20.25 22.25 20.4166666666667 19.4166666666667
634 2009 13 Cleveland Browns San Diego Chargers San Diego Chargers Cleveland Browns 30 23 42.5 1 0.58 TRUE 0.107272727272727 0 12.0833333333333 25.75 28.5 20.1666666666667
637 2009 13 Chicago Bears St. Louis Rams Chicago Bears St. Louis Rams 17 9 41 1 0.54 FALSE -0.121818181818182 0 19.4166666666667 22.5 11.5833333333333 26.1666666666667
640 2009 13 Pittsburgh Steelers Oakland Raiders Oakland Raiders Pittsburgh Steelers 27 24 37 1 0.56 TRUE 0.0690909090909093 0 22.6666666666667 19.25 11.8333333333333 23.5
643 2009 13 Atlanta Falcons Philadelphia Eagles Philadelphia Eagles Atlanta Falcons 34 7 43.5 1 0.6 FALSE -0.236363636363636 0 23.25 23.25 27.25 19.5833333333333
646 2009 13 Indianapolis Colts Tennessee Titans Indianapolis Colts Tennessee Titans 27 17 47 1 0.53 FALSE -0.102727272727273 0 27.5833333333333 16.75 20.5 26.3333333333333
649 2009 13 Carolina Panthers Tampa Bay Buccaneers Carolina Panthers Tampa Bay Buccaneers 16 6 40 0 0.55 TRUE 0.05 0 17.9166666666667 21.8333333333333 15.5833333333333 27.5
652 2009 13 Miami Dolphins New England Patriots Miami Dolphins New England Patriots 22 21 46 1 0.64 FALSE -0.312727272727273 0 23.1666666666667 24.6666666666667 27.3333333333333 18.6666666666667
655 2009 13 New York Giants Dallas Cowboys New York Giants Dallas Cowboys 31 24 45.5 0 0.55 FALSE -0.140909090909091 0 25.25 23.75 23.25 17.75
658 2009 13 Kansas City Chiefs Denver Broncos Denver Broncos Kansas City Chiefs 44 13 39 1 0.59 TRUE 0.126363636363636 0 16.3333333333333 27.1666666666667 20 16.8333333333333
661 2009 13 Cincinnati Bengals Detroit Lions Cincinnati Bengals Detroit Lions 23 13 42 1 0.62 FALSE -0.274545454545455 0 21.1666666666667 15.5833333333333 17.1666666666667 29.8333333333333
664 2009 13 Jacksonville Jaguars Houston Texans Jacksonville Jaguars Houston Texans 23 18 47.5 1 0.51 FALSE -0.0645454545454546 0 18.75 22.75 23.0833333333333 22.1666666666667
667 2009 13 Arizona Cardinals Minnesota Vikings Arizona Cardinals Minnesota Vikings 30 17 48.5 1 0.67 FALSE -0.37 1 24.75 19.5 29.9166666666667 19.4166666666667
670 2009 13 Washington Redskins New Orleans Saints New Orleans Saints Washington Redskins 33 30 47 1 0.55 TRUE 0.05 0 16.6666666666667 19.8333333333333 36.6666666666667 20.9166666666667
673 2009 13 Green Bay Packers Baltimore Ravens Green Bay Packers Baltimore Ravens 27 14 43 0 0.52 TRUE -0.00727272727272721 1 26.9166666666667 19.0833333333333 22.5833333333333 17.9166666666667
676 2009 14 Cleveland Browns Pittsburgh Steelers Cleveland Browns Pittsburgh Steelers 13 6 34 1 0.67 FALSE -0.37 1 12.1538461538462 24.2307692307692 21.3846153846154 18.7692307692308
679 2009 14 Tampa Bay Buccaneers New York Jets New York Jets Tampa Bay Buccaneers 26 3 36.5 0 0.55 TRUE 0.05 0 14.6153846153846 27.3846153846154 21.1538461538462 16.2307692307692
682 2009 14 New York Giants Philadelphia Eagles Philadelphia Eagles New York Giants 45 38 43 1 0.58 TRUE 0.107272727272727 1 26.2307692307692 25.3846153846154 28.6153846153846 21
685 2009 14 Tennessee Titans St. Louis Rams Tennessee Titans St. Louis Rams 47 7 40 1 0.54 TRUE 0.030909090909091 0 22.5384615384615 24.8461538461538 11.2307692307692 27.7692307692308
688 2009 14 Dallas Cowboys San Diego Chargers San Diego Chargers Dallas Cowboys 20 17 49 1 0.57 FALSE -0.179090909090909 0 22.7692307692308 17.9230769230769 27.8461538461538 19.9230769230769
691 2009 14 Houston Texans Seattle Seahawks Houston Texans Seattle Seahawks 34 7 44.5 1 0.6 FALSE -0.236363636363636 0 23.9230769230769 21 19.2307692307692 23.1538461538462
694 2009 14 Oakland Raiders Washington Redskins Washington Redskins Oakland Raiders 34 13 37.5 0 0.54 FALSE -0.121818181818182 0 11.9230769230769 24.3076923076923 18 19.3076923076923
697 2009 14 Atlanta Falcons New Orleans Saints New Orleans Saints Atlanta Falcons 26 23 50 1 0.59 FALSE -0.217272727272727 0 23.2307692307692 23.4615384615385 35.8461538461538 21.0769230769231
700 2009 14 Jacksonville Jaguars Miami Dolphins Miami Dolphins Jacksonville Jaguars 14 10 43 0 0.61 TRUE 0.164545454545455 0 18.0769230769231 22.0769230769231 22.4615384615385 23.5384615384615
703 2009 14 Kansas City Chiefs Buffalo Bills Buffalo Bills Kansas City Chiefs 16 10 38 0 0.53 TRUE 0.0118181818181819 0 15.8461538461538 26.3076923076923 16.5384615384615 20.8461538461538
706 2009 14 New England Patriots Carolina Panthers New England Patriots Carolina Panthers 20 10 43.5 1 0.6 FALSE -0.236363636363636 0 26.7692307692308 18 17.3076923076923 21.6923076923077
709 2009 14 Minnesota Vikings Cincinnati Bengals Minnesota Vikings Cincinnati Bengals 30 10 42.5 1 0.63 FALSE -0.293636363636364 0 29.9230769230769 18.6923076923077 20.3076923076923 16.6923076923077
712 2009 14 Indianapolis Colts Denver Broncos Indianapolis Colts Denver Broncos 28 16 43.5 1 0.58 TRUE 0.107272727272727 0 27.6153846153846 16.6923076923077 19.6923076923077 17.6923076923077
715 2009 14 Baltimore Ravens Detroit Lions Baltimore Ravens Detroit Lions 48 3 40 0 0.52 FALSE -0.0836363636363636 0 24.5384615384615 16.7692307692308 16.0769230769231 31.2307692307692
718 2009 14 Chicago Bears Green Bay Packers Green Bay Packers Chicago Bears 21 14 41.5 1 0.59 FALSE -0.217272727272727 0 19 22.3846153846154 26.4615384615385 18.6923076923077
721 2009 14 San Francisco 49ers Arizona Cardinals San Francisco 49ers Arizona Cardinals 24 9 45 1 0.57 FALSE -0.179090909090909 1 20.6923076923077 18.6153846153846 23.5384615384615 19.8461538461538
724 2009 15 Jacksonville Jaguars Indianapolis Colts Indianapolis Colts Jacksonville Jaguars 35 31 43 1 0.58 TRUE 0.107272727272727 1 19 23 28.1428571428571 17.7142857142857
727 2009 15 New Orleans Saints Dallas Cowboys Dallas Cowboys New Orleans Saints 24 17 53.5 1 0.6 FALSE -0.236363636363636 1 34.5 21.2857142857143 22.8571428571429 17.8571428571429
730 2009 15 Carolina Panthers Minnesota Vikings Carolina Panthers Minnesota Vikings 26 7 42.5 1 0.65 FALSE -0.331818181818182 1 17.9285714285714 20.6428571428571 28.2857142857143 19.2142857142857
733 2009 15 Buffalo Bills New England Patriots New England Patriots Buffalo Bills 17 10 41 1 0.51 FALSE -0.0645454545454546 0 16.0714285714286 20.5714285714286 26.0714285714286 17.4285714285714
736 2009 15 Denver Broncos Oakland Raiders Oakland Raiders Denver Broncos 20 19 37 1 0.57 TRUE 0.0881818181818181 0 19.6428571428571 17.8571428571429 12.5 23.9285714285714
739 2009 15 Philadelphia Eagles San Francisco 49ers Philadelphia Eagles San Francisco 49ers 27 13 41 1 0.59 FALSE -0.217272727272727 0 28.5 20.4285714285714 20.1428571428571 19.2142857142857
742 2009 15 Seattle Seahawks Tampa Bay Buccaneers Tampa Bay Buccaneers Seattle Seahawks 24 7 39 0 0.52 TRUE -0.00727272727272721 0 18.3571428571429 23.2142857142857 15.2857142857143 25.9285714285714
745 2009 15 Tennessee Titans Miami Dolphins Tennessee Titans Miami Dolphins 27 24 43 0 0.51 FALSE -0.0645454545454546 0 22.8571428571429 24.7857142857143 22.5714285714286 23.7857142857143
748 2009 15 St. Louis Rams Houston Texans Houston Texans St. Louis Rams 16 13 43.5 1 0.69 FALSE -0.408181818181818 0 11.3571428571429 26.9285714285714 23.3571428571429 20.4285714285714
751 2009 15 Pittsburgh Steelers Green Bay Packers Pittsburgh Steelers Green Bay Packers 37 36 42 1 0.51 TRUE -0.0263636363636363 0 22.5 20 27.1428571428571 20
754 2009 15 New York Jets Atlanta Falcons Atlanta Falcons New York Jets 10 7 36 0 0.51 TRUE -0.0263636363636363 0 20.1428571428571 15.7857142857143 22.2857142857143 22.2857142857143
757 2009 15 Baltimore Ravens Chicago Bears Baltimore Ravens Chicago Bears 31 7 39.5 0 0.58 TRUE 0.107272727272727 0 25 16.0714285714286 18.1428571428571 23
760 2009 15 San Diego Chargers Cincinnati Bengals San Diego Chargers Cincinnati Bengals 27 24 44 1 0.68 TRUE 0.298181818181818 0 27.7857142857143 20.2142857142857 20.5714285714286 17.4285714285714
763 2009 15 Kansas City Chiefs Cleveland Browns Cleveland Browns Kansas City Chiefs 41 34 38.5 0 0.53 FALSE -0.102727272727273 0 17.1428571428571 27.3571428571429 14.2142857142857 24.9285714285714
766 2009 15 Detroit Lions Arizona Cardinals Arizona Cardinals Detroit Lions 31 24 47 1 0.59 TRUE 0.126363636363636 0 16.6428571428571 31.2142857142857 24.0714285714286 20.1428571428571
769 2009 15 Washington Redskins New York Giants New York Giants Washington Redskins 45 12 44 1 0.56 TRUE 0.0690909090909093 1 17.5714285714286 21.1428571428571 27.5714285714286 24.4285714285714
772 2009 16 Tennessee Titans San Diego Chargers San Diego Chargers Tennessee Titans 42 17 47.5 1 0.52 TRUE -0.00727272727272721 1 22.4666666666667 25.9333333333333 28.7333333333333 20
775 2009 16 Cleveland Browns Oakland Raiders Cleveland Browns Oakland Raiders 23 9 37 1 0.52 FALSE -0.0836363636363636 0 14.8 23.8666666666667 12.2666666666667 23.8666666666667
778 2009 16 Arizona Cardinals St. Louis Rams Arizona Cardinals St. Louis Rams 31 10 43.5 1 0.64 FALSE -0.312727272727273 0 24.5333333333333 19.4666666666667 11.2666666666667 27.2
781 2009 16 Pittsburgh Steelers Baltimore Ravens Pittsburgh Steelers Baltimore Ravens 23 20 43 0 0.54 TRUE 0.030909090909091 0 22.5333333333333 20 24.6666666666667 16.5333333333333
784 2009 16 Green Bay Packers Seattle Seahawks Green Bay Packers Seattle Seahawks 48 10 43.5 1 0.68 TRUE 0.298181818181818 0 28.5333333333333 19.3333333333333 17.8 24.8666666666667
787 2009 16 New Orleans Saints Tampa Bay Buccaneers Tampa Bay Buccaneers New Orleans Saints 20 17 48.5 0 0.52 TRUE -0.00727272727272721 0 33.3333333333333 21.2 15.6 25.3333333333333
790 2009 16 Indianapolis Colts New York Jets New York Jets Indianapolis Colts 29 15 40.5 1 0.57 TRUE 0.0881818181818181 0 27.2666666666667 18.4666666666667 20.7333333333333 15.7333333333333
793 2009 16 Cincinnati Bengals Kansas City Chiefs Cincinnati Bengals Kansas City Chiefs 17 10 39.5 1 0.63 FALSE -0.293636363636364 0 20.3333333333333 16.9333333333333 16.6666666666667 26.6666666666667
796 2009 16 Washington Redskins Dallas Cowboys Dallas Cowboys Washington Redskins 17 0 42 1 0.55 FALSE -0.140909090909091 1 16.4 20.8666666666667 22.4666666666667 16.6666666666667
799 2009 16 New England Patriots Jacksonville Jaguars New England Patriots Jacksonville Jaguars 35 7 44 1 0.56 FALSE -0.16 0 26.6666666666667 16.7333333333333 18.2 23.8
802 2009 16 Miami Dolphins Houston Texans Houston Texans Miami Dolphins 27 20 46.5 1 0.52 TRUE -0.00727272727272721 0 22.4 24 23.6 20.4
805 2009 16 San Francisco 49ers Detroit Lions San Francisco 49ers Detroit Lions 20 6 41 1 0.52 FALSE -0.0836363636363636 0 20.1333333333333 18.3333333333333 15.9333333333333 30.4666666666667
808 2009 16 Philadelphia Eagles Denver Broncos Philadelphia Eagles Denver Broncos 30 27 43.5 1 0.66 TRUE 0.26 0 28.6 20.8666666666667 20.1333333333333 18.6666666666667
811 2009 16 Atlanta Falcons Buffalo Bills Atlanta Falcons Buffalo Bills 31 3 40 0 0.52 TRUE -0.00727272727272721 0 22.8666666666667 21 15.2 21.2666666666667
814 2009 16 New York Giants Carolina Panthers Carolina Panthers New York Giants 41 9 42.5 1 0.61 TRUE 0.164545454545455 0 26.3333333333333 25.5333333333333 19.4666666666667 19.8666666666667
817 2009 16 Chicago Bears Minnesota Vikings Chicago Bears Minnesota Vikings 36 30 41.5 1 0.63 TRUE 0.202727272727273 1 19.3333333333333 23.4666666666667 28.4 20.3333333333333
820 2009 17 Minnesota Vikings New York Giants Minnesota Vikings New York Giants 44 7 48 1 0.52 TRUE -0.00727272727272721 0 29.375 19.5 25.125 26.6875
823 2009 17 Seattle Seahawks Tennessee Titans Tennessee Titans Seattle Seahawks 17 13 45 0 0.53 TRUE 0.0118181818181819 0 17.5 24.375 22.125 25.125
826 2009 17 Dallas Cowboys Philadelphia Eagles Dallas Cowboys Philadelphia Eagles 24 0 47.5 1 0.53 FALSE -0.102727272727273 0 22.5625 15.625 26.8125 21.0625
829 2009 17 Miami Dolphins Pittsburgh Steelers Pittsburgh Steelers Miami Dolphins 30 24 45.5 0 0.6 FALSE -0.236363636363636 0 22.5 24.375 23 20.25
832 2009 17 Oakland Raiders Baltimore Ravens Baltimore Ravens Oakland Raiders 21 13 39 1 0.52 FALSE -0.0836363636363636 0 12.3125 23.6875 24.4375 16.3125
835 2009 17 St. Louis Rams San Francisco 49ers San Francisco 49ers St. Louis Rams 28 6 39.5 0 0.53 TRUE 0.0118181818181819 0 10.9375 27.25 20.625 17.5625
838 2009 17 San Diego Chargers Washington Redskins San Diego Chargers Washington Redskins 23 20 39 1 0.56 TRUE 0.0690909090909093 0 28.375 20 16.625 21
841 2009 17 Houston Texans New England Patriots Houston Texans New England Patriots 34 27 46.5 1 0.52 TRUE -0.00727272727272721 0 24.25 20.8125 26.6875 17.8125
844 2009 17 Carolina Panthers New Orleans Saints Carolina Panthers New Orleans Saints 23 10 41 1 0.55 FALSE -0.140909090909091 0 19.6875 19.25 31.875 21.3125
847 2009 17 Denver Broncos Kansas City Chiefs Kansas City Chiefs Denver Broncos 44 24 38 1 0.56 TRUE 0.0690909090909093 0 20.375 20.25 18.375 26.5
850 2009 17 Cleveland Browns Jacksonville Jaguars Cleveland Browns Jacksonville Jaguars 23 17 35 1 0.53 TRUE 0.0118181818181819 0 15.3125 23.4375 18.125 23.75
853 2009 17 Arizona Cardinals Green Bay Packers Green Bay Packers Arizona Cardinals 33 7 42 1 0.71 FALSE -0.446363636363636 0 23.4375 20.3125 28.8125 18.5625
856 2009 17 Buffalo Bills Indianapolis Colts Buffalo Bills Indianapolis Colts 30 7 32 1 0.54 TRUE 0.030909090909091 0 16.125 20.375 26 19.1875
859 2009 17 New York Jets Cincinnati Bengals New York Jets Cincinnati Bengals 37 0 33.5 1 0.59 TRUE 0.126363636363636 0 21.75 14.75 19.0625 18.1875
862 2009 17 Detroit Lions Chicago Bears Chicago Bears Detroit Lions 37 23 44.5 1 0.5 TRUE -0.0454545454545454 0 16.375 30.875 20.4375 23.4375
865 2009 17 Tampa Bay Buccaneers Atlanta Falcons Atlanta Falcons Tampa Bay Buccaneers 20 10 42 1 0.56 FALSE -0.16 0 15.25 25 22.6875 20.3125
868 2010 1 New Orleans Saints Minnesota Vikings New Orleans Saints Minnesota Vikings 14 9 49 1 0.66 FALSE -0.350909090909091 1 14 9 9 14
871 2010 1 Pittsburgh Steelers Atlanta Falcons Pittsburgh Steelers Atlanta Falcons 15 9 39 0 0.59 TRUE 0.126363636363636 0 15 9 9 15
874 2010 1 Seattle Seahawks San Francisco 49ers Seattle Seahawks San Francisco 49ers 31 6 37 1 0.55 FALSE -0.140909090909091 0 31 6 6 31
877 2010 1 Tennessee Titans Oakland Raiders Tennessee Titans Oakland Raiders 38 13 39.5 0 0.59 FALSE -0.217272727272727 0 38 13 13 38
880 2010 1 Buffalo Bills Miami Dolphins Miami Dolphins Buffalo Bills 15 10 39 0 0.55 TRUE 0.05 0 10 15 15 10
883 2010 1 Philadelphia Eagles Green Bay Packers Green Bay Packers Philadelphia Eagles 27 20 48 1 0.63 FALSE -0.293636363636364 0 20 27 27 20
886 2010 1 Chicago Bears Detroit Lions Chicago Bears Detroit Lions 19 14 44.5 1 0.52 FALSE -0.0836363636363636 0 19 14 14 19
889 2010 1 Jacksonville Jaguars Denver Broncos Jacksonville Jaguars Denver Broncos 24 17 41.5 0 0.61 TRUE 0.164545454545455 0 24 17 17 24
892 2010 1 Washington Redskins Dallas Cowboys Washington Redskins Dallas Cowboys 13 7 40 1 0.54 FALSE -0.121818181818182 1 13 7 7 13
895 2010 1 St. Louis Rams Arizona Cardinals Arizona Cardinals St. Louis Rams 17 13 39 1 0.57 FALSE -0.179090909090909 0 13 17 17 13
898 2010 1 Houston Texans Indianapolis Colts Houston Texans Indianapolis Colts 34 24 48 1 0.7 TRUE 0.336363636363636 0 34 24 24 34
901 2010 1 Tampa Bay Buccaneers Cleveland Browns Tampa Bay Buccaneers Cleveland Browns 17 14 37 0 0.65 TRUE 0.240909090909091 0 17 14 14 17
904 2010 1 New England Patriots Cincinnati Bengals New England Patriots Cincinnati Bengals 38 24 45 1 0.74 TRUE 0.412727272727273 0 38 24 24 38
907 2010 1 New York Giants Carolina Panthers New York Giants Carolina Panthers 31 18 40.5 0 0.51 FALSE -0.0645454545454546 0 31 18 18 31
910 2010 1 Kansas City Chiefs San Diego Chargers Kansas City Chiefs San Diego Chargers 21 14 45.5 1 0.56 FALSE -0.16 1 21 14 14 21
913 2010 1 New York Jets Baltimore Ravens Baltimore Ravens New York Jets 10 9 36 0 0.58 TRUE 0.107272727272727 1 9 10 10 9
916 2010 2 Indianapolis Colts New York Giants Indianapolis Colts New York Giants 38 14 48 1 0.66 TRUE 0.26 1 31 24 22.5 28
919 2010 2 Detroit Lions Philadelphia Eagles Philadelphia Eagles Detroit Lions 35 32 41 1 0.57 TRUE 0.0881818181818181 0 23 27 27.5 29.5
922 2010 2 Tennessee Titans Pittsburgh Steelers Pittsburgh Steelers Tennessee Titans 19 11 37 0 0.61 TRUE 0.164545454545455 0 24.5 16 17 10
925 2010 2 Oakland Raiders St. Louis Rams Oakland Raiders St. Louis Rams 16 14 37.5 1 0.51 FALSE -0.0645454545454546 0 14.5 26 13.5 16.5
928 2010 2 Cincinnati Bengals Baltimore Ravens Cincinnati Bengals Baltimore Ravens 15 10 39.5 0 0.6 TRUE 0.145454545454546 0 19.5 24 10 12
931 2010 2 Denver Broncos Seattle Seahawks Denver Broncos Seattle Seahawks 31 14 41 1 0.63 TRUE 0.202727272727273 0 24 19 22.5 18.5
934 2010 2 Carolina Panthers Tampa Bay Buccaneers Tampa Bay Buccaneers Carolina Panthers 20 7 38 0 0.71 TRUE 0.355454545454545 0 12.5 25.5 18.5 10.5
937 2010 2 New York Jets New England Patriots New York Jets New England Patriots 28 14 39.5 1 0.6 TRUE 0.145454545454546 0 18.5 12 26 26
940 2010 2 Atlanta Falcons Arizona Cardinals Atlanta Falcons Arizona Cardinals 41 7 43 1 0.51 TRUE -0.0263636363636363 0 25 11 12 27
943 2010 2 Minnesota Vikings Miami Dolphins Miami Dolphins Minnesota Vikings 14 10 41 1 0.56 FALSE -0.16 0 9.5 14 14.5 10
946 2010 2 Cleveland Browns Kansas City Chiefs Kansas City Chiefs Cleveland Browns 16 14 38 0 0.51 TRUE -0.0263636363636363 0 14 16.5 18.5 14
949 2010 2 San Diego Chargers Jacksonville Jaguars San Diego Chargers Jacksonville Jaguars 38 13 45 0 0.5 FALSE -0.0454545454545454 0 26 17 18.5 27.5
952 2010 2 Washington Redskins Houston Texans Houston Texans Washington Redskins 30 27 43 0 0.5 FALSE -0.0454545454545454 0 20 18.5 32 25.5
955 2010 2 Green Bay Packers Buffalo Bills Green Bay Packers Buffalo Bills 34 7 43 1 0.67 FALSE -0.37 0 30.5 13.5 8.5 24.5
958 2010 2 Dallas Cowboys Chicago Bears Chicago Bears Dallas Cowboys 27 20 41.5 1 0.54 TRUE 0.030909090909091 0 13.5 20 23 17
961 2010 2 San Francisco 49ers New Orleans Saints New Orleans Saints San Francisco 49ers 25 22 44 1 0.68 TRUE 0.298181818181818 1 14 28 19.5 15.5
964 2010 3 New York Giants Tennessee Titans Tennessee Titans New York Giants 29 10 43.5 1 0.54 FALSE -0.121818181818182 0 18.3333333333333 28.3333333333333 26 14
967 2010 3 Jacksonville Jaguars Philadelphia Eagles Philadelphia Eagles Jacksonville Jaguars 28 3 45 1 0.59 FALSE -0.217272727272727 0 13.3333333333333 27.6666666666667 27.6666666666667 20.6666666666667
970 2010 3 Tampa Bay Buccaneers Pittsburgh Steelers Pittsburgh Steelers Tampa Bay Buccaneers 38 13 33 0 0.64 FALSE -0.312727272727273 0 16.6666666666667 19.6666666666667 24 11
973 2010 3 Arizona Cardinals Oakland Raiders Arizona Cardinals Oakland Raiders 24 23 39 0 0.6 FALSE -0.236363636363636 0 16 25.6666666666667 17.3333333333333 25.3333333333333
976 2010 3 Seattle Seahawks San Diego Chargers Seattle Seahawks San Diego Chargers 27 20 44 1 0.64 TRUE 0.221818181818182 0 24 19 24 20.3333333333333
979 2010 3 Kansas City Chiefs San Francisco 49ers Kansas City Chiefs San Francisco 49ers 31 10 38 1 0.51 TRUE -0.0263636363636363 0 22.6666666666667 12.6666666666667 12.6666666666667 29
982 2010 3 St. Louis Rams Washington Redskins St. Louis Rams Washington Redskins 30 16 39 0 0.5 FALSE -0.0454545454545454 0 19 16.3333333333333 18.6666666666667 22.3333333333333
985 2010 3 Miami Dolphins New York Jets New York Jets Miami Dolphins 31 23 36 0 0.54 FALSE -0.121818181818182 1 17.3333333333333 17 22.6666666666667 15.6666666666667
988 2010 3 New Orleans Saints Atlanta Falcons Atlanta Falcons New Orleans Saints 27 24 49 1 0.58 TRUE 0.107272727272727 0 21 19.3333333333333 25.6666666666667 15.3333333333333
991 2010 3 Minnesota Vikings Detroit Lions Minnesota Vikings Detroit Lions 24 10 43 1 0.72 FALSE -0.465454545454545 0 14.3333333333333 12.6666666666667 18.6666666666667 26
994 2010 3 Houston Texans Dallas Cowboys Dallas Cowboys Houston Texans 27 13 47.5 1 0.65 FALSE -0.331818181818182 0 25.6666666666667 26 18 17.6666666666667
997 2010 3 Denver Broncos Indianapolis Colts Indianapolis Colts Denver Broncos 27 13 47 1 0.6 FALSE -0.236363636363636 0 20.3333333333333 21.6666666666667 29.6666666666667 20.3333333333333
1000 2010 3 Baltimore Ravens Cleveland Browns Baltimore Ravens Cleveland Browns 24 17 36.5 0 0.65 FALSE -0.331818181818182 0 14.6666666666667 13.6666666666667 15 19
1003 2010 3 Carolina Panthers Cincinnati Bengals Cincinnati Bengals Carolina Panthers 20 7 37 1 0.54 FALSE -0.121818181818182 0 10.6666666666667 23.6666666666667 19.6666666666667 18.3333333333333
1006 2010 3 New England Patriots Buffalo Bills New England Patriots Buffalo Bills 38 30 43 1 0.69 TRUE 0.317272727272727 0 30 27.3333333333333 15.6666666666667 29
1009 2010 3 Chicago Bears Green Bay Packers Chicago Bears Green Bay Packers 20 17 45.5 1 0.66 FALSE -0.350909090909091 1 22 17 26 15.6666666666667
1012 2010 4 Philadelphia Eagles Washington Redskins Washington Redskins Philadelphia Eagles 17 12 44 1 0.65 FALSE -0.331818181818182 0 23.75 19.75 18.25 19.75
1015 2010 4 Atlanta Falcons San Francisco 49ers Atlanta Falcons San Francisco 49ers 16 14 42.5 1 0.57 FALSE -0.179090909090909 0 23.25 15 13 25.75
1018 2010 4 St. Louis Rams Seattle Seahawks St. Louis Rams Seattle Seahawks 20 3 40 1 0.68 FALSE -0.389090909090909 0 19.25 13 18.75 19.25
1021 2010 4 Pittsburgh Steelers Baltimore Ravens Baltimore Ravens Pittsburgh Steelers 17 14 34.5 0 0.56 TRUE 0.0690909090909093 0 21.5 12.5 15.25 13.75
1024 2010 4 Buffalo Bills New York Jets New York Jets Buffalo Bills 38 14 36.5 1 0.57 TRUE 0.0881818181818181 0 15.25 31.25 26.5 15.25
1027 2010 4 Oakland Raiders Houston Texans Houston Texans Oakland Raiders 31 24 43.5 1 0.56 TRUE 0.0690909090909093 0 19 26.75 27 25.5
1030 2010 4 Green Bay Packers Detroit Lions Green Bay Packers Detroit Lions 28 26 46 1 0.7 TRUE 0.336363636363636 0 26.5 18.25 20.5 26.5
1033 2010 4 Tennessee Titans Denver Broncos Denver Broncos Tennessee Titans 26 20 43.5 1 0.61 TRUE 0.164545454545455 0 24.5 17 21.75 21.25
1036 2010 4 New Orleans Saints Carolina Panthers New Orleans Saints Carolina Panthers 16 14 43.5 1 0.62 FALSE -0.274545454545455 0 19.75 18 11.5 21.75
1039 2010 4 New York Giants Chicago Bears New York Giants Chicago Bears 17 3 44.5 1 0.51 FALSE -0.0645454545454546 1 18 22 17.25 17
1042 2010 4 Cleveland Browns Cincinnati Bengals Cleveland Browns Cincinnati Bengals 23 20 36.5 1 0.56 TRUE 0.0690909090909093 0 17 19.25 19.75 19.5
1045 2010 4 Jacksonville Jaguars Indianapolis Colts Jacksonville Jaguars Indianapolis Colts 31 28 45.5 0 0.5 FALSE -0.0454545454545454 0 17.75 27.75 29.25 23
1048 2010 4 San Diego Chargers Arizona Cardinals San Diego Chargers Arizona Cardinals 41 10 47 1 0.59 TRUE 0.126363636363636 0 28.25 17.75 14.5 29.5
1051 2010 4 Miami Dolphins New England Patriots New England Patriots Miami Dolphins 41 14 48.5 1 0.57 TRUE 0.0881818181818181 1 16.5 23 32.75 24
1054 2010 5 Dallas Cowboys Tennessee Titans Tennessee Titans Dallas Cowboys 34 27 43.5 1 0.6 TRUE 0.145454545454546 0 20.25 21.75 26.4 19
1057 2010 5 Arizona Cardinals New Orleans Saints Arizona Cardinals New Orleans Saints 30 20 45.5 1 0.65 TRUE 0.240909090909091 0 17.6 27.6 19.8 20.4
1060 2010 5 Houston Texans New York Giants New York Giants Houston Texans 34 10 48.5 1 0.5 FALSE -0.0454545454545454 0 23.6 27.2 21.2 19.6
1063 2010 5 San Francisco 49ers Philadelphia Eagles Philadelphia Eagles San Francisco 49ers 27 24 39.5 1 0.54 TRUE 0.030909090909091 1 15.2 26 24.4 20.6
1066 2010 5 Detroit Lions St. Louis Rams Detroit Lions St. Louis Rams 44 6 43.5 1 0.69 TRUE 0.317272727272727 0 25.2 22.4 16.6 19.2
1069 2010 5 Oakland Raiders San Diego Chargers Oakland Raiders San Diego Chargers 35 27 44.5 1 0.6 TRUE 0.145454545454546 0 22.2 26.8 28 21.2
1072 2010 5 Cincinnati Bengals Tampa Bay Buccaneers Tampa Bay Buccaneers Cincinnati Bengals 24 21 38 1 0.51 TRUE -0.0263636363636363 0 20 20.4 18.5 20
1075 2010 5 Indianapolis Colts Kansas City Chiefs Indianapolis Colts Kansas City Chiefs 19 9 46 1 0.69 FALSE -0.408181818181818 0 27.2 20.2 19.25 14.25
1078 2010 5 Buffalo Bills Jacksonville Jaguars Jacksonville Jaguars Buffalo Bills 36 26 41.5 1 0.5 TRUE -0.0454545454545454 0 17.4 32.2 21.4 27.4
1081 2010 5 Washington Redskins Green Bay Packers Washington Redskins Green Bay Packers 16 13 45 1 0.62 FALSE -0.274545454545455 0 17.8 18.4 23.8 17.8
1084 2010 5 Baltimore Ravens Denver Broncos Baltimore Ravens Denver Broncos 31 17 39.5 0 0.54 FALSE -0.121818181818182 0 18.4 14.4 20.8 23.2
1087 2010 5 Carolina Panthers Chicago Bears Chicago Bears Carolina Panthers 23 6 33 0 0.52 TRUE -0.00727272727272721 0 10.4 22 18.4 14.8
1090 2010 5 Cleveland Browns Atlanta Falcons Atlanta Falcons Cleveland Browns 20 10 41.5 1 0.53 FALSE -0.102727272727273 0 15.6 19.4 22.6 14
1093 2010 5 New York Jets Minnesota Vikings New York Jets Minnesota Vikings 29 20 38 1 0.65 TRUE 0.240909090909091 1 27 16.2 15.75 16.75
1096 2010 6 New England Patriots Baltimore Ravens New England Patriots Baltimore Ravens 23 20 44.5 0 0.58 TRUE 0.107272727272727 0 30.8 23.2 18.6666666666667 15.8333333333333
1099 2010 6 Minnesota Vikings Dallas Cowboys Minnesota Vikings Dallas Cowboys 24 21 43.5 1 0.63 TRUE 0.202727272727273 0 17.4 17.6 20.4 22.2
1102 2010 6 Chicago Bears Seattle Seahawks Seattle Seahawks Chicago Bears 23 20 37.5 1 0.51 TRUE -0.0263636363636363 0 18.6666666666667 16.1666666666667 19.6 19.4
1105 2010 6 St. Louis Rams San Diego Chargers St. Louis Rams San Diego Chargers 20 17 44.5 1 0.68 FALSE -0.389090909090909 0 17.1666666666667 18.8333333333333 26.1666666666667 21
1108 2010 6 San Francisco 49ers Oakland Raiders San Francisco 49ers Oakland Raiders 17 9 41 1 0.57 FALSE -0.179090909090909 0 15.5 23.1666666666667 20 25.1666666666667
1111 2010 6 Denver Broncos New York Jets New York Jets Denver Broncos 24 20 43 1 0.55 TRUE 0.05 0 20.6666666666667 23.3333333333333 26.5 16.8333333333333
1114 2010 6 Tampa Bay Buccaneers New Orleans Saints New Orleans Saints Tampa Bay Buccaneers 31 6 43.5 1 0.57 FALSE -0.179090909090909 0 16 22.2 21.6666666666667 18
1117 2010 6 Green Bay Packers Miami Dolphins Miami Dolphins Green Bay Packers 23 20 44 0 0.53 TRUE 0.0118181818181819 0 23.1666666666667 18.6666666666667 17.8 22.4
1120 2010 6 Houston Texans Kansas City Chiefs Houston Texans Kansas City Chiefs 35 31 46 1 0.53 TRUE 0.0118181818181819 0 25.5 27.8333333333333 21.6 18.4
1123 2010 6 New York Giants Detroit Lions New York Giants Detroit Lions 28 20 45.5 1 0.7 TRUE 0.336363636363636 0 22.3333333333333 19.6666666666667 24.3333333333333 23.3333333333333
1126 2010 6 Philadelphia Eagles Atlanta Falcons Philadelphia Eagles Atlanta Falcons 31 17 43 1 0.61 TRUE 0.164545454545455 0 25.5 20 21.6666666666667 16.8333333333333
1129 2010 6 Pittsburgh Steelers Cleveland Browns Pittsburgh Steelers Cleveland Browns 28 10 37.5 1 0.56 TRUE 0.0690909090909093 0 22.8 12 14.6666666666667 20.8333333333333
1132 2010 6 Washington Redskins Indianapolis Colts Indianapolis Colts Washington Redskins 27 24 44.5 1 0.6 TRUE 0.145454545454546 1 18.8333333333333 19.8333333333333 27.1666666666667 20.8333333333333
1135 2010 6 Jacksonville Jaguars Tennessee Titans Tennessee Titans Jacksonville Jaguars 30 3 43.5 1 0.52 FALSE -0.0836363636363636 1 18.3333333333333 27.8333333333333 27 16.3333333333333
1138 2010 7 Seattle Seahawks Arizona Cardinals Seattle Seahawks Arizona Cardinals 22 10 40.5 1 0.67 FALSE -0.37 0 20 17.8333333333333 16.3333333333333 26.6666666666667
1141 2010 7 Miami Dolphins Pittsburgh Steelers Pittsburgh Steelers Miami Dolphins 23 22 40.5 0 0.58 FALSE -0.198181818181818 0 18.5 22.5 22.8333333333333 13.6666666666667
1144 2010 7 San Diego Chargers New England Patriots New England Patriots San Diego Chargers 23 20 49 1 0.66 FALSE -0.350909090909091 0 25.2857142857143 21.2857142857143 29.5 22.6666666666667
1147 2010 7 Baltimore Ravens Buffalo Bills Baltimore Ravens Buffalo Bills 37 34 39.5 1 0.5 TRUE -0.0454545454545454 0 21.2857142857143 18.4285714285714 20.1666666666667 33
1150 2010 7 Carolina Panthers San Francisco 49ers Carolina Panthers San Francisco 49ers 23 20 35.5 1 0.56 TRUE 0.0690909090909093 0 12.5 21.6666666666667 16.1428571428571 23.1428571428571
1153 2010 7 Tampa Bay Buccaneers St. Louis Rams Tampa Bay Buccaneers St. Louis Rams 18 17 39 1 0.55 FALSE -0.140909090909091 0 16.3333333333333 21.3333333333333 17.1428571428571 18.7142857142857
1156 2010 7 Denver Broncos Oakland Raiders Oakland Raiders Denver Broncos 59 14 42.5 1 0.61 TRUE 0.164545454545455 0 19.7142857142857 28.4285714285714 25.5714285714286 23.5714285714286
1159 2010 7 Green Bay Packers Minnesota Vikings Green Bay Packers Minnesota Vikings 28 24 44 1 0.72 TRUE 0.374545454545455 1 23.8571428571429 19.4285714285714 18.5 19.3333333333333
1162 2010 7 Kansas City Chiefs Jacksonville Jaguars Kansas City Chiefs Jacksonville Jaguars 42 20 38.5 1 0.59 TRUE 0.126363636363636 0 25 18.6666666666667 18.5714285714286 29.8571428571429
1165 2010 7 New Orleans Saints Cleveland Browns Cleveland Browns New Orleans Saints 30 17 44 1 0.65 TRUE 0.240909090909091 0 21 19.7142857142857 16.8571428571429 20.2857142857143
1168 2010 7 Atlanta Falcons Cincinnati Bengals Atlanta Falcons Cincinnati Bengals 39 32 43 1 0.63 TRUE 0.202727272727273 0 24.1428571428571 19 22 23.5
1171 2010 7 Chicago Bears Washington Redskins Washington Redskins Chicago Bears 17 14 40 0 0.54 TRUE 0.030909090909091 0 18 16.2857142857143 18.5714285714286 19
1174 2010 7 Tennessee Titans Philadelphia Eagles Tennessee Titans Philadelphia Eagles 37 19 41.5 1 0.62 TRUE 0.183636363636364 0 28.4285714285714 16.7142857142857 24.5714285714286 22.4285714285714
1177 2010 7 Dallas Cowboys New York Giants New York Giants Dallas Cowboys 41 35 45 1 0.69 TRUE 0.317272727272727 1 22.8333333333333 25.3333333333333 25 21.8571428571429
1180 2010 8 Arizona Cardinals Tampa Bay Buccaneers Tampa Bay Buccaneers Arizona Cardinals 38 35 38 0 0.54 FALSE -0.121818181818182 0 19 28.2857142857143 19.4285714285714 23.2857142857143
1183 2010 8 Detroit Lions Washington Redskins Detroit Lions Washington Redskins 37 25 45 1 0.63 TRUE 0.202727272727273 0 26.1428571428571 23.5714285714286 19.375 21.25
1186 2010 8 New England Patriots Minnesota Vikings New England Patriots Minnesota Vikings 28 18 44.5 1 0.73 TRUE 0.393636363636364 0 29.2857142857143 22 18.4285714285714 20.5714285714286
1189 2010 8 Cincinnati Bengals Miami Dolphins Miami Dolphins Cincinnati Bengals 22 14 44.5 1 0.59 FALSE -0.217272727272727 0 20.8571428571429 23.2857142857143 19 21.2857142857143
1192 2010 8 Dallas Cowboys Jacksonville Jaguars Jacksonville Jaguars Dallas Cowboys 35 17 43.5 1 0.51 TRUE -0.0263636363636363 0 22 26.7142857142857 20.625 28.25
1195 2010 8 St. Louis Rams Carolina Panthers St. Louis Rams Carolina Panthers 20 10 37.5 1 0.58 FALSE -0.198181818181818 0 17.5 17.625 12.1428571428571 21.4285714285714
1198 2010 8 Kansas City Chiefs Buffalo Bills Kansas City Chiefs Buffalo Bills 13 10 45.5 1 0.67 FALSE -0.37 0 23.2857142857143 17.4285714285714 18.7142857142857 30.1428571428571
1201 2010 8 San Diego Chargers Tennessee Titans San Diego Chargers Tennessee Titans 33 25 44.5 1 0.74 TRUE 0.412727272727273 0 26.25 21.75 28 18.75
1204 2010 8 New York Jets Green Bay Packers Green Bay Packers New York Jets 9 0 41.5 1 0.68 FALSE -0.389090909090909 0 22.7142857142857 15.7142857142857 22 17
1207 2010 8 San Francisco 49ers Denver Broncos San Francisco 49ers Denver Broncos 24 16 41.5 1 0.58 FALSE -0.198181818181818 0 17.125 22.25 19.25 27.875
1210 2010 8 New Orleans Saints Pittsburgh Steelers New Orleans Saints Pittsburgh Steelers 20 10 45 1 0.6 FALSE -0.236363636363636 1 20.875 18.5 21 14.5714285714286
1213 2010 8 Oakland Raiders Seattle Seahawks Oakland Raiders Seattle Seahawks 33 3 40 1 0.61 FALSE -0.255454545454545 0 26.5 21 17.5714285714286 20
1216 2010 8 Indianapolis Colts Houston Texans Indianapolis Colts Houston Texans 30 17 50.5 1 0.64 FALSE -0.312727272727273 1 27.5714285714286 20.2857142857143 24.2857142857143 28.1428571428571
1219 2010 9 Houston Texans San Diego Chargers San Diego Chargers Houston Texans 29 23 50 1 0.66 TRUE 0.26 0 24.125 28.25 26.5555555555556 21.8888888888889
1222 2010 9 Atlanta Falcons Tampa Bay Buccaneers Atlanta Falcons Tampa Bay Buccaneers 27 21 45 1 0.55 TRUE 0.05 0 24.5 19.25 19.625 23.75
1225 2010 9 Detroit Lions New York Jets New York Jets Detroit Lions 23 20 42 1 0.63 TRUE 0.202727272727273 0 25.375 23.5 22.75 16.25
1228 2010 9 Seattle Seahawks New York Giants New York Giants Seattle Seahawks 41 7 40.5 1 0.63 TRUE 0.202727272727273 0 16.25 22.625 27 20
1231 2010 9 Cleveland Browns New England Patriots Cleveland Browns New England Patriots 34 14 44 1 0.61 TRUE 0.164545454545455 0 19 19.5 27.375 23.5
1234 2010 9 Carolina Panthers New Orleans Saints New Orleans Saints Carolina Panthers 34 3 40.5 1 0.62 FALSE -0.274545454545455 0 11 23 22.3333333333333 16.7777777777778
1237 2010 9 Buffalo Bills Chicago Bears Chicago Bears Buffalo Bills 22 19 41.5 1 0.54 FALSE -0.121818181818182 0 18.75 29.125 18.5 16.625
1240 2010 9 Philadelphia Eagles Indianapolis Colts Philadelphia Eagles Indianapolis Colts 26 24 46.5 1 0.71 TRUE 0.355454545454545 0 24.75 22.625 27.125 21
1243 2010 9 Minnesota Vikings Arizona Cardinals Minnesota Vikings Arizona Cardinals 27 24 42.5 1 0.73 TRUE 0.393636363636364 0 19.5 21 19.625 28.125
1246 2010 9 Green Bay Packers Dallas Cowboys Green Bay Packers Dallas Cowboys 45 7 46 1 0.61 TRUE 0.164545454545455 1 24.5555555555556 15.8888888888889 20.125 29
1249 2010 9 Oakland Raiders Kansas City Chiefs Oakland Raiders Kansas City Chiefs 23 20 41 1 0.62 TRUE 0.183636363636364 0 26.1111111111111 20.8888888888889 22.875 18.125
1252 2010 9 Baltimore Ravens Miami Dolphins Baltimore Ravens Miami Dolphins 26 10 41 0 0.59 TRUE 0.126363636363636 0 21.875 17.375 17.875 21.875
1255 2010 9 Cincinnati Bengals Pittsburgh Steelers Pittsburgh Steelers Cincinnati Bengals 27 21 41 1 0.56 TRUE 0.0690909090909093 1 20.875 23.75 21.75 15.375
1258 2010 10 Atlanta Falcons Baltimore Ravens Atlanta Falcons Baltimore Ravens 26 21 44 1 0.54 TRUE 0.030909090909091 1 24.6666666666667 19.4444444444444 21.7777777777778 18.3333333333333
1261 2010 10 Arizona Cardinals Seattle Seahawks Seattle Seahawks Arizona Cardinals 36 18 41 1 0.63 TRUE 0.202727272727273 0 19.4444444444444 29 18.4444444444444 22.1111111111111
1264 2010 10 San Francisco 49ers St. Louis Rams San Francisco 49ers St. Louis Rams 23 20 38.5 1 0.57 TRUE 0.0881818181818181 0 17.7777777777778 22 17.7777777777778 18.2222222222222
1267 2010 10 Miami Dolphins Tennessee Titans Miami Dolphins Tennessee Titans 29 17 43 1 0.61 TRUE 0.164545454545455 0 19.1111111111111 21.3333333333333 26.7777777777778 19.8888888888889
1270 2010 10 Cleveland Browns New York Jets New York Jets Cleveland Browns 26 20 37 1 0.55 TRUE 0.05 0 19.1111111111111 20.2222222222222 23.1111111111111 16.6666666666667
1273 2010 10 Pittsburgh Steelers New England Patriots New England Patriots Pittsburgh Steelers 39 26 45 1 0.53 TRUE 0.0118181818181819 1 22.2222222222222 18 28.6666666666667 23.7777777777778
1276 2010 10 Chicago Bears Minnesota Vikings Chicago Bears Minnesota Vikings 27 13 40.5 1 0.67 FALSE -0.37 0 19.4444444444444 16.2222222222222 18.7777777777778 21.6666666666667
1279 2010 10 Denver Broncos Kansas City Chiefs Denver Broncos Kansas City Chiefs 49 29 44.5 1 0.61 TRUE 0.164545454545455 0 22.5555555555556 28 23.5555555555556 21.5555555555556
1282 2010 10 Tampa Bay Buccaneers Carolina Panthers Tampa Bay Buccaneers Carolina Panthers 31 16 37 1 0.53 TRUE 0.0118181818181819 0 20.8888888888889 22.8888888888889 11.5555555555556 23.8888888888889
1285 2010 10 Indianapolis Colts Cincinnati Bengals Indianapolis Colts Cincinnati Bengals 23 17 47 1 0.67 FALSE -0.37 0 26.6666666666667 20.5555555555556 20.4444444444444 23.6666666666667
1288 2010 10 New York Giants Dallas Cowboys Dallas Cowboys New York Giants 33 20 46 1 0.7 TRUE 0.336363636363636 0 26.2222222222222 21.4444444444444 21.5555555555556 28
1291 2010 10 Buffalo Bills Detroit Lions Buffalo Bills Detroit Lions 14 12 45 1 0.65 FALSE -0.331818181818182 0 18.2222222222222 27.2222222222222 23.8888888888889 22.4444444444444
1294 2010 10 Jacksonville Jaguars Houston Texans Jacksonville Jaguars Houston Texans 31 24 48.5 1 0.52 TRUE -0.00727272727272721 0 21.7777777777778 27.7777777777778 24.1111111111111 28.5555555555556
1297 2010 10 Washington Redskins Philadelphia Eagles Philadelphia Eagles Washington Redskins 59 28 44 1 0.72 TRUE 0.374545454545455 1 20.3333333333333 25.4444444444444 28.5555555555556 23.2222222222222
1300 2010 11 Miami Dolphins Chicago Bears Chicago Bears Miami Dolphins 16 0 40 1 0.55 FALSE -0.140909090909091 1 17.2 20.8 19.1 14.6
1303 2010 11 Philadelphia Eagles New York Giants Philadelphia Eagles New York Giants 27 17 47.5 1 0.69 FALSE -0.408181818181818 1 28.4 22.6 25.3 22
1306 2010 11 Pittsburgh Steelers Oakland Raiders Pittsburgh Steelers Oakland Raiders 35 3 41 1 0.58 FALSE -0.198181818181818 0 23.5 16.5 23.8 22.3
1309 2010 11 Carolina Panthers Baltimore Ravens Baltimore Ravens Carolina Panthers 37 13 37 1 0.57 TRUE 0.0881818181818181 0 11.7 25.2 23.3 17.8
1312 2010 11 New Orleans Saints Seattle Seahawks New Orleans Saints Seattle Seahawks 34 19 44.5 1 0.75 TRUE 0.431818181818182 0 23.5 17 18.5 23.3
1315 2010 11 San Francisco 49ers Tampa Bay Buccaneers Tampa Bay Buccaneers San Francisco 49ers 21 0 41.5 0 0.52 TRUE -0.00727272727272721 0 16 21.9 20.9 20.6
1318 2010 11 Tennessee Titans Washington Redskins Washington Redskins Tennessee Titans 19 16 44 1 0.6 FALSE -0.236363636363636 0 25.7 19.8 20.2 24.5
1321 2010 11 New York Jets Houston Texans New York Jets Houston Texans 30 27 46 1 0.53 TRUE 0.0118181818181819 0 23.8 17.7 24.4 28.7
1324 2010 11 Minnesota Vikings Green Bay Packers Green Bay Packers Minnesota Vikings 31 3 44.5 1 0.78 FALSE -0.58 0 17.2 22.6 25.2 14.6
1327 2010 11 Dallas Cowboys Detroit Lions Dallas Cowboys Detroit Lions 35 19 47.5 1 0.65 TRUE 0.240909090909091 0 22.9 27.1 23.4 23.7
1330 2010 11 Kansas City Chiefs Arizona Cardinals Kansas City Chiefs Arizona Cardinals 31 13 45 1 0.64 FALSE -0.312727272727273 0 24.3 20.7 18.8 29.2
1333 2010 11 New England Patriots Indianapolis Colts New England Patriots Indianapolis Colts 31 28 49.5 1 0.62 TRUE 0.183636363636364 0 28.9 24.2 26.8 21.6
1336 2010 11 Jacksonville Jaguars Cleveland Browns Jacksonville Jaguars Cleveland Browns 24 20 43 1 0.55 TRUE 0.05 0 22 27 19.2 20.6
1339 2010 11 Cincinnati Bengals Buffalo Bills Buffalo Bills Cincinnati Bengals 49 31 41 1 0.59 TRUE 0.126363636363636 0 21.5 26.2 21.3 27.6
1342 2010 11 St. Louis Rams Atlanta Falcons Atlanta Falcons St. Louis Rams 34 17 43 1 0.65 TRUE 0.240909090909091 0 17.7 19.8 25.6 19.2
1345 2010 11 San Diego Chargers Denver Broncos San Diego Chargers Denver Broncos 35 14 50 1 0.67 FALSE -0.37 1 27.4 21.1 21.7 28.7
1348 2010 12 Detroit Lions New England Patriots New England Patriots Detroit Lions 45 24 50.5 1 0.61 TRUE 0.164545454545455 1 23.4545454545455 25.6363636363636 30.3636363636364 24.1818181818182
1351 2010 12 Dallas Cowboys New Orleans Saints New Orleans Saints Dallas Cowboys 30 27 48.5 1 0.65 TRUE 0.240909090909091 1 23.2727272727273 27.3636363636364 24.0909090909091 17.9090909090909
1354 2010 12 New York Jets Cincinnati Bengals New York Jets Cincinnati Bengals 26 10 43.5 1 0.66 FALSE -0.350909090909091 1 24 17 20.4545454545455 26.1818181818182
1357 2010 12 Atlanta Falcons Green Bay Packers Atlanta Falcons Green Bay Packers 20 17 47.5 1 0.69 FALSE -0.408181818181818 0 25.0909090909091 19 24.4545454545455 15.0909090909091
1360 2010 12 Baltimore Ravens Tampa Bay Buccaneers Baltimore Ravens Tampa Bay Buccaneers 17 10 41.5 1 0.5 FALSE -0.0454545454545454 0 22.7272727272727 17.0909090909091 19.9090909090909 20.2727272727273
1363 2010 12 Indianapolis Colts San Diego Chargers San Diego Chargers Indianapolis Colts 36 14 50.5 1 0.72 FALSE -0.465454545454545 1 25.6363636363636 22.9090909090909 28.1818181818182 20.4545454545455
1366 2010 12 Denver Broncos St. Louis Rams St. Louis Rams Denver Broncos 36 33 46.5 1 0.63 TRUE 0.202727272727273 0 22.7272727272727 29.3636363636364 19.3636363636364 21
1369 2010 12 Buffalo Bills Pittsburgh Steelers Pittsburgh Steelers Buffalo Bills 19 16 43.5 1 0.6 FALSE -0.236363636363636 0 20.8181818181818 26.8181818181818 23.0909090909091 16.4545454545455
1372 2010 12 Chicago Bears Philadelphia Eagles Chicago Bears Philadelphia Eagles 31 26 42 1 0.64 TRUE 0.221818181818182 0 20.1818181818182 15.6363636363636 28.1818181818182 23.3636363636364
1375 2010 12 Houston Texans Tennessee Titans Houston Texans Tennessee Titans 20 0 46.5 1 0.64 FALSE -0.312727272727273 0 24 26.0909090909091 23.3636363636364 19.8181818181818
1378 2010 12 Cleveland Browns Carolina Panthers Cleveland Browns Carolina Panthers 24 23 37.5 1 0.55 TRUE 0.05 0 19.6363636363636 20.8181818181818 12.7272727272727 25.0909090909091
1381 2010 12 Washington Redskins Minnesota Vikings Minnesota Vikings Washington Redskins 17 13 43.5 1 0.55 FALSE -0.140909090909091 0 19.5454545454545 23.8181818181818 17.1818181818182 21.7272727272727
1384 2010 12 Oakland Raiders Miami Dolphins Miami Dolphins Oakland Raiders 33 17 38 0 0.5 FALSE -0.0454545454545454 0 23.1818181818182 23.2727272727273 18.6363636363636 20.4545454545455
1387 2010 12 Seattle Seahawks Kansas City Chiefs Kansas City Chiefs Seattle Seahawks 42 24 45 1 0.54 TRUE 0.030909090909091 0 19 25 25.9090909090909 21
1390 2010 12 New York Giants Jacksonville Jaguars New York Giants Jacksonville Jaguars 24 20 43.5 1 0.64 TRUE 0.221818181818182 0 25.1818181818182 21.8181818181818 21.8181818181818 26.7272727272727
1393 2010 12 Arizona Cardinals San Francisco 49ers San Francisco 49ers Arizona Cardinals 27 6 41.5 1 0.61 FALSE -0.255454545454545 1 17.6363636363636 29 17 20.4545454545455
1396 2010 13 Philadelphia Eagles Houston Texans Philadelphia Eagles Houston Texans 34 24 51 1 0.7 TRUE 0.336363636363636 1 28.6666666666667 23.4166666666667 24 26.75
1399 2010 13 New York Giants Washington Redskins New York Giants Washington Redskins 31 7 43 1 0.56 FALSE -0.16 0 25.6666666666667 20.5833333333333 18.5 24.4166666666667
1402 2010 13 Arizona Cardinals St. Louis Rams St. Louis Rams Arizona Cardinals 19 6 44 1 0.57 FALSE -0.179090909090909 0 16.6666666666667 28.1666666666667 19.3333333333333 19.75
1405 2010 13 San Diego Chargers Oakland Raiders Oakland Raiders San Diego Chargers 28 13 45 1 0.71 FALSE -0.446363636363636 0 26.9166666666667 21.0833333333333 23.5833333333333 22.4166666666667
1408 2010 13 Baltimore Ravens Pittsburgh Steelers Pittsburgh Steelers Baltimore Ravens 13 10 38.5 0 0.56 TRUE 0.0690909090909093 1 21.6666666666667 16.75 22.25 15.9166666666667
1411 2010 13 Cincinnati Bengals New Orleans Saints New Orleans Saints Cincinnati Bengals 34 30 45 1 0.69 TRUE 0.317272727272727 0 21.25 26.8333333333333 24.9166666666667 18.9166666666667
1414 2010 13 Tennessee Titans Jacksonville Jaguars Jacksonville Jaguars Tennessee Titans 17 6 43.5 0 0.52 TRUE -0.00727272727272721 0 21.9166666666667 19.5833333333333 21.4166666666667 25
1417 2010 13 Green Bay Packers San Francisco 49ers Green Bay Packers San Francisco 49ers 34 16 41 1 0.62 TRUE 0.183636363636364 0 25.25 15.1666666666667 16.9166666666667 21.5833333333333
1420 2010 13 Kansas City Chiefs Denver Broncos Kansas City Chiefs Denver Broncos 10 6 48 1 0.66 FALSE -0.350909090909091 0 24.5833333333333 19.75 21.3333333333333 27.75
1423 2010 13 Tampa Bay Buccaneers Atlanta Falcons Atlanta Falcons Tampa Bay Buccaneers 28 24 43 0 0.53 FALSE -0.102727272727273 0 20.25 20.9166666666667 25.3333333333333 19.4166666666667
1426 2010 13 Minnesota Vikings Buffalo Bills Minnesota Vikings Buffalo Bills 38 14 43.5 1 0.58 TRUE 0.107272727272727 0 18.9166666666667 21.0833333333333 20.25 27.75
1429 2010 13 Seattle Seahawks Carolina Panthers Seattle Seahawks Carolina Panthers 31 14 40.5 1 0.52 TRUE -0.00727272727272721 0 20 24.0833333333333 12.8333333333333 25.5833333333333
1432 2010 13 Detroit Lions Chicago Bears Chicago Bears Detroit Lions 24 20 43.5 1 0.62 TRUE 0.183636363636364 0 23.1666666666667 25.5 20.5 16
1435 2010 13 Miami Dolphins Cleveland Browns Cleveland Browns Miami Dolphins 13 10 43.5 0 0.53 TRUE 0.0118181818181819 0 17.9166666666667 19.8333333333333 19.0833333333333 19.9166666666667
1438 2010 13 Indianapolis Colts Dallas Cowboys Dallas Cowboys Indianapolis Colts 38 35 48 1 0.73 TRUE 0.393636363636364 0 26.4166666666667 24.1666666666667 24.5 28
1441 2010 13 New England Patriots New York Jets New England Patriots New York Jets 45 3 44.5 1 0.58 TRUE 0.107272727272727 1 31.5833333333333 22.4166666666667 22.25 19.3333333333333
1444 2010 14 Tennessee Titans Indianapolis Colts Indianapolis Colts Tennessee Titans 30 28 44 1 0.57 TRUE 0.0881818181818181 1 22.3846153846154 20.3846153846154 26.6923076923077 24.4615384615385
1447 2010 14 Dallas Cowboys Philadelphia Eagles Philadelphia Eagles Dallas Cowboys 30 27 51 1 0.67 TRUE 0.279090909090909 1 24.6923076923077 28.1538461538462 28.7692307692308 23.6923076923077
1450 2010 14 Jacksonville Jaguars Oakland Raiders Jacksonville Jaguars Oakland Raiders 38 31 41.5 1 0.55 TRUE 0.05 0 22.6923076923077 25.4615384615385 24.1538461538462 23.6153846153846
1453 2010 14 New Orleans Saints St. Louis Rams New Orleans Saints St. Louis Rams 31 13 47 1 0.7 FALSE -0.427272727272727 0 25.3846153846154 18.4615384615385 18.8461538461538 20.6153846153846
1456 2010 14 San Francisco 49ers Seattle Seahawks San Francisco 49ers Seattle Seahawks 40 21 42.5 0 0.52 FALSE -0.0836363636363636 0 18.6923076923077 21.5384615384615 20.0769230769231 25.3076923076923
1459 2010 14 Washington Redskins Tampa Bay Buccaneers Tampa Bay Buccaneers Washington Redskins 17 16 41 0 0.58 TRUE 0.107272727272727 0 18.3076923076923 23.8461538461538 20 20.5384615384615
1462 2010 14 Chicago Bears New England Patriots New England Patriots Chicago Bears 36 7 37 1 0.63 TRUE 0.202727272727273 0 19.4615384615385 17.5384615384615 31.9230769230769 21.2307692307692
1465 2010 14 New York Jets Miami Dolphins Miami Dolphins New York Jets 10 6 37.5 0 0.57 TRUE 0.0881818181818181 0 21 18.6153846153846 17.3076923076923 18.7692307692308
1468 2010 14 San Diego Chargers Kansas City Chiefs San Diego Chargers Kansas City Chiefs 31 0 45.5 1 0.64 FALSE -0.312727272727273 0 27.2307692307692 19.4615384615385 22.6923076923077 20.6153846153846
1471 2010 14 Carolina Panthers Atlanta Falcons Atlanta Falcons Carolina Panthers 31 10 41.5 1 0.55 FALSE -0.140909090909091 0 12.6153846153846 26 25.7692307692308 18.6923076923077
1474 2010 14 Pittsburgh Steelers Cincinnati Bengals Pittsburgh Steelers Cincinnati Bengals 23 7 39.5 1 0.53 FALSE -0.102727272727273 0 22.3076923076923 15.2307692307692 20.1538461538462 26.5384615384615
1477 2010 14 Buffalo Bills Cleveland Browns Buffalo Bills Cleveland Browns 13 6 39 1 0.51 FALSE -0.0645454545454546 0 19.6923076923077 26.0769230769231 18.0769230769231 19.3846153846154
1480 2010 14 Arizona Cardinals Denver Broncos Arizona Cardinals Denver Broncos 43 13 44.5 1 0.62 TRUE 0.183636363636364 0 18.6923076923077 27 20.6923076923077 28.9230769230769
1483 2010 14 Detroit Lions Green Bay Packers Detroit Lions Green Bay Packers 7 3 46 1 0.73 FALSE -0.484545454545455 0 21.9230769230769 23.7692307692308 23.5384615384615 14.5384615384615
1486 2010 14 Houston Texans Baltimore Ravens Baltimore Ravens Houston Texans 34 28 46.5 0 0.52 FALSE -0.0836363636363636 1 24.3076923076923 27.3076923076923 22.6153846153846 17.6153846153846
1489 2010 14 Minnesota Vikings New York Giants New York Giants Minnesota Vikings 21 3 43.5 1 0.7 FALSE -0.427272727272727 1 17.6923076923077 21.0769230769231 25.3076923076923 19.2307692307692
1492 2010 15 San Diego Chargers San Francisco 49ers San Diego Chargers San Francisco 49ers 34 7 44.5 1 0.7 FALSE -0.427272727272727 1 27.7142857142857 18.5714285714286 17.8571428571429 22.4285714285714
1495 2010 15 Indianapolis Colts Jacksonville Jaguars Indianapolis Colts Jacksonville Jaguars 34 24 48 1 0.64 TRUE 0.221818181818182 0 27.2142857142857 24.4285714285714 22.7857142857143 26.0714285714286
1498 2010 15 St. Louis Rams Kansas City Chiefs Kansas City Chiefs St. Louis Rams 27 13 42.5 0 0.56 TRUE 0.0690909090909093 0 18.4285714285714 21.0714285714286 23 20.0714285714286
1501 2010 15 Baltimore Ravens New Orleans Saints Baltimore Ravens New Orleans Saints 30 24 45 1 0.67 TRUE 0.279090909090909 0 23.1428571428571 18.0714285714286 25.2857142857143 19.2857142857143
1504 2010 15 Pittsburgh Steelers New York Jets New York Jets Pittsburgh Steelers 22 17 36 0 0.54 FALSE -0.121818181818182 0 21.9285714285714 15.7142857142857 21.0714285714286 18.5
1507 2010 15 New York Giants Philadelphia Eagles Philadelphia Eagles New York Giants 38 31 47 1 0.67 TRUE 0.279090909090909 0 25.7142857142857 20.5714285714286 29.4285714285714 24.2142857142857
1510 2010 15 Dallas Cowboys Washington Redskins Dallas Cowboys Washington Redskins 33 30 44 1 0.51 TRUE -0.0263636363636363 0 25.2857142857143 28.2857142857143 19.1428571428571 24.5
1513 2010 15 Tennessee Titans Houston Texans Tennessee Titans Houston Texans 31 17 47 1 0.53 TRUE 0.0118181818181819 0 23 20.1428571428571 23.7857142857143 27.5714285714286
1516 2010 15 New England Patriots Green Bay Packers New England Patriots Green Bay Packers 31 27 43.5 1 0.68 TRUE 0.298181818181818 1 31.8571428571429 21.6428571428571 23.7857142857143 15.7142857142857
1519 2010 15 Tampa Bay Buccaneers Detroit Lions Detroit Lions Tampa Bay Buccaneers 23 20 43 0 0.5 TRUE -0.0454545454545454 0 20 20.7142857142857 22 23.5
1522 2010 15 Oakland Raiders Denver Broncos Oakland Raiders Denver Broncos 39 23 41.5 1 0.7 TRUE 0.336363636363636 0 25.2142857142857 23.5714285714286 20.8571428571429 29.6428571428571
1525 2010 15 Carolina Panthers Arizona Cardinals Carolina Panthers Arizona Cardinals 19 12 37.5 1 0.51 FALSE -0.0645454545454546 0 13.0714285714286 25 18.2142857142857 26.4285714285714
1528 2010 15 Cincinnati Bengals Cleveland Browns Cincinnati Bengals Cleveland Browns 19 17 41.5 1 0.59 FALSE -0.217272727272727 0 20.0714285714286 25.8571428571429 18 19.3571428571429
1531 2010 15 Miami Dolphins Buffalo Bills Buffalo Bills Miami Dolphins 17 14 40 0 0.5 TRUE -0.0454545454545454 0 17.0714285714286 18.6428571428571 19.5 25.2142857142857
1534 2010 15 Seattle Seahawks Atlanta Falcons Atlanta Falcons Seattle Seahawks 34 18 46.5 1 0.56 TRUE 0.0690909090909093 0 19.9285714285714 25.9285714285714 26.3571428571429 18.6428571428571
1537 2010 15 Minnesota Vikings Chicago Bears Chicago Bears Minnesota Vikings 40 14 34.5 1 0.62 TRUE 0.183636363636364 1 17.4285714285714 22.4285714285714 20.9285714285714 17.2857142857143
1540 2010 16 Pittsburgh Steelers Carolina Panthers Pittsburgh Steelers Carolina Panthers 27 3 37.5 1 0.61 FALSE -0.255454545454545 1 22.2666666666667 14.8666666666667 12.4 25.1333333333333
1543 2010 16 Arizona Cardinals Dallas Cowboys Arizona Cardinals Dallas Cowboys 27 26 45 1 0.68 TRUE 0.298181818181818 1 18.8 26.4 25.3333333333333 28.2
1546 2010 16 Jacksonville Jaguars Washington Redskins Washington Redskins Jacksonville Jaguars 20 17 45.5 0 0.5 TRUE -0.0454545454545454 0 22.4 25.6666666666667 19.2 24
1549 2010 16 St. Louis Rams San Francisco 49ers St. Louis Rams San Francisco 49ers 25 17 40 1 0.56 TRUE 0.0690909090909093 0 18.8666666666667 20.8 17.8 22.6
1552 2010 16 Tampa Bay Buccaneers Seattle Seahawks Tampa Bay Buccaneers Seattle Seahawks 38 15 43 0 0.56 FALSE -0.16 0 21.2 20.3333333333333 19.6 26.7333333333333
1555 2010 16 Cincinnati Bengals San Diego Chargers Cincinnati Bengals San Diego Chargers 34 20 43.5 1 0.67 TRUE 0.279090909090909 0 21 25.4666666666667 27.2 19.6
1558 2010 16 Cleveland Browns Baltimore Ravens Baltimore Ravens Cleveland Browns 20 10 40 0 0.55 TRUE 0.05 0 17.4666666666667 19.4 22.9333333333333 17.5333333333333
1561 2010 16 Kansas City Chiefs Tennessee Titans Kansas City Chiefs Tennessee Titans 34 14 42.5 1 0.59 TRUE 0.126363636363636 0 23.7333333333333 19.6666666666667 22.4 21.0666666666667
1564 2010 16 Chicago Bears New York Jets Chicago Bears New York Jets 38 34 35.5 0 0.5 FALSE -0.0454545454545454 0 22.0666666666667 18.4 21.9333333333333 19.8
1567 2010 16 Green Bay Packers New York Giants Green Bay Packers New York Giants 45 17 43.5 1 0.68 TRUE 0.298181818181818 0 25.2 15.8 25.1333333333333 22.2
1570 2010 16 Oakland Raiders Indianapolis Colts Indianapolis Colts Oakland Raiders 31 26 46 1 0.7 TRUE 0.336363636363636 0 25.2666666666667 24.0666666666667 27.4666666666667 24.5333333333333
1573 2010 16 Miami Dolphins Detroit Lions Detroit Lions Miami Dolphins 34 27 41.5 1 0.5 TRUE -0.0454545454545454 0 17.7333333333333 19.6666666666667 22.8 23.7333333333333
1576 2010 16 Denver Broncos Houston Texans Denver Broncos Houston Texans 24 23 49.5 1 0.6 FALSE -0.236363636363636 0 21.0666666666667 29.2 23.7333333333333 27.3333333333333
1579 2010 16 Buffalo Bills New England Patriots New England Patriots Buffalo Bills 34 3 46 1 0.74 FALSE -0.503636363636364 0 18.4 25.8 32 20.4
1582 2010 16 Atlanta Falcons New Orleans Saints New Orleans Saints Atlanta Falcons 17 14 50 1 0.74 FALSE -0.503636363636364 1 25.5333333333333 18.5333333333333 24.7333333333333 18.9333333333333
1585 2010 16 Philadelphia Eagles Minnesota Vikings Minnesota Vikings Philadelphia Eagles 24 14 44 1 0.68 FALSE -0.389090909090909 1 28.4 24.2 17.8666666666667 21.8666666666667
1588 2010 17 Washington Redskins New York Giants New York Giants Washington Redskins 17 14 44.5 1 0.59 FALSE -0.217272727272727 0 18.875 23.5625 24.625 21.6875
1591 2010 17 Indianapolis Colts Tennessee Titans Indianapolis Colts Tennessee Titans 23 20 48 1 0.55 FALSE -0.140909090909091 0 27.1875 24.25 22.25 21.1875
1594 2010 17 Cleveland Browns Pittsburgh Steelers Pittsburgh Steelers Cleveland Browns 41 9 38 1 0.52 TRUE -0.00727272727272721 0 16.9375 20.75 23.4375 14.5
1597 2010 17 Kansas City Chiefs Oakland Raiders Oakland Raiders Kansas City Chiefs 31 10 43 1 0.61 FALSE -0.255454545454545 0 22.875 20.375 25.625 23.1875
1600 2010 17 Seattle Seahawks St. Louis Rams Seattle Seahawks St. Louis Rams 16 6 42.5 1 0.59 FALSE -0.217272727272727 0 19.375 25.4375 18.0625 20.5
1603 2010 17 Denver Broncos San Diego Chargers San Diego Chargers Denver Broncos 33 28 47.5 1 0.62 TRUE 0.183636363636364 0 21.5 29.4375 27.5625 20.125
1606 2010 17 New Orleans Saints Tampa Bay Buccaneers Tampa Bay Buccaneers New Orleans Saints 23 13 46.5 1 0.55 FALSE -0.140909090909091 0 24 19.1875 21.3125 19.875
1609 2010 17 Detroit Lions Minnesota Vikings Detroit Lions Minnesota Vikings 20 13 44 1 0.69 FALSE -0.408181818181818 0 22.625 23.0625 17.5625 21.75
1612 2010 17 New England Patriots Miami Dolphins New England Patriots Miami Dolphins 38 7 44 1 0.56 TRUE 0.0690909090909093 0 32.375 19.5625 17.0625 20.8125
1615 2010 17 New York Jets Buffalo Bills New York Jets Buffalo Bills 38 7 38 0 0.56 FALSE -0.16 0 22.9375 19 17.6875 26.5625
1618 2010 17 Atlanta Falcons Carolina Panthers Atlanta Falcons Carolina Panthers 31 10 41 1 0.64 FALSE -0.312727272727273 0 25.875 18 12.25 25.5
1621 2010 17 Green Bay Packers Chicago Bears Green Bay Packers Chicago Bears 10 3 43.5 1 0.65 FALSE -0.331818181818182 0 24.25 15 20.875 17.875
1624 2010 17 Baltimore Ravens Cincinnati Bengals Baltimore Ravens Cincinnati Bengals 13 7 43 0 0.53 TRUE 0.0118181818181819 0 22.3125 16.875 20.125 24.6875
1627 2010 17 San Francisco 49ers Arizona Cardinals San Francisco 49ers Arizona Cardinals 38 7 39 1 0.58 TRUE 0.107272727272727 0 19.0625 21.625 18.0625 27.125
1630 2010 17 Philadelphia Eagles Dallas Cowboys Dallas Cowboys Philadelphia Eagles 14 13 43.5 1 0.72 FALSE -0.465454545454545 0 27.4375 23.5625 24.625 27.25
1633 2010 17 Houston Texans Jacksonville Jaguars Houston Texans Jacksonville Jaguars 34 17 47.5 0 0.52 FALSE -0.0836363636363636 0 24.375 26.6875 22.0625 26.1875
1636 2011 1 Green Bay Packers New Orleans Saints Green Bay Packers New Orleans Saints 42 34 47.5 1 0.69 TRUE 0.317272727272727 1 42 34 34 42
1639 2011 1 Cleveland Browns Cincinnati Bengals Cincinnati Bengals Cleveland Browns 27 17 36.5 1 0.59 TRUE 0.126363636363636 0 17 27 27 17
1642 2011 1 Arizona Cardinals Carolina Panthers Arizona Cardinals Carolina Panthers 28 21 37.5 1 0.64 TRUE 0.221818181818182 0 28 21 21 28
1645 2011 1 St. Louis Rams Philadelphia Eagles Philadelphia Eagles St. Louis Rams 31 13 44.5 1 0.77 FALSE -0.560909090909091 0 13 31 31 13
1648 2011 1 San Francisco 49ers Seattle Seahawks San Francisco 49ers Seattle Seahawks 33 17 38 0 0.56 FALSE -0.16 0 33 17 17 33
1651 2011 1 Washington Redskins New York Giants Washington Redskins New York Giants 28 14 40 1 0.56 TRUE 0.0690909090909093 0 28 14 14 28
1654 2011 1 New York Jets Dallas Cowboys New York Jets Dallas Cowboys 27 24 41 1 0.58 TRUE 0.107272727272727 1 27 24 24 27
1657 2011 1 San Diego Chargers Minnesota Vikings San Diego Chargers Minnesota Vikings 24 17 44 1 0.79 FALSE -0.599090909090909 0 24 17 17 24
1660 2011 1 Chicago Bears Atlanta Falcons Chicago Bears Atlanta Falcons 30 12 40.5 1 0.53 TRUE 0.0118181818181819 0 30 12 12 30
1663 2011 1 Houston Texans Indianapolis Colts Houston Texans Indianapolis Colts 34 7 44 1 0.57 FALSE -0.179090909090909 0 34 7 7 34
1666 2011 1 Baltimore Ravens Pittsburgh Steelers Baltimore Ravens Pittsburgh Steelers 35 7 37 1 0.51 TRUE -0.0263636363636363 0 35 7 7 35
1669 2011 1 Kansas City Chiefs Buffalo Bills Buffalo Bills Kansas City Chiefs 41 7 39.5 0 0.57 FALSE -0.179090909090909 0 7 41 41 7
1672 2011 1 Tampa Bay Buccaneers Detroit Lions Detroit Lions Tampa Bay Buccaneers 27 20 43.5 1 0.67 TRUE 0.279090909090909 0 20 27 27 20
1675 2011 1 Jacksonville Jaguars Tennessee Titans Jacksonville Jaguars Tennessee Titans 16 14 38 0 0.52 TRUE -0.00727272727272721 0 16 14 14 16
1678 2011 1 Miami Dolphins New England Patriots New England Patriots Miami Dolphins 38 24 46.5 1 0.74 TRUE 0.412727272727273 1 24 38 38 24
1681 2011 1 Denver Broncos Oakland Raiders Oakland Raiders Denver Broncos 23 20 42.5 1 0.68 TRUE 0.298181818181818 1 20 23 23 20
1684 2011 2 Buffalo Bills Oakland Raiders Buffalo Bills Oakland Raiders 38 35 41 1 0.6 TRUE 0.145454545454546 0 39.5 21 29 29
1687 2011 2 San Francisco 49ers Dallas Cowboys Dallas Cowboys San Francisco 49ers 27 24 41 1 0.67 TRUE 0.279090909090909 0 28.5 22 25.5 25.5
1690 2011 2 Atlanta Falcons Philadelphia Eagles Atlanta Falcons Philadelphia Eagles 35 31 49.5 1 0.61 TRUE 0.164545454545455 1 23.5 30.5 31 24
1693 2011 2 Pittsburgh Steelers Seattle Seahawks Pittsburgh Steelers Seattle Seahawks 24 0 40 1 0.62 FALSE -0.274545454545455 0 15.5 17.5 8.5 28.5
1696 2011 2 Miami Dolphins Houston Texans Houston Texans Miami Dolphins 23 13 47 1 0.64 FALSE -0.312727272727273 0 18.5 30.5 28.5 10
1699 2011 2 New England Patriots San Diego Chargers New England Patriots San Diego Chargers 35 21 53.5 1 0.68 TRUE 0.298181818181818 0 36.5 22.5 22.5 26
1702 2011 2 Carolina Panthers Green Bay Packers Green Bay Packers Carolina Panthers 30 23 45 1 0.79 TRUE 0.508181818181818 0 22 29 36 28.5
1705 2011 2 New Orleans Saints Chicago Bears New Orleans Saints Chicago Bears 30 13 46.5 1 0.64 FALSE -0.312727272727273 0 32 27.5 21.5 21
1708 2011 2 New York Jets Jacksonville Jaguars New York Jets Jacksonville Jaguars 32 3 38 1 0.51 FALSE -0.0645454545454546 0 29.5 13.5 9.5 23
1711 2011 2 Indianapolis Colts Cleveland Browns Cleveland Browns Indianapolis Colts 27 19 39 0 0.55 FALSE -0.140909090909091 0 13 30.5 22 23
1714 2011 2 Minnesota Vikings Tampa Bay Buccaneers Tampa Bay Buccaneers Minnesota Vikings 24 20 41 1 0.53 TRUE 0.0118181818181819 0 18.5 24 22 23.5
1717 2011 2 Detroit Lions Kansas City Chiefs Detroit Lions Kansas City Chiefs 48 3 45 1 0.62 TRUE 0.183636363636364 0 37.5 11.5 5 44.5
1720 2011 2 Washington Redskins Arizona Cardinals Washington Redskins Arizona Cardinals 22 21 45 1 0.62 FALSE -0.274545454545455 0 25 17.5 24.5 21.5
1723 2011 2 Tennessee Titans Baltimore Ravens Tennessee Titans Baltimore Ravens 26 13 39 1 0.6 FALSE -0.236363636363636 0 20 14.5 24 16.5
1726 2011 2 Denver Broncos Cincinnati Bengals Denver Broncos Cincinnati Bengals 24 22 40.5 1 0.57 TRUE 0.0881818181818181 0 22 22.5 24.5 20.5
1729 2011 2 New York Giants St. Louis Rams New York Giants St. Louis Rams 28 16 43.5 1 0.6 TRUE 0.145454545454546 1 21 22 14.5 29.5
1732 2011 3 Chicago Bears Green Bay Packers Green Bay Packers Chicago Bears 27 17 45.5 1 0.62 FALSE -0.274545454545455 0 20 23 33 24.6666666666667
1735 2011 3 Cleveland Browns Miami Dolphins Cleveland Browns Miami Dolphins 17 16 42.5 0 0.52 TRUE -0.00727272727272721 0 20.3333333333333 20.6666666666667 17.6666666666667 26
1738 2011 3 New Orleans Saints Houston Texans New Orleans Saints Houston Texans 40 33 51 1 0.78 TRUE 0.489090909090909 0 34.6666666666667 29.3333333333333 30 20
1741 2011 3 Cincinnati Bengals San Francisco 49ers San Francisco 49ers Cincinnati Bengals 13 8 38.5 1 0.56 FALSE -0.16 0 19 18 23.3333333333333 17.3333333333333
1744 2011 3 Seattle Seahawks Arizona Cardinals Seattle Seahawks Arizona Cardinals 13 10 43 1 0.53 FALSE -0.102727272727273 0 10 22.3333333333333 19.6666666666667 18.6666666666667
1747 2011 3 Indianapolis Colts Pittsburgh Steelers Pittsburgh Steelers Indianapolis Colts 23 20 40 1 0.66 TRUE 0.26 1 15.3333333333333 28 18 18.3333333333333
1750 2011 3 San Diego Chargers Kansas City Chiefs San Diego Chargers Kansas City Chiefs 20 17 44.5 1 0.69 FALSE -0.408181818181818 0 21.6666666666667 23 9 36.3333333333333
1753 2011 3 St. Louis Rams Baltimore Ravens Baltimore Ravens St. Louis Rams 37 7 42 1 0.51 TRUE -0.0263636363636363 0 12 32 28.3333333333333 13.3333333333333
1756 2011 3 Tennessee Titans Denver Broncos Tennessee Titans Denver Broncos 17 14 44 1 0.56 FALSE -0.16 0 19 14.3333333333333 19.3333333333333 20.6666666666667
1759 2011 3 Tampa Bay Buccaneers Atlanta Falcons Tampa Bay Buccaneers Atlanta Falcons 16 13 45 1 0.55 FALSE -0.140909090909091 0 20 20 20 25.6666666666667
1762 2011 3 Buffalo Bills New England Patriots Buffalo Bills New England Patriots 34 31 54 1 0.79 TRUE 0.508181818181818 0 37.6666666666667 24.3333333333333 34.6666666666667 26.3333333333333
1765 2011 3 Philadelphia Eagles New York Giants New York Giants Philadelphia Eagles 29 16 46.5 1 0.58 FALSE -0.198181818181818 0 26 25.6666666666667 23.6666666666667 20
1768 2011 3 Oakland Raiders New York Jets Oakland Raiders New York Jets 34 24 40 1 0.6 TRUE 0.145454545454546 0 30.6666666666667 27.3333333333333 27.6666666666667 20.3333333333333
1771 2011 3 Minnesota Vikings Detroit Lions Detroit Lions Minnesota Vikings 26 23 44.5 1 0.71 TRUE 0.355454545454545 0 20 24.6666666666667 33.6666666666667 15.3333333333333
1774 2011 3 Carolina Panthers Jacksonville Jaguars Carolina Panthers Jacksonville Jaguars 16 10 43 1 0.65 FALSE -0.331818181818182 0 20 22.6666666666667 9.66666666666667 20.6666666666667
1777 2011 3 Dallas Cowboys Washington Redskins Dallas Cowboys Washington Redskins 18 16 45 1 0.56 FALSE -0.16 1 23 22.3333333333333 22 17.6666666666667
1780 2011 4 Oakland Raiders New England Patriots New England Patriots Oakland Raiders 31 19 55.5 1 0.67 FALSE -0.37 0 27.75 28.25 33.75 24.5
1783 2011 4 Green Bay Packers Denver Broncos Green Bay Packers Denver Broncos 49 23 46.5 1 0.73 TRUE 0.393636363636364 0 37 24.25 20.25 27.75
1786 2011 4 Chicago Bears Carolina Panthers Chicago Bears Carolina Panthers 34 29 42 0 0.52 FALSE -0.0836363636363636 0 23.5 24.5 22.25 25.5
1789 2011 4 Philadelphia Eagles San Francisco 49ers San Francisco 49ers Philadelphia Eagles 24 23 43.5 1 0.58 TRUE 0.107272727272727 0 25.25 25.25 23.5 18.75
1792 2011 4 Baltimore Ravens New York Jets Baltimore Ravens New York Jets 34 17 43 0 0.55 FALSE -0.140909090909091 1 29.75 14.25 25 23.75
1795 2011 4 Cleveland Browns Tennessee Titans Tennessee Titans Cleveland Browns 31 13 37.5 0 0.55 FALSE -0.140909090909091 0 18.5 23.25 22 14
1798 2011 4 Cincinnati Bengals Buffalo Bills Cincinnati Bengals Buffalo Bills 23 20 43 1 0.73 FALSE -0.484545454545455 0 20 18.5 33.25 24
1801 2011 4 St. Louis Rams Washington Redskins Washington Redskins St. Louis Rams 17 10 44 0 0.56 TRUE 0.0690909090909093 0 11.5 28.25 20.75 15.75
1804 2011 4 Kansas City Chiefs Minnesota Vikings Kansas City Chiefs Minnesota Vikings 22 17 40 1 0.55 FALSE -0.140909090909091 0 12.25 31.5 19.25 24
1807 2011 4 Dallas Cowboys Detroit Lions Detroit Lions Dallas Cowboys 34 30 46.5 1 0.7 TRUE 0.336363636363636 0 24.75 25.25 33.75 19
1810 2011 4 Houston Texans Pittsburgh Steelers Houston Texans Pittsburgh Steelers 17 10 46.5 1 0.67 FALSE -0.37 0 26.75 17.5 16 18
1813 2011 4 Jacksonville Jaguars New Orleans Saints New Orleans Saints Jacksonville Jaguars 23 10 45 1 0.7 FALSE -0.427272727272727 0 9.75 21.25 31.75 24.5
1816 2011 4 Seattle Seahawks Atlanta Falcons Atlanta Falcons Seattle Seahawks 30 28 39.5 1 0.64 TRUE 0.221818181818182 0 14.5 24.25 22.5 26.25
1819 2011 4 San Diego Chargers Miami Dolphins San Diego Chargers Miami Dolphins 26 16 45 1 0.57 FALSE -0.179090909090909 0 22.75 21.25 17.25 26
1822 2011 4 Arizona Cardinals New York Giants New York Giants Arizona Cardinals 31 27 45.5 1 0.65 TRUE 0.240909090909091 0 21.5 21.75 25.5 21.75
1825 2011 4 Tampa Bay Buccaneers Indianapolis Colts Tampa Bay Buccaneers Indianapolis Colts 24 17 40.5 1 0.58 TRUE 0.107272727272727 1 21 19.25 15.75 27
1828 2011 5 Atlanta Falcons Green Bay Packers Green Bay Packers Atlanta Falcons 25 14 54 1 0.77 FALSE -0.560909090909091 1 20.8 26 34.6 22.2
1831 2011 5 Carolina Panthers New Orleans Saints New Orleans Saints Carolina Panthers 30 27 51.5 1 0.8 TRUE 0.527272727272727 0 23.2 26.4 31.4 25
1834 2011 5 Minnesota Vikings Arizona Cardinals Minnesota Vikings Arizona Cardinals 34 10 45 1 0.56 FALSE -0.16 0 22.2 21.2 19.2 24.2
1837 2011 5 Buffalo Bills Philadelphia Eagles Buffalo Bills Philadelphia Eagles 31 24 53 1 0.66 TRUE 0.26 0 32.8 24 25 26.4
1840 2011 5 Pittsburgh Steelers Tennessee Titans Pittsburgh Steelers Tennessee Titans 38 17 40 1 0.51 TRUE -0.0263636363636363 0 20.4 17.8 21 18.8
1843 2011 5 Jacksonville Jaguars Cincinnati Bengals Cincinnati Bengals Jacksonville Jaguars 30 20 36.5 1 0.52 TRUE -0.00727272727272721 0 11.8 23 22 18.8
1846 2011 5 New England Patriots New York Jets New England Patriots New York Jets 30 21 50.5 1 0.7 TRUE 0.336363636363636 0 33 23.8 24.2 25
1849 2011 5 San Francisco 49ers Tampa Bay Buccaneers San Francisco 49ers Tampa Bay Buccaneers 48 3 41 1 0.5 TRUE -0.0454545454545454 0 28.4 15.6 17.4 25
1852 2011 5 Denver Broncos San Diego Chargers San Diego Chargers Denver Broncos 29 24 47 1 0.7 TRUE 0.336363636363636 0 21 28 24 21.8
1855 2011 5 Houston Texans Oakland Raiders Oakland Raiders Houston Texans 25 20 48.5 1 0.66 FALSE -0.350909090909091 0 25.4 19 27.2 26.6
1858 2011 5 New York Giants Seattle Seahawks Seattle Seahawks New York Giants 36 25 43.5 1 0.58 TRUE 0.107272727272727 0 25.4 24.6 18.8 24.4
1861 2011 5 Indianapolis Colts Kansas City Chiefs Kansas City Chiefs Indianapolis Colts 28 24 38 1 0.56 TRUE 0.0690909090909093 0 17.4 27.2 15.4 30
1864 2011 5 Detroit Lions Chicago Bears Detroit Lions Chicago Bears 24 13 47.5 1 0.65 FALSE -0.331818181818182 1 31.8 17.8 21.4 24.4
1867 2011 6 New England Patriots Dallas Cowboys New England Patriots Dallas Cowboys 20 16 55 1 0.68 FALSE -0.389090909090909 0 30.8333333333333 22.5 23 24.2
1870 2011 6 Oakland Raiders Cleveland Browns Oakland Raiders Cleveland Browns 24 17 45 1 0.55 FALSE -0.140909090909091 0 26.6666666666667 25 18.2 23.4
1873 2011 6 Washington Redskins Philadelphia Eagles Philadelphia Eagles Washington Redskins 20 13 46.5 1 0.54 FALSE -0.121818181818182 0 19.2 16.6 24.1666666666667 24.1666666666667
1876 2011 6 Baltimore Ravens Houston Texans Baltimore Ravens Houston Texans 29 14 44 1 0.54 FALSE -0.121818181818182 0 29.6 14.2 23.5 20.6666666666667
1879 2011 6 Cincinnati Bengals Indianapolis Colts Cincinnati Bengals Indianapolis Colts 27 17 40.5 1 0.59 TRUE 0.126363636363636 0 22.8333333333333 18.5 17.3333333333333 27.1666666666667
1882 2011 6 Tampa Bay Buccaneers New Orleans Saints Tampa Bay Buccaneers New Orleans Saints 26 20 50 1 0.55 FALSE -0.140909090909091 0 18.8333333333333 24.1666666666667 29.5 25.1666666666667
1885 2011 6 Chicago Bears Minnesota Vikings Chicago Bears Minnesota Vikings 39 10 41.5 1 0.64 TRUE 0.221818181818182 1 24.3333333333333 22 20.1666666666667 24.1666666666667
1888 2011 6 New York Giants Buffalo Bills New York Giants Buffalo Bills 27 24 49 1 0.61 TRUE 0.164545454545455 0 25.6666666666667 24.5 31.3333333333333 24.5
1891 2011 6 Green Bay Packers St. Louis Rams Green Bay Packers St. Louis Rams 24 3 47 1 0.76 FALSE -0.541818181818182 0 32.8333333333333 19 9.8 27.4
1894 2011 6 Pittsburgh Steelers Jacksonville Jaguars Pittsburgh Steelers Jacksonville Jaguars 17 13 40 1 0.59 FALSE -0.217272727272727 0 19.8333333333333 17 12 22
1897 2011 6 Atlanta Falcons Carolina Panthers Atlanta Falcons Carolina Panthers 31 17 49.5 1 0.66 FALSE -0.350909090909091 0 22.5 24.5 22.1666666666667 27.1666666666667
1900 2011 6 Detroit Lions San Francisco 49ers San Francisco 49ers Detroit Lions 25 19 45 1 0.61 FALSE -0.255454545454545 0 29.6666666666667 19 27.8333333333333 16.1666666666667
1903 2011 6 New York Jets Miami Dolphins New York Jets Miami Dolphins 24 6 41.5 1 0.51 FALSE -0.0645454545454546 1 24.1666666666667 21.8333333333333 15 25.6
1906 2011 7 Miami Dolphins Denver Broncos Denver Broncos Miami Dolphins 18 15 41.5 1 0.52 FALSE -0.0836363636363636 0 15 24.3333333333333 20.5 25.8333333333333
1909 2011 7 Cleveland Browns Seattle Seahawks Cleveland Browns Seattle Seahawks 6 3 41 0 0.52 TRUE -0.00727272727272721 0 16.1666666666667 20 16.1666666666667 21.3333333333333
1912 2011 7 Arizona Cardinals Pittsburgh Steelers Pittsburgh Steelers Arizona Cardinals 32 20 46 1 0.57 TRUE 0.0881818181818181 0 19.3333333333333 25.5 21.5714285714286 17.4285714285714
1915 2011 7 Oakland Raiders Kansas City Chiefs Kansas City Chiefs Oakland Raiders 28 0 41.5 1 0.6 FALSE -0.236363636363636 0 22.8571428571429 25.4285714285714 17.5 25
1918 2011 7 Dallas Cowboys St. Louis Rams Dallas Cowboys St. Louis Rams 34 7 43 1 0.65 FALSE -0.331818181818182 0 24.8333333333333 21.3333333333333 9.33333333333333 28.5
1921 2011 7 New York Jets San Diego Chargers New York Jets San Diego Chargers 27 21 43.5 1 0.67 TRUE 0.279090909090909 0 24.5714285714286 21.7142857142857 23.5 22.6666666666667
1924 2011 7 Tennessee Titans Houston Texans Houston Texans Tennessee Titans 41 7 44 1 0.66 TRUE 0.26 0 18.6666666666667 22.5 26 18.7142857142857
1927 2011 7 Tampa Bay Buccaneers Chicago Bears Chicago Bears Tampa Bay Buccaneers 24 18 44 0 0.53 TRUE 0.0118181818181819 0 18.7142857142857 24.1428571428571 24.2857142857143 21.4285714285714
1930 2011 7 New Orleans Saints Indianapolis Colts New Orleans Saints Indianapolis Colts 62 7 49 1 0.59 TRUE 0.126363636363636 1 34.1428571428571 22.5714285714286 15.8571428571429 32.1428571428571
1933 2011 7 Minnesota Vikings Green Bay Packers Green Bay Packers Minnesota Vikings 33 27 47 1 0.71 TRUE 0.355454545454545 0 21.1428571428571 25.4285714285714 32.8571428571429 20.1428571428571
1936 2011 7 Detroit Lions Atlanta Falcons Atlanta Falcons Detroit Lions 23 16 46.5 1 0.71 FALSE -0.446363636363636 0 27.7142857142857 19.5714285714286 22.5714285714286 23.2857142857143
1939 2011 7 Carolina Panthers Washington Redskins Carolina Panthers Washington Redskins 33 20 44.5 1 0.59 TRUE 0.126363636363636 0 23.7142857142857 26.1428571428571 19.3333333333333 19.3333333333333
1942 2011 7 Jacksonville Jaguars Baltimore Ravens Jacksonville Jaguars Baltimore Ravens 12 7 39 1 0.64 FALSE -0.312727272727273 1 12 19.8571428571429 25.8333333333333 13.8333333333333
1945 2011 8 San Francisco 49ers Cleveland Browns San Francisco 49ers Cleveland Browns 20 10 38.5 1 0.54 FALSE -0.121818181818182 0 26.7142857142857 15.2857142857143 15.2857142857143 20
1948 2011 8 New York Giants Miami Dolphins New York Giants Miami Dolphins 20 17 43 0 0.5 TRUE -0.0454545454545454 0 24.8571428571429 23.4285714285714 15.2857142857143 23.7142857142857
1951 2011 8 Denver Broncos Detroit Lions Detroit Lions Denver Broncos 45 10 43.5 1 0.66 TRUE 0.26 0 19 28.5714285714286 29.875 18.375
1954 2011 8 Pittsburgh Steelers New England Patriots Pittsburgh Steelers New England Patriots 25 17 52 1 0.57 FALSE -0.179090909090909 0 22 17.375 28.8571428571429 22.8571428571429
1957 2011 8 Philadelphia Eagles Dallas Cowboys Philadelphia Eagles Dallas Cowboys 34 7 49 1 0.68 FALSE -0.389090909090909 1 25.5714285714286 21.7142857142857 22.2857142857143 23.1428571428571
1960 2011 8 Baltimore Ravens Arizona Cardinals Baltimore Ravens Arizona Cardinals 30 27 43 0 0.52 FALSE -0.0836363636363636 0 26.4285714285714 15.7142857142857 20.4285714285714 26.1428571428571
1963 2011 8 Buffalo Bills Washington Redskins Buffalo Bills Washington Redskins 23 0 46.5 1 0.54 FALSE -0.121818181818182 0 30.1428571428571 21 16.5714285714286 19.8571428571429
1966 2011 8 Seattle Seahawks Cincinnati Bengals Cincinnati Bengals Seattle Seahawks 34 12 37.5 1 0.51 TRUE -0.0263636363636363 0 15.5714285714286 23.1428571428571 24.4285714285714 17.5714285714286
1969 2011 8 Tennessee Titans Indianapolis Colts Tennessee Titans Indianapolis Colts 27 10 43.5 0 0.57 TRUE 0.0881818181818181 0 19.8571428571429 20.7142857142857 15.125 31.5
1972 2011 8 St. Louis Rams New Orleans Saints St. Louis Rams New Orleans Saints 31 21 48.5 1 0.76 TRUE 0.450909090909091 0 12.4285714285714 27.4285714285714 32.5 23.625
1975 2011 8 Carolina Panthers Minnesota Vikings Minnesota Vikings Carolina Panthers 24 21 47 1 0.64 FALSE -0.312727272727273 0 23.375 25.875 21.5 24.875
1978 2011 8 Houston Texans Jacksonville Jaguars Houston Texans Jacksonville Jaguars 24 14 41 1 0.66 FALSE -0.350909090909091 0 25.75 18.125 12.25 20.375
1981 2011 8 Kansas City Chiefs San Diego Chargers Kansas City Chiefs San Diego Chargers 23 20 44.5 1 0.7 FALSE -0.427272727272727 1 18.2857142857143 24.2857142857143 23 22.7142857142857
1984 2011 9 Oakland Raiders Denver Broncos Denver Broncos Oakland Raiders 38 24 41.5 0 0.52 FALSE -0.0836363636363636 0 23 27 21.375 28
1987 2011 9 Washington Redskins San Francisco 49ers San Francisco 49ers Washington Redskins 19 11 38 1 0.57 FALSE -0.179090909090909 0 15.875 19.75 25.75 14.75
1990 2011 9 Buffalo Bills New York Jets New York Jets Buffalo Bills 27 11 45 1 0.62 FALSE -0.274545454545455 0 27.75 21.75 24.875 20.375
1993 2011 9 Houston Texans Cleveland Browns Houston Texans Cleveland Browns 30 12 42.5 1 0.62 FALSE -0.274545454545455 0 26.2222222222222 17.4444444444444 14.875 21.25
1996 2011 9 Arizona Cardinals St. Louis Rams Arizona Cardinals St. Louis Rams 19 13 42 1 0.6 FALSE -0.236363636363636 0 20.25 24.5 12.5 26.375
1999 2011 9 New England Patriots New York Giants New York Giants New England Patriots 24 20 51.5 1 0.74 FALSE -0.503636363636364 0 27.75 23 24.75 23
2002 2011 9 Kansas City Chiefs Miami Dolphins Miami Dolphins Kansas City Chiefs 31 3 40.5 0 0.53 TRUE 0.0118181818181819 0 16.375 25.125 17.25 21.125
2005 2011 9 Dallas Cowboys Seattle Seahawks Dallas Cowboys Seattle Seahawks 23 13 46 1 0.62 FALSE -0.274545454545455 0 22.375 21.875 15.25 23.125
2008 2011 9 Indianapolis Colts Atlanta Falcons Atlanta Falcons Indianapolis Colts 31 7 44.5 1 0.52 FALSE -0.0836363636363636 0 14.2222222222222 31.4444444444444 23.625 21.25
2011 2011 9 San Diego Chargers Green Bay Packers Green Bay Packers San Diego Chargers 45 38 50.5 1 0.76 TRUE 0.450909090909091 0 24.875 25.5 34.375 22.375
2014 2011 9 Tennessee Titans Cincinnati Bengals Cincinnati Bengals Tennessee Titans 24 17 41.5 1 0.52 FALSE -0.0836363636363636 0 19.5 21.125 24.375 17.5
2017 2011 9 Pittsburgh Steelers Baltimore Ravens Baltimore Ravens Pittsburgh Steelers 23 20 41.5 0 0.56 FALSE -0.16 1 21.7777777777778 18 26 16.25
2020 2011 9 New Orleans Saints Tampa Bay Buccaneers New Orleans Saints Tampa Bay Buccaneers 27 16 51 1 0.6 FALSE -0.236363636363636 0 31.8888888888889 22.7777777777778 18.375 24.5
2023 2011 9 Philadelphia Eagles Chicago Bears Chicago Bears Philadelphia Eagles 30 24 47.5 1 0.61 TRUE 0.164545454545455 1 25.375 22.75 25 21.75
2026 2011 10 San Diego Chargers Oakland Raiders Oakland Raiders San Diego Chargers 24 17 48 1 0.71 FALSE -0.446363636363636 1 24 25.3333333333333 23.1111111111111 25.8888888888889
2029 2011 10 Miami Dolphins Washington Redskins Miami Dolphins Washington Redskins 20 9 38 0 0.54 TRUE 0.030909090909091 0 17.5555555555556 19.7777777777778 15.1111111111111 19.7777777777778
2032 2011 10 Kansas City Chiefs Denver Broncos Denver Broncos Kansas City Chiefs 17 10 42 1 0.67 FALSE -0.37 0 15.6666666666667 24.2222222222222 20.8888888888889 26
2035 2011 10 New York Jets New England Patriots New England Patriots New York Jets 37 16 47 1 0.59 TRUE 0.126363636363636 1 23.8888888888889 22.2222222222222 28.7777777777778 22.2222222222222
2038 2011 10 Atlanta Falcons New Orleans Saints New Orleans Saints Atlanta Falcons 26 23 50 1 0.73 FALSE -0.484545454545455 0 23.5555555555556 21.7777777777778 31.3 22.8
2041 2011 10 Dallas Cowboys Buffalo Bills Dallas Cowboys Buffalo Bills 44 7 48.5 1 0.64 TRUE 0.221818181818182 0 24.7777777777778 20.2222222222222 25.4444444444444 24.2222222222222
2044 2011 10 Philadelphia Eagles Arizona Cardinals Arizona Cardinals Philadelphia Eagles 21 17 47 1 0.67 FALSE -0.37 0 24.4444444444444 22.5555555555556 20.3333333333333 23.6666666666667
2047 2011 10 Cleveland Browns St. Louis Rams St. Louis Rams Cleveland Browns 13 12 36.5 0 0.59 TRUE 0.126363636363636 0 14.5555555555556 20.3333333333333 12.5555555555556 24.7777777777778
2050 2011 10 San Francisco 49ers New York Giants San Francisco 49ers New York Giants 27 20 43 1 0.55 TRUE 0.05 0 25.8888888888889 15.3333333333333 24.2222222222222 23.4444444444444
2053 2011 10 Chicago Bears Detroit Lions Chicago Bears Detroit Lions 37 13 42.5 1 0.67 TRUE 0.279090909090909 0 26.3333333333333 20.7777777777778 28 20.4444444444444
2056 2011 10 Seattle Seahawks Baltimore Ravens Seattle Seahawks Baltimore Ravens 22 17 38.5 0 0.54 FALSE -0.121818181818182 0 16 22.4444444444444 25 16.8888888888889
2059 2011 10 Carolina Panthers Tennessee Titans Tennessee Titans Carolina Panthers 30 3 47.5 1 0.57 FALSE -0.179090909090909 0 21.1111111111111 26.3333333333333 20.6666666666667 19.1111111111111
2062 2011 10 Cincinnati Bengals Pittsburgh Steelers Pittsburgh Steelers Cincinnati Bengals 24 17 40 1 0.56 TRUE 0.0690909090909093 0 23.5555555555556 18.2222222222222 22 17.9
2065 2011 10 Tampa Bay Buccaneers Houston Texans Houston Texans Tampa Bay Buccaneers 37 9 45.5 1 0.57 TRUE 0.0881818181818181 0 17.3333333333333 25.8888888888889 27.3 16.6
2068 2011 10 Indianapolis Colts Jacksonville Jaguars Jacksonville Jaguars Indianapolis Colts 17 3 37.5 0 0.54 TRUE 0.030909090909091 0 13.1 30 12.7777777777778 18.4444444444444
2071 2011 10 Green Bay Packers Minnesota Vikings Green Bay Packers Minnesota Vikings 45 7 50 1 0.77 TRUE 0.47 1 35.5555555555556 20.6666666666667 19.8888888888889 27.1111111111111
2074 2011 11 Denver Broncos New York Jets Denver Broncos New York Jets 17 13 39 0 0.52 TRUE -0.00727272727272721 1 20.5 24.7 22.8 21.7
2077 2011 11 Miami Dolphins Buffalo Bills Miami Dolphins Buffalo Bills 35 8 44 1 0.5 FALSE -0.0454545454545454 0 19.3 18.6 23.7 25.3
2080 2011 11 Minnesota Vikings Oakland Raiders Oakland Raiders Minnesota Vikings 27 21 46 1 0.56 TRUE 0.0690909090909093 0 20 27.1 23.5 25.4
2083 2011 11 St. Louis Rams Seattle Seahawks Seattle Seahawks St. Louis Rams 24 7 40.5 0 0.54 TRUE 0.030909090909091 0 12 24.7 16.8 20.9
2086 2011 11 Washington Redskins Dallas Cowboys Dallas Cowboys Washington Redskins 27 24 42.5 1 0.59 TRUE 0.126363636363636 0 16 20.5 25 20.6
2089 2011 11 San Francisco 49ers Arizona Cardinals San Francisco 49ers Arizona Cardinals 23 7 40.5 1 0.56 FALSE -0.16 0 25.6 14.5 19 23.6
2092 2011 11 Detroit Lions Carolina Panthers Detroit Lions Carolina Panthers 49 35 47.5 1 0.68 TRUE 0.298181818181818 0 30.1 21.9 22.5 28.6
2095 2011 11 Chicago Bears San Diego Chargers Chicago Bears San Diego Chargers 31 20 45 1 0.68 TRUE 0.298181818181818 0 26.8 20.7 23.6 25.9
2098 2011 11 Atlanta Falcons Tennessee Titans Atlanta Falcons Tennessee Titans 23 17 44 1 0.64 FALSE -0.312727272727273 0 23.5 21.3 20.3 19.5
2101 2011 11 Baltimore Ravens Cincinnati Bengals Baltimore Ravens Cincinnati Bengals 31 24 40.5 0 0.51 FALSE -0.0645454545454546 0 25.6 17.6 23.6 19.5
2104 2011 11 Green Bay Packers Tampa Bay Buccaneers Green Bay Packers Tampa Bay Buccaneers 35 26 48.5 1 0.71 TRUE 0.355454545454545 0 35.5 21.2 18.2 26.8
2107 2011 11 New York Giants Philadelphia Eagles Philadelphia Eagles New York Giants 17 10 45 1 0.6 FALSE -0.236363636363636 1 22.8 22.8 23.7 21.3
2110 2011 11 Cleveland Browns Jacksonville Jaguars Cleveland Browns Jacksonville Jaguars 14 10 34.5 0 0.6 TRUE 0.145454545454546 0 14.5 19.3 12.5 18
2113 2011 11 New England Patriots Kansas City Chiefs New England Patriots Kansas City Chiefs 34 3 46.5 1 0.74 FALSE -0.503636363636364 1 29.3 20.3 14.4 25.2
2116 2011 12 Detroit Lions Green Bay Packers Green Bay Packers Detroit Lions 27 15 55 1 0.77 FALSE -0.560909090909091 1 28.7272727272727 22.3636363636364 34.7272727272727 20.6363636363636
2119 2011 12 Dallas Cowboys Miami Dolphins Dallas Cowboys Miami Dolphins 20 19 45.5 1 0.65 FALSE -0.331818181818182 1 24.5454545454545 20.4545454545455 19.2727272727273 18.7272727272727
2122 2011 12 Baltimore Ravens San Francisco 49ers Baltimore Ravens San Francisco 49ers 16 6 40.5 0 0.55 TRUE 0.05 1 24.7272727272727 16.5454545454545 23.8181818181818 14.6363636363636
2125 2011 12 Tennessee Titans Tampa Bay Buccaneers Tennessee Titans Tampa Bay Buccaneers 23 17 43.5 0 0.57 TRUE 0.0881818181818181 0 20.5454545454545 19.2727272727273 18.0909090909091 26.4545454545455
2128 2011 12 San Diego Chargers Denver Broncos Denver Broncos San Diego Chargers 16 13 42 1 0.59 FALSE -0.217272727272727 0 22.6363636363636 25 20.0909090909091 23.6363636363636
2131 2011 12 Jacksonville Jaguars Houston Texans Houston Texans Jacksonville Jaguars 20 13 37 0 0.5 TRUE -0.0454545454545454 0 12.5454545454545 18.1818181818182 26.6363636363636 16.2727272727273
2134 2011 12 Atlanta Falcons Minnesota Vikings Atlanta Falcons Minnesota Vikings 24 14 44 1 0.62 FALSE -0.274545454545455 0 23.5454545454545 20.6363636363636 19.4545454545455 26.8181818181818
2137 2011 12 Oakland Raiders Chicago Bears Oakland Raiders Chicago Bears 25 20 41 1 0.52 TRUE -0.00727272727272721 0 23.6363636363636 24.9090909090909 26.1818181818182 21.0909090909091
2140 2011 12 Seattle Seahawks Washington Redskins Washington Redskins Seattle Seahawks 23 17 37 0 0.56 FALSE -0.16 0 16.8181818181818 21.0909090909091 16.6363636363636 20.1818181818182
2143 2011 12 Philadelphia Eagles New England Patriots New England Patriots Philadelphia Eagles 38 20 50.5 1 0.61 TRUE 0.164545454545455 0 23.3636363636364 22.8181818181818 30.0909090909091 20.2727272727273
2146 2011 12 Kansas City Chiefs Pittsburgh Steelers Pittsburgh Steelers Kansas City Chiefs 13 9 42 1 0.56 FALSE -0.16 1 13.9090909090909 24.0909090909091 21.1818181818182 17.0909090909091
2149 2011 12 St. Louis Rams Arizona Cardinals Arizona Cardinals St. Louis Rams 23 20 40 0 0.52 FALSE -0.0836363636363636 0 12.7272727272727 24.5454545454545 19.3636363636364 23.2727272727273
2152 2011 12 New York Jets Buffalo Bills New York Jets Buffalo Bills 28 24 42.5 1 0.57 TRUE 0.0881818181818181 0 23.2727272727273 21.9090909090909 23.7272727272727 25.5454545454545
2155 2011 12 Indianapolis Colts Carolina Panthers Carolina Panthers Indianapolis Colts 27 19 46.5 0 0.55 TRUE 0.05 0 13.6363636363636 29.7272727272727 22.9090909090909 27.7272727272727
2158 2011 12 Cincinnati Bengals Cleveland Browns Cincinnati Bengals Cleveland Browns 23 20 38.5 0 0.54 FALSE -0.121818181818182 0 23.5454545454545 19.5454545454545 15 19.6363636363636
2161 2011 12 New Orleans Saints New York Giants New Orleans Saints New York Giants 49 24 51 1 0.7 TRUE 0.336363636363636 1 32.9090909090909 22.9090909090909 22.9090909090909 25.1818181818182
2164 2011 13 Seattle Seahawks Philadelphia Eagles Seattle Seahawks Philadelphia Eagles 31 14 43.5 1 0.51 TRUE -0.0263636363636363 1 18 20.5 22.5833333333333 23.5
2167 2011 13 Houston Texans Atlanta Falcons Houston Texans Atlanta Falcons 17 10 38 1 0.71 FALSE -0.446363636363636 0 25.8333333333333 15.75 22.4166666666667 20.3333333333333
2170 2011 13 Buffalo Bills Tennessee Titans Tennessee Titans Buffalo Bills 23 17 43.5 1 0.62 FALSE -0.274545454545455 0 23.1666666666667 25.3333333333333 20.75 19.0833333333333
2173 2011 13 Cleveland Browns Baltimore Ravens Baltimore Ravens Cleveland Browns 24 10 38.5 0 0.62 TRUE 0.183636363636364 0 14.5833333333333 20 24.6666666666667 16
2176 2011 13 San Francisco 49ers St. Louis Rams San Francisco 49ers St. Louis Rams 26 0 38.5 1 0.51 FALSE -0.0645454545454546 0 24 13.4166666666667 11.6666666666667 24.6666666666667
2179 2011 13 New Orleans Saints Detroit Lions New Orleans Saints Detroit Lions 31 17 55.5 1 0.8 FALSE -0.618181818181818 1 32.75 22.4166666666667 27.75 23.0833333333333
2182 2011 13 Arizona Cardinals Dallas Cowboys Arizona Cardinals Dallas Cowboys 19 13 47 1 0.6 FALSE -0.236363636363636 0 19.3333333333333 22.4166666666667 23.5833333333333 20.3333333333333
2185 2011 13 Pittsburgh Steelers Cincinnati Bengals Pittsburgh Steelers Cincinnati Bengals 35 7 42.5 1 0.55 FALSE -0.140909090909091 0 22.3333333333333 16.25 22.1666666666667 20.8333333333333
2188 2011 13 Washington Redskins New York Jets New York Jets Washington Redskins 34 19 38.5 1 0.51 TRUE -0.0263636363636363 0 16.8333333333333 21.3333333333333 24.1666666666667 21.6666666666667
2191 2011 13 Tampa Bay Buccaneers Carolina Panthers Carolina Panthers Tampa Bay Buccaneers 38 19 46.5 1 0.54 TRUE 0.030909090909091 0 18.1666666666667 27.4166666666667 24.1666666666667 27
2194 2011 13 Minnesota Vikings Denver Broncos Denver Broncos Minnesota Vikings 35 32 37.5 0 0.6 FALSE -0.236363636363636 0 20.5 27.5 21.3333333333333 24.3333333333333
2197 2011 13 Miami Dolphins Oakland Raiders Miami Dolphins Oakland Raiders 34 14 43 1 0.51 TRUE -0.0263636363636363 0 20.5 18.3333333333333 22.8333333333333 25.6666666666667
2200 2011 13 New York Giants Green Bay Packers Green Bay Packers New York Giants 38 35 54 1 0.74 TRUE 0.412727272727273 0 23.9166666666667 26.25 35 21.8333333333333
2203 2011 13 New England Patriots Indianapolis Colts New England Patriots Indianapolis Colts 31 24 48.5 1 0.65 TRUE 0.240909090909091 0 30.1666666666667 20.5833333333333 14.5 29.8333333333333
2206 2011 13 Chicago Bears Kansas City Chiefs Kansas City Chiefs Chicago Bears 10 3 35.5 0 0.55 TRUE 0.05 0 24.25 20.1666666666667 13.5833333333333 22.3333333333333
2209 2011 13 Jacksonville Jaguars San Diego Chargers San Diego Chargers Jacksonville Jaguars 38 14 40 1 0.58 TRUE 0.107272727272727 1 12.6666666666667 19.8333333333333 23.9166666666667 24.0833333333333
2212 2011 14 Pittsburgh Steelers Cleveland Browns Pittsburgh Steelers Cleveland Browns 14 3 40 1 0.59 FALSE -0.217272727272727 1 21.6923076923077 15.2307692307692 13.6923076923077 19.5384615384615
2215 2011 14 Dallas Cowboys New York Giants New York Giants Dallas Cowboys 37 34 49.5 1 0.61 TRUE 0.164545454545455 1 24.3846153846154 21.6153846153846 24.9230769230769 26.8461538461538
2218 2011 14 Denver Broncos Chicago Bears Denver Broncos Chicago Bears 13 10 35.5 0 0.63 TRUE 0.202727272727273 0 20.6923076923077 23.2307692307692 23.1538461538462 19.6153846153846
2221 2011 14 Jacksonville Jaguars Tampa Bay Buccaneers Jacksonville Jaguars Tampa Bay Buccaneers 41 14 42 0 0.74 FALSE -0.503636363636364 0 14.8461538461538 19.3846153846154 17.8461538461538 28.4615384615385
2224 2011 14 Arizona Cardinals San Francisco 49ers Arizona Cardinals San Francisco 49ers 21 19 39.5 0 0.56 FALSE -0.16 0 19.4615384615385 22.1538461538462 23.6153846153846 14
2227 2011 14 Green Bay Packers Oakland Raiders Green Bay Packers Oakland Raiders 46 16 50 1 0.69 TRUE 0.317272727272727 0 35.8461538461538 21.3846153846154 22.3076923076923 27.2307692307692
2230 2011 14 Cincinnati Bengals Houston Texans Houston Texans Cincinnati Bengals 20 19 37.5 1 0.54 TRUE 0.030909090909091 0 21.9230769230769 20.7692307692308 25.3846153846154 16
2233 2011 14 Baltimore Ravens Indianapolis Colts Baltimore Ravens Indianapolis Colts 24 10 41.5 0 0.52 TRUE -0.00727272727272721 0 24.6153846153846 15.5384615384615 14.1538461538462 29.3846153846154
2236 2011 14 Tennessee Titans New Orleans Saints New Orleans Saints Tennessee Titans 22 17 48 1 0.59 FALSE -0.217272727272727 0 20.4615384615385 19.3076923076923 31.9230769230769 22
2239 2011 14 Carolina Panthers Atlanta Falcons Atlanta Falcons Carolina Panthers 31 23 47.5 1 0.7 TRUE 0.336363636363636 0 24.0769230769231 27.3076923076923 23.0769230769231 20.5384615384615
2242 2011 14 Detroit Lions Minnesota Vikings Detroit Lions Minnesota Vikings 34 28 47 1 0.71 TRUE 0.355454545454545 0 28.2307692307692 23.4615384615385 21.0769230769231 28
2245 2011 14 New York Jets Kansas City Chiefs New York Jets Kansas City Chiefs 37 10 35.5 1 0.52 TRUE -0.00727272727272721 0 25.1538461538462 20.7692307692308 13.3076923076923 23.4615384615385
2248 2011 14 Miami Dolphins Philadelphia Eagles Philadelphia Eagles Miami Dolphins 26 10 44.5 0 0.52 TRUE -0.00727272727272721 0 19.6923076923077 18.9230769230769 22.8461538461538 22.4615384615385
2251 2011 14 Washington Redskins New England Patriots New England Patriots Washington Redskins 34 27 46.5 1 0.67 TRUE 0.279090909090909 0 17.6153846153846 22.3076923076923 30.4615384615385 21.0769230769231
2254 2011 14 San Diego Chargers Buffalo Bills San Diego Chargers Buffalo Bills 37 10 49.5 1 0.67 FALSE -0.37 0 24.9230769230769 23 22.1538461538462 26.2307692307692
2257 2011 14 Seattle Seahawks St. Louis Rams Seattle Seahawks St. Louis Rams 30 13 38 1 0.63 TRUE 0.202727272727273 1 18.9230769230769 19.9230769230769 11.7692307692308 25.0769230769231
2260 2011 15 Atlanta Falcons Jacksonville Jaguars Atlanta Falcons Jacksonville Jaguars 41 14 41.5 1 0.61 TRUE 0.164545454545455 1 24.3571428571429 20.0714285714286 14.7857142857143 20.9285714285714
2263 2011 15 Tampa Bay Buccaneers Dallas Cowboys Dallas Cowboys Tampa Bay Buccaneers 31 15 47 1 0.57 FALSE -0.179090909090909 1 17.6428571428571 28.6428571428571 24.8571428571429 21.1428571428571
2266 2011 15 St. Louis Rams Cincinnati Bengals Cincinnati Bengals St. Louis Rams 20 13 39 0 0.5 TRUE -0.0454545454545454 0 11.8571428571429 24.7142857142857 21.7857142857143 20.2142857142857
2269 2011 15 San Diego Chargers Baltimore Ravens San Diego Chargers Baltimore Ravens 34 14 45 1 0.6 TRUE 0.145454545454546 1 25.5714285714286 22.3571428571429 23.8571428571429 16.8571428571429
2272 2011 15 Buffalo Bills Miami Dolphins Miami Dolphins Buffalo Bills 30 23 42.5 1 0.55 TRUE 0.05 0 22.2142857142857 26.5 20.4285714285714 19.2142857142857
2275 2011 15 Minnesota Vikings New Orleans Saints New Orleans Saints Minnesota Vikings 42 20 53.5 1 0.67 TRUE 0.279090909090909 0 21 29 32.6428571428571 21.8571428571429
2278 2011 15 Houston Texans Carolina Panthers Carolina Panthers Houston Texans 28 13 45 1 0.67 FALSE -0.37 0 24.5 16.8571428571429 24.3571428571429 26.2857142857143
2281 2011 15 New York Giants Washington Redskins Washington Redskins New York Giants 23 10 45.5 1 0.61 FALSE -0.255454545454545 0 23.8571428571429 26.5714285714286 18 21.4285714285714
2284 2011 15 Denver Broncos New England Patriots New England Patriots Denver Broncos 41 23 47.5 1 0.62 TRUE 0.183636363636364 0 20.8571428571429 24.5 31.2142857142857 21.2142857142857
2287 2011 15 Arizona Cardinals Cleveland Browns Arizona Cardinals Cleveland Browns 20 17 37 0 0.57 TRUE 0.0881818181818181 0 19.5 21.7857142857143 13.9285714285714 19.5714285714286
2290 2011 15 Indianapolis Colts Tennessee Titans Indianapolis Colts Tennessee Titans 27 13 41.5 0 0.54 TRUE 0.030909090909091 0 15.0714285714286 28.2142857142857 19.9285714285714 19.8571428571429
2293 2011 15 Philadelphia Eagles New York Jets Philadelphia Eagles New York Jets 45 19 44 1 0.66 TRUE 0.26 0 24.4285714285714 22.2142857142857 24.7142857142857 22.5
2296 2011 15 Chicago Bears Seattle Seahawks Seattle Seahawks Chicago Bears 38 14 35 0 0.59 FALSE -0.217272727272727 0 22.5 20.9285714285714 20.2857142857143 19.5
2299 2011 15 Kansas City Chiefs Green Bay Packers Kansas City Chiefs Green Bay Packers 19 14 46 1 0.8 FALSE -0.618181818181818 0 13.7142857142857 22.7857142857143 34.2857142857143 21.2142857142857
2302 2011 15 Oakland Raiders Detroit Lions Detroit Lions Oakland Raiders 28 27 47.5 1 0.66 TRUE 0.26 0 22.6428571428571 27.2857142857143 28.2142857142857 23.7142857142857
2305 2011 15 San Francisco 49ers Pittsburgh Steelers San Francisco 49ers Pittsburgh Steelers 20 3 37 0 0.53 TRUE 0.0118181818181819 1 23.3571428571429 13.2142857142857 20.3571428571429 15.5714285714286
2308 2011 16 Indianapolis Colts Houston Texans Indianapolis Colts Houston Texans 19 16 40.5 1 0.61 FALSE -0.255454545454545 1 15.3333333333333 27.4 23.9333333333333 17
2311 2011 16 Kansas City Chiefs Oakland Raiders Oakland Raiders Kansas City Chiefs 16 13 43 0 0.53 TRUE 0.0118181818181819 1 13.6666666666667 22.3333333333333 22.2 26.3333333333333
2314 2011 16 Tennessee Titans Jacksonville Jaguars Tennessee Titans Jacksonville Jaguars 23 17 38.5 0 0.61 FALSE -0.255454545454545 1 20.1333333333333 19.6666666666667 14.9333333333333 21.0666666666667
2317 2011 16 Cincinnati Bengals Arizona Cardinals Cincinnati Bengals Arizona Cardinals 23 16 41 1 0.54 FALSE -0.121818181818182 1 21.8666666666667 19.9333333333333 19.2666666666667 21.8666666666667
2320 2011 16 Pittsburgh Steelers St. Louis Rams Pittsburgh Steelers St. Louis Rams 27 0 33.5 0 0.54 TRUE 0.030909090909091 1 20.8 14.5333333333333 11.0666666666667 24.8666666666667
2323 2011 16 Buffalo Bills Denver Broncos Buffalo Bills Denver Broncos 40 14 43.5 0 0.55 FALSE -0.140909090909091 1 23.4 25.6666666666667 20.4 25.5333333333333
2326 2011 16 New England Patriots Miami Dolphins New England Patriots Miami Dolphins 27 24 49 1 0.73 TRUE 0.393636363636364 1 30.9333333333333 21.4 20.6666666666667 19.7333333333333
2329 2011 16 Baltimore Ravens Cleveland Browns Baltimore Ravens Cleveland Browns 20 14 38.5 0 0.63 TRUE 0.202727272727273 1 23.6 16.6666666666667 13.9333333333333 19.6
2332 2011 16 Seattle Seahawks San Francisco 49ers San Francisco 49ers Seattle Seahawks 19 17 37 0 0.57 TRUE 0.0881818181818181 1 20.0666666666667 19.4666666666667 23.0666666666667 13.4666666666667
2335 2011 16 New York Jets New York Giants New York Giants New York Jets 29 14 46 1 0.6 FALSE -0.236363636363636 1 24 22.9333333333333 24.2 25.7333333333333
2338 2011 16 Detroit Lions San Diego Chargers Detroit Lions San Diego Chargers 38 10 52.5 1 0.78 FALSE -0.58 1 28.8666666666667 22.8 24.5333333333333 23.4
2341 2011 16 Washington Redskins Minnesota Vikings Minnesota Vikings Washington Redskins 33 26 43 1 0.6 TRUE 0.145454545454546 1 18.5333333333333 22.2 21.8 28.8
2344 2011 16 Carolina Panthers Tampa Bay Buccaneers Carolina Panthers Tampa Bay Buccaneers 48 16 48.5 1 0.65 TRUE 0.240909090909091 1 25.9333333333333 25.6 17.5333333333333 29.9333333333333
2347 2011 16 Dallas Cowboys Philadelphia Eagles Philadelphia Eagles Dallas Cowboys 20 7 49.5 1 0.71 FALSE -0.446363636363636 1 23.6666666666667 21.0666666666667 24.1333333333333 21.2
2350 2011 16 Green Bay Packers Chicago Bears Green Bay Packers Chicago Bears 35 21 41 1 0.71 TRUE 0.355454545454545 1 34.3333333333333 21.2 22.4 21.8666666666667
2353 2011 16 New Orleans Saints Atlanta Falcons New Orleans Saints Atlanta Falcons 45 16 53 1 0.77 TRUE 0.47 1 33.4666666666667 21.4666666666667 23.8 21.7333333333333
2356 2011 17 Cincinnati Bengals Baltimore Ravens Baltimore Ravens Cincinnati Bengals 24 16 37.5 0 0.51 FALSE -0.0645454545454546 0 21.5 20.1875 23.625 16.625
2359 2011 17 Atlanta Falcons Tampa Bay Buccaneers Atlanta Falcons Tampa Bay Buccaneers 45 24 45.5 1 0.58 TRUE 0.107272727272727 0 25.125 21.875 17.9375 30.875
2362 2011 17 Arizona Cardinals Seattle Seahawks Arizona Cardinals Seattle Seahawks 23 20 40.5 1 0.6 TRUE 0.145454545454546 0 19.5 21.75 20.0625 19.6875
2365 2011 17 Cleveland Browns Pittsburgh Steelers Pittsburgh Steelers Cleveland Browns 13 9 33 1 0.53 FALSE -0.102727272727273 0 13.625 19.1875 20.3125 14.1875
2368 2011 17 Green Bay Packers Detroit Lions Green Bay Packers Detroit Lions 45 41 41.5 1 0.72 TRUE 0.374545454545455 0 35 22.4375 29.625 24.1875
2371 2011 17 New York Giants Dallas Cowboys New York Giants Dallas Cowboys 31 14 48 1 0.71 FALSE -0.446363636363636 0 24.625 25 23.0625 21.6875
2374 2011 17 New Orleans Saints Carolina Panthers New Orleans Saints Carolina Panthers 45 17 55 1 0.78 TRUE 0.489090909090909 0 34.1875 21.1875 25.375 26.8125
2377 2011 17 Philadelphia Eagles Washington Redskins Philadelphia Eagles Washington Redskins 34 10 44.5 1 0.62 FALSE -0.274545454545455 0 24.75 20.5 18 22.9375
2380 2011 17 Miami Dolphins New York Jets Miami Dolphins New York Jets 19 17 39 1 0.6 FALSE -0.236363636363636 0 20.5625 19.5625 23.5625 22.6875
2383 2011 17 Minnesota Vikings Chicago Bears Chicago Bears Minnesota Vikings 17 13 42 1 0.5 FALSE -0.0454545454545454 0 21.25 28.0625 22.0625 21.3125
2386 2011 17 St. Louis Rams San Francisco 49ers San Francisco 49ers St. Louis Rams 34 27 34.5 0 0.52 FALSE -0.0836363636363636 0 12.0625 25.4375 23.75 14.3125
2389 2011 17 New England Patriots Buffalo Bills New England Patriots Buffalo Bills 49 21 50 1 0.7 TRUE 0.336363636363636 0 32.0625 21.375 23.25 27.125
2392 2011 17 Denver Broncos Kansas City Chiefs Kansas City Chiefs Denver Broncos 7 3 37.5 0 0.54 TRUE 0.030909090909091 0 19.3125 24.375 13.25 21.125
2395 2011 17 Houston Texans Tennessee Titans Tennessee Titans Houston Texans 23 22 38.5 0 0.57 FALSE -0.179090909090909 0 23.8125 17.375 20.3125 19.8125
2398 2011 17 Oakland Raiders San Diego Chargers San Diego Chargers Oakland Raiders 38 26 50 1 0.57 TRUE 0.0881818181818181 0 22.4375 27.0625 25.375 23.5625
2401 2011 17 Jacksonville Jaguars Indianapolis Colts Jacksonville Jaguars Indianapolis Colts 19 13 36.5 0 0.52 TRUE -0.00727272727272721 0 15.1875 20.5625 15.1875 26.875
2404 2012 1 New York Giants Dallas Cowboys Dallas Cowboys New York Giants 24 17 45.5 1 0.52 FALSE -0.0836363636363636 1 17 24 24 17
2407 2012 1 Cleveland Browns Philadelphia Eagles Philadelphia Eagles Cleveland Browns 17 16 42.5 1 0.51 FALSE -0.0645454545454546 0 16 17 17 16
2410 2012 1 Tennessee Titans New England Patriots New England Patriots Tennessee Titans 34 13 48 1 0.64 FALSE -0.312727272727273 0 13 34 34 13
2413 2012 1 Denver Broncos Pittsburgh Steelers Denver Broncos Pittsburgh Steelers 31 19 45.5 1 0.5 TRUE -0.0454545454545454 1 31 19 19 31
2416 2012 1 Green Bay Packers San Francisco 49ers San Francisco 49ers Green Bay Packers 30 22 46.5 1 0.56 TRUE 0.0690909090909093 0 22 30 30 22
2419 2012 1 Arizona Cardinals Seattle Seahawks Arizona Cardinals Seattle Seahawks 20 16 41 0 0.5 TRUE -0.0454545454545454 0 20 16 16 20
2422 2012 1 New Orleans Saints Washington Redskins Washington Redskins New Orleans Saints 40 32 50 1 0.61 TRUE 0.164545454545455 0 32 40 40 32
2425 2012 1 Chicago Bears Indianapolis Colts Chicago Bears Indianapolis Colts 41 21 42.5 1 0.53 TRUE 0.0118181818181819 0 41 21 21 41
2428 2012 1 Kansas City Chiefs Atlanta Falcons Atlanta Falcons Kansas City Chiefs 40 24 43 1 0.54 TRUE 0.030909090909091 0 24 40 40 24
2431 2012 1 Houston Texans Miami Dolphins Houston Texans Miami Dolphins 30 10 41.5 1 0.58 FALSE -0.198181818181818 0 30 10 10 30
2434 2012 1 Detroit Lions St. Louis Rams Detroit Lions St. Louis Rams 27 23 46.5 1 0.69 TRUE 0.317272727272727 0 27 23 23 27
2437 2012 1 Tampa Bay Buccaneers Carolina Panthers Tampa Bay Buccaneers Carolina Panthers 16 10 45.5 1 0.52 FALSE -0.0836363636363636 0 16 10 10 16
2440 2012 1 Minnesota Vikings Jacksonville Jaguars Minnesota Vikings Jacksonville Jaguars 26 23 38 0 0.57 FALSE -0.179090909090909 0 26 23 23 26
2443 2012 1 New York Jets Buffalo Bills New York Jets Buffalo Bills 48 28 39 0 0.6 FALSE -0.236363636363636 0 48 28 28 48
2446 2012 1 Baltimore Ravens Cincinnati Bengals Baltimore Ravens Cincinnati Bengals 44 13 43 1 0.51 TRUE -0.0263636363636363 1 44 13 13 44
2449 2012 1 Oakland Raiders San Diego Chargers San Diego Chargers Oakland Raiders 22 14 47.5 1 0.57 FALSE -0.179090909090909 1 14 22 22 14
2452 2012 2 Green Bay Packers Chicago Bears Green Bay Packers Chicago Bears 23 10 50.5 1 0.66 FALSE -0.350909090909091 1 22.5 20 25.5 22
2455 2012 2 New York Giants Tampa Bay Buccaneers New York Giants Tampa Bay Buccaneers 41 34 43.5 0 0.51 FALSE -0.0645454545454546 0 29 29 25 25.5
2458 2012 2 Miami Dolphins Oakland Raiders Miami Dolphins Oakland Raiders 35 13 41 0 0.54 FALSE -0.121818181818182 0 22.5 21.5 13.5 28.5
2461 2012 2 Carolina Panthers New Orleans Saints Carolina Panthers New Orleans Saints 35 27 53.5 1 0.72 TRUE 0.374545454545455 0 22.5 21.5 29.5 37.5
2464 2012 2 Seattle Seahawks Dallas Cowboys Seattle Seahawks Dallas Cowboys 27 7 42.5 1 0.64 FALSE -0.312727272727273 0 21.5 13.5 15.5 22
2467 2012 2 Buffalo Bills Kansas City Chiefs Buffalo Bills Kansas City Chiefs 35 17 45 1 0.55 TRUE 0.05 0 31.5 32.5 20.5 37.5
2470 2012 2 Cincinnati Bengals Cleveland Browns Cincinnati Bengals Cleveland Browns 34 27 39.5 0 0.54 FALSE -0.121818181818182 0 23.5 35.5 21.5 25.5
2473 2012 2 New England Patriots Arizona Cardinals Arizona Cardinals New England Patriots 20 18 47 1 0.66 FALSE -0.350909090909091 0 26 16.5 20 17
2476 2012 2 Jacksonville Jaguars Houston Texans Houston Texans Jacksonville Jaguars 27 7 40 1 0.68 FALSE -0.389090909090909 0 15 26.5 28.5 8.5
2479 2012 2 Philadelphia Eagles Baltimore Ravens Philadelphia Eagles Baltimore Ravens 24 23 47 0 0.54 TRUE 0.030909090909091 0 20.5 19.5 33.5 18.5
2482 2012 2 Indianapolis Colts Minnesota Vikings Indianapolis Colts Minnesota Vikings 23 20 45.5 1 0.5 FALSE -0.0454545454545454 0 22 30.5 23 23
2485 2012 2 Pittsburgh Steelers New York Jets Pittsburgh Steelers New York Jets 27 10 43 1 0.51 FALSE -0.0645454545454546 0 23 20.5 29 27.5
2488 2012 2 St. Louis Rams Washington Redskins St. Louis Rams Washington Redskins 31 28 42.5 1 0.67 TRUE 0.279090909090909 0 27 27.5 34 31.5
2491 2012 2 San Diego Chargers Tennessee Titans San Diego Chargers Tennessee Titans 38 10 43.5 1 0.62 TRUE 0.183636363636364 0 30 12 11.5 36
2494 2012 2 San Francisco 49ers Detroit Lions San Francisco 49ers Detroit Lions 27 19 46 1 0.58 FALSE -0.198181818181818 1 28.5 20.5 23 25
2497 2012 2 Atlanta Falcons Denver Broncos Atlanta Falcons Denver Broncos 27 21 50.5 1 0.68 FALSE -0.389090909090909 1 33.5 22.5 26 23
2500 2012 3 Carolina Panthers New York Giants New York Giants Carolina Panthers 36 7 48.5 1 0.63 FALSE -0.293636363636364 1 17.3333333333333 26.3333333333333 31.3333333333333 21.6666666666667
2503 2012 3 Oakland Raiders Pittsburgh Steelers Oakland Raiders Pittsburgh Steelers 34 31 45 0 0.64 FALSE -0.312727272727273 0 20.3333333333333 29.3333333333333 25.6666666666667 25
2506 2012 3 Chicago Bears St. Louis Rams Chicago Bears St. Louis Rams 23 6 42 1 0.61 FALSE -0.255454545454545 0 24.6666666666667 16.6666666666667 20 26
2509 2012 3 Indianapolis Colts Jacksonville Jaguars Jacksonville Jaguars Indianapolis Colts 22 17 43 1 0.51 FALSE -0.0645454545454546 0 20.3333333333333 27.6666666666667 17.3333333333333 23.3333333333333
2512 2012 3 Tennessee Titans Detroit Lions Tennessee Titans Detroit Lions 44 41 47 1 0.55 TRUE 0.05 0 22.3333333333333 37.6666666666667 29 31.3333333333333
2515 2012 3 Minnesota Vikings San Francisco 49ers Minnesota Vikings San Francisco 49ers 24 13 42.5 0 0.55 TRUE 0.05 0 23.3333333333333 19.6666666666667 23.3333333333333 21.6666666666667
2518 2012 3 San Diego Chargers Atlanta Falcons Atlanta Falcons San Diego Chargers 27 3 47 1 0.7 FALSE -0.427272727272727 0 21 17 31.3333333333333 16
2521 2012 3 Baltimore Ravens New England Patriots Baltimore Ravens New England Patriots 31 30 48.5 0 0.55 FALSE -0.140909090909091 1 32.6666666666667 22.3333333333333 27.3333333333333 21.3333333333333
2524 2012 3 Miami Dolphins New York Jets New York Jets Miami Dolphins 23 20 40.5 1 0.53 TRUE 0.0118181818181819 0 21.6666666666667 22 27 25
2527 2012 3 Arizona Cardinals Philadelphia Eagles Arizona Cardinals Philadelphia Eagles 27 6 42 1 0.6 FALSE -0.236363636363636 0 22.3333333333333 13.3333333333333 15.6666666666667 22
2530 2012 3 Washington Redskins Cincinnati Bengals Cincinnati Bengals Washington Redskins 38 31 49.5 1 0.6 TRUE 0.145454545454546 0 33 33.6666666666667 28.3333333333333 34
2533 2012 3 Denver Broncos Houston Texans Houston Texans Denver Broncos 31 25 43.5 1 0.66 TRUE 0.26 0 25.6666666666667 25.6666666666667 29.3333333333333 14
2536 2012 3 Dallas Cowboys Tampa Bay Buccaneers Dallas Cowboys Tampa Bay Buccaneers 16 10 45.5 1 0.57 FALSE -0.179090909090909 0 15.6666666666667 18 20 22.3333333333333
2539 2012 3 New Orleans Saints Kansas City Chiefs Kansas City Chiefs New Orleans Saints 27 24 51.5 1 0.59 FALSE -0.217272727272727 0 27.6666666666667 34 22.6666666666667 33
2542 2012 3 Cleveland Browns Buffalo Bills Buffalo Bills Cleveland Browns 24 14 45 0 0.51 TRUE -0.0263636363636363 0 19 25 29 26.3333333333333
2545 2012 3 Seattle Seahawks Green Bay Packers Seattle Seahawks Green Bay Packers 14 12 45.5 1 0.64 FALSE -0.312727272727273 1 19 13 19 18
2548 2012 4 Baltimore Ravens Cleveland Browns Baltimore Ravens Cleveland Browns 23 16 43.5 0 0.54 TRUE 0.030909090909091 1 30.25 20.75 18.25 24.5
2551 2012 4 St. Louis Rams Seattle Seahawks St. Louis Rams Seattle Seahawks 19 13 39 0 0.52 TRUE -0.00727272727272721 0 19.75 22.75 17.5 14.5
2554 2012 4 Jacksonville Jaguars Cincinnati Bengals Cincinnati Bengals Jacksonville Jaguars 27 10 45.5 1 0.57 FALSE -0.179090909090909 0 15.5 24.25 28 28
2557 2012 4 Detroit Lions Minnesota Vikings Minnesota Vikings Detroit Lions 20 13 48.5 1 0.62 FALSE -0.274545454545455 0 25 28.5 22.5 18
2560 2012 4 Houston Texans Tennessee Titans Houston Texans Tennessee Titans 38 14 44.5 1 0.64 TRUE 0.221818181818182 0 31.5 14 20.25 37.75
2563 2012 4 Tampa Bay Buccaneers Washington Redskins Washington Redskins Tampa Bay Buccaneers 24 22 44.5 1 0.59 TRUE 0.126363636363636 0 20.5 22.75 30.75 30.75
2566 2012 4 Kansas City Chiefs San Diego Chargers San Diego Chargers Kansas City Chiefs 37 20 43.5 1 0.58 TRUE 0.107272727272727 0 22 34 25 17.75
2569 2012 4 New York Jets San Francisco 49ers San Francisco 49ers New York Jets 34 0 41 0 0.51 TRUE -0.0263636363636363 0 20.25 27.25 26 16.25
2572 2012 4 Arizona Cardinals Miami Dolphins Arizona Cardinals Miami Dolphins 24 21 39.5 0 0.53 FALSE -0.102727272727273 0 22.75 15.25 21.5 22.5
2575 2012 4 Philadelphia Eagles New York Giants Philadelphia Eagles New York Giants 19 17 46.5 1 0.64 FALSE -0.312727272727273 1 16.5 20.75 27.75 21
2578 2012 4 Atlanta Falcons Carolina Panthers Atlanta Falcons Carolina Panthers 30 28 48 1 0.65 TRUE 0.240909090909091 0 31 19 20 27.25
2581 2012 4 Green Bay Packers New Orleans Saints Green Bay Packers New Orleans Saints 28 27 54 1 0.73 TRUE 0.393636363636364 0 21.25 20.25 27.5 32.5
2584 2012 4 Denver Broncos Oakland Raiders Denver Broncos Oakland Raiders 37 6 47 1 0.59 FALSE -0.217272727272727 0 28.5 20.75 16.75 31.25
2587 2012 4 Buffalo Bills New England Patriots New England Patriots Buffalo Bills 52 28 48.5 1 0.66 TRUE 0.26 0 28.75 32.75 33.5 23
2590 2012 4 Dallas Cowboys Chicago Bears Chicago Bears Dallas Cowboys 34 18 41 1 0.59 TRUE 0.126363636363636 1 16.25 22 27 17
2593 2012 5 St. Louis Rams Arizona Cardinals St. Louis Rams Arizona Cardinals 17 3 38 1 0.58 FALSE -0.198181818181818 1 19.2 18.8 18.8 15.6
2596 2012 5 Indianapolis Colts Green Bay Packers Indianapolis Colts Green Bay Packers 30 27 49 1 0.69 TRUE 0.317272727272727 0 22.75 27.5 22.4 22.2
2599 2012 5 Pittsburgh Steelers Philadelphia Eagles Pittsburgh Steelers Philadelphia Eagles 16 14 44 0 0.53 TRUE 0.0118181818181819 0 23.25 22.25 16 19.8
2602 2012 5 New Orleans Saints San Diego Chargers New Orleans Saints San Diego Chargers 31 24 53.5 1 0.77 TRUE 0.47 1 28.2 30.8 24.8 20.4
2605 2012 5 New England Patriots Denver Broncos New England Patriots Denver Broncos 31 21 51 1 0.79 TRUE 0.508181818181818 0 33 22.6 27 22.8
2608 2012 5 San Francisco 49ers Buffalo Bills San Francisco 49ers Buffalo Bills 45 3 45.5 1 0.5 TRUE -0.0454545454545454 0 29.8 13.6 23.6 35.2
2611 2012 5 Minnesota Vikings Tennessee Titans Minnesota Vikings Tennessee Titans 30 7 44 1 0.54 FALSE -0.121818181818182 0 24 15.8 17.6 36.2
2614 2012 5 Jacksonville Jaguars Chicago Bears Chicago Bears Jacksonville Jaguars 41 3 39 0 0.51 FALSE -0.0645454545454546 0 13 27.6 29.8 14.2
2617 2012 5 Washington Redskins Atlanta Falcons Atlanta Falcons Washington Redskins 24 17 51 1 0.72 FALSE -0.465454545454545 0 28 29.4 29.6 18.6
2620 2012 5 Cincinnati Bengals Miami Dolphins Miami Dolphins Cincinnati Bengals 17 13 45 1 0.5 FALSE -0.0454545454545454 0 25 25.8 20.6 20.6
2623 2012 5 Kansas City Chiefs Baltimore Ravens Baltimore Ravens Kansas City Chiefs 9 6 46.5 0 0.54 TRUE 0.030909090909091 0 18.8 29 26 17.8
2626 2012 5 New York Giants Cleveland Browns New York Giants Cleveland Browns 41 27 43.5 0 0.5 FALSE -0.0454545454545454 0 30.4 22.2 20 27.8
2629 2012 5 Carolina Panthers Seattle Seahawks Seattle Seahawks Carolina Panthers 16 12 42.5 1 0.51 FALSE -0.0645454545454546 0 18.4 25 17.2 14
2632 2012 5 New York Jets Houston Texans Houston Texans New York Jets 23 17 40.5 1 0.66 FALSE -0.350909090909091 1 19.6 26.4 29.8 14.6
2635 2012 6 Tennessee Titans Pittsburgh Steelers Tennessee Titans Pittsburgh Steelers 26 23 43 0 0.56 FALSE -0.16 1 19 34 23.2 23
2638 2012 6 Baltimore Ravens Dallas Cowboys Baltimore Ravens Dallas Cowboys 31 29 45.5 1 0.51 TRUE -0.0263636363636363 0 26.8333333333333 19.6666666666667 18.8 23.8
2641 2012 6 New York Jets Indianapolis Colts New York Jets Indianapolis Colts 35 9 44 1 0.56 FALSE -0.16 0 22.1666666666667 23.5 20 29
2644 2012 6 Philadelphia Eagles Detroit Lions Detroit Lions Philadelphia Eagles 26 23 47.5 1 0.64 TRUE 0.221818181818182 0 17.1666666666667 20.8333333333333 25.2 27.4
2647 2012 6 Houston Texans Green Bay Packers Green Bay Packers Houston Texans 42 24 47 1 0.76 TRUE 0.450909090909091 1 28.8333333333333 19.1666666666667 25.6666666666667 22.5
2650 2012 6 San Francisco 49ers New York Giants New York Giants San Francisco 49ers 26 3 47 1 0.52 FALSE -0.0836363636363636 0 25.3333333333333 15.6666666666667 29.6666666666667 19
2653 2012 6 Tampa Bay Buccaneers Kansas City Chiefs Tampa Bay Buccaneers Kansas City Chiefs 38 10 39.5 0 0.54 FALSE -0.121818181818182 0 24 20.2 17.3333333333333 30.5
2656 2012 6 Seattle Seahawks New England Patriots Seattle Seahawks New England Patriots 24 23 42.5 1 0.62 TRUE 0.183636363636364 0 18.3333333333333 15.5 31.3333333333333 22.8333333333333
2659 2012 6 Arizona Cardinals Buffalo Bills Buffalo Bills Arizona Cardinals 19 16 44.5 1 0.61 FALSE -0.255454545454545 0 18.3333333333333 16.1666666666667 22.8333333333333 32
2662 2012 6 Atlanta Falcons Oakland Raiders Atlanta Falcons Oakland Raiders 23 20 49 1 0.58 FALSE -0.198181818181818 0 28.5 18.8333333333333 17.4 29.6
2665 2012 6 Miami Dolphins St. Louis Rams Miami Dolphins St. Louis Rams 17 14 38.5 1 0.53 FALSE -0.102727272727273 0 20 19.5 18.3333333333333 18.5
2668 2012 6 Cleveland Browns Cincinnati Bengals Cleveland Browns Cincinnati Bengals 34 24 42 1 0.56 TRUE 0.0690909090909093 0 22.3333333333333 27.1666666666667 24.8333333333333 27.1666666666667
2671 2012 6 Washington Redskins Minnesota Vikings Washington Redskins Minnesota Vikings 38 26 44 1 0.65 TRUE 0.240909090909091 0 29.6666666666667 28.8333333333333 24.3333333333333 19.5
2674 2012 6 San Diego Chargers Denver Broncos Denver Broncos San Diego Chargers 35 24 48 1 0.72 TRUE 0.374545454545455 1 24.6666666666667 22.8333333333333 28.3333333333333 23
2677 2012 7 San Francisco 49ers Seattle Seahawks San Francisco 49ers Seattle Seahawks 13 6 37.5 1 0.54 FALSE -0.121818181818182 1 23.5714285714286 14.2857142857143 16.5714285714286 15.1428571428571
2680 2012 7 Carolina Panthers Dallas Cowboys Dallas Cowboys Carolina Panthers 19 14 45 1 0.65 FALSE -0.331818181818182 0 17.6666666666667 24 18.8333333333333 22.1666666666667
2683 2012 7 Oakland Raiders Jacksonville Jaguars Oakland Raiders Jacksonville Jaguars 26 23 44.5 0 0.56 FALSE -0.16 0 18.8333333333333 28.5 14.6666666666667 27.3333333333333
2686 2012 7 Tampa Bay Buccaneers New Orleans Saints New Orleans Saints Tampa Bay Buccaneers 35 28 49.5 1 0.66 TRUE 0.26 0 24.6666666666667 22.6666666666667 29.3333333333333 30.3333333333333
2689 2012 7 Houston Texans Baltimore Ravens Houston Texans Baltimore Ravens 43 13 47.5 0 0.52 FALSE -0.0836363636363636 0 30.8571428571429 18.2857142857143 24.8571428571429 23
2692 2012 7 New England Patriots New York Jets New England Patriots New York Jets 29 26 47.5 1 0.72 TRUE 0.374545454545455 0 31 23.2857142857143 22.7142857142857 24.2857142857143
2695 2012 7 Cincinnati Bengals Pittsburgh Steelers Pittsburgh Steelers Cincinnati Bengals 24 17 47 1 0.54 FALSE -0.121818181818182 1 23.7142857142857 26.7142857142857 23.3333333333333 22
2698 2012 7 St. Louis Rams Green Bay Packers Green Bay Packers St. Louis Rams 30 20 45.5 1 0.68 TRUE 0.298181818181818 0 18.5714285714286 20.1428571428571 26.2857142857143 22.1428571428571
2701 2012 7 Indianapolis Colts Cleveland Browns Indianapolis Colts Cleveland Browns 17 13 46.5 1 0.51 FALSE -0.0645454545454546 0 19.5 26.3333333333333 21 25.7142857142857
2704 2012 7 Buffalo Bills Tennessee Titans Tennessee Titans Buffalo Bills 35 34 46.5 1 0.6 TRUE 0.145454545454546 0 24.4285714285714 32.4285714285714 21.2857142857143 34
2707 2012 7 New York Giants Washington Redskins New York Giants Washington Redskins 27 23 51.5 1 0.63 FALSE -0.293636363636364 0 29.2857142857143 19.5714285714286 28.7142857142857 28.5714285714286
2710 2012 7 Minnesota Vikings Arizona Cardinals Minnesota Vikings Arizona Cardinals 21 14 39 0 0.52 TRUE -0.00727272727272721 0 23.8571428571429 18.7142857142857 17.7142857142857 16.8571428571429
2713 2012 7 Chicago Bears Detroit Lions Chicago Bears Detroit Lions 13 7 45.5 1 0.56 FALSE -0.16 1 27 13 22.1666666666667 25
2716 2012 8 Minnesota Vikings Tampa Bay Buccaneers Tampa Bay Buccaneers Minnesota Vikings 36 17 43 1 0.58 TRUE 0.107272727272727 1 23 20.875 26.2857142857143 21.8571428571429
2719 2012 8 New York Jets Miami Dolphins Miami Dolphins New York Jets 30 9 38.5 0 0.56 FALSE -0.16 0 21 25 21.4285714285714 18
2722 2012 8 Detroit Lions Seattle Seahawks Detroit Lions Seattle Seahawks 28 24 43 0 0.57 FALSE -0.179090909090909 0 23 24.8571428571429 17.5 16.75
2725 2012 8 Dallas Cowboys New York Giants New York Giants Dallas Cowboys 29 24 48 1 0.64 TRUE 0.221818181818182 0 19.5714285714286 23.1428571428571 29.25 20.125
2728 2012 8 Denver Broncos New Orleans Saints Denver Broncos New Orleans Saints 34 14 55.5 1 0.79 FALSE -0.599090909090909 1 29.1428571428571 21.7142857142857 27.1428571428571 30.8571428571429
2731 2012 8 Tennessee Titans Indianapolis Colts Indianapolis Colts Tennessee Titans 19 13 46.5 1 0.57 FALSE -0.179090909090909 0 20.25 32.125 19.4285714285714 24.4285714285714
2734 2012 8 Chicago Bears Carolina Panthers Chicago Bears Carolina Panthers 23 22 41.5 0 0.53 FALSE -0.102727272727273 0 26.4285714285714 14.2857142857143 18.2857142857143 23.8571428571429
2737 2012 8 Pittsburgh Steelers Washington Redskins Pittsburgh Steelers Washington Redskins 27 12 44.5 1 0.65 FALSE -0.331818181818182 0 23.8571428571429 20.5714285714286 26.625 28.375
2740 2012 8 Kansas City Chiefs Oakland Raiders Oakland Raiders Kansas City Chiefs 26 16 41.5 1 0.5 TRUE -0.0454545454545454 0 17.1428571428571 29.8571428571429 19.8571428571429 26.7142857142857
2743 2012 8 Philadelphia Eagles Atlanta Falcons Atlanta Falcons Philadelphia Eagles 30 17 43 1 0.65 TRUE 0.240909090909091 0 17.1428571428571 22.1428571428571 28.7142857142857 18.5714285714286
2746 2012 8 Green Bay Packers Jacksonville Jaguars Green Bay Packers Jacksonville Jaguars 24 15 45.5 1 0.67 FALSE -0.37 0 26 21.25 14.7142857142857 26.8571428571429
2749 2012 8 St. Louis Rams New England Patriots New England Patriots St. Louis Rams 45 7 46 1 0.62 TRUE 0.183636363636364 0 17.125 23.25 32.75 21.25
2752 2012 8 Cleveland Browns San Diego Chargers Cleveland Browns San Diego Chargers 7 6 41 1 0.61 FALSE -0.255454545454545 0 19.25 23.25 22 20.5714285714286
2755 2012 8 Arizona Cardinals San Francisco 49ers San Francisco 49ers Arizona Cardinals 24 3 38 0 0.51 TRUE -0.0263636363636363 1 15.875 17.75 23.625 12.875
2758 2012 9 San Diego Chargers Kansas City Chiefs San Diego Chargers Kansas City Chiefs 31 13 41 1 0.57 TRUE 0.0881818181818184 1 23.125 19.625 16.625 30
2761 2012 9 Cincinnati Bengals Denver Broncos Denver Broncos Cincinnati Bengals 31 23 47.5 1 0.67 TRUE 0.279090909090909 0 23.625 27.25 29.375 21.875
2764 2012 9 Washington Redskins Carolina Panthers Carolina Panthers Washington Redskins 21 13 48 1 0.73 FALSE -0.484545454545455 0 25.1111111111111 27.5555555555556 18.625 22.5
2767 2012 9 Indianapolis Colts Miami Dolphins Indianapolis Colts Miami Dolphins 23 20 43.5 0 0.56 TRUE 0.0690909090909093 0 19.875 23.875 21.25 18.625
2770 2012 9 Houston Texans Buffalo Bills Houston Texans Buffalo Bills 21 9 48 1 0.69 FALSE -0.408181818181818 0 29.625 17.125 22.5 31
2773 2012 9 Tennessee Titans Chicago Bears Chicago Bears Tennessee Titans 51 20 43.5 0 0.59 FALSE -0.217272727272727 0 20.2222222222222 34.2222222222222 29.5 15
2776 2012 9 Jacksonville Jaguars Detroit Lions Detroit Lions Jacksonville Jaguars 31 14 44 1 0.56 TRUE 0.0690909090909093 0 14.625 27.375 24 23.5
2779 2012 9 Atlanta Falcons Dallas Cowboys Atlanta Falcons Dallas Cowboys 19 13 47.5 1 0.73 FALSE -0.484545454545455 1 27.5 17.875 18.75 22.625
2782 2012 9 Oakland Raiders Tampa Bay Buccaneers Tampa Bay Buccaneers Oakland Raiders 42 32 47 1 0.56 TRUE 0.0690909090909093 0 21.375 28.625 28.25 23.125
2785 2012 9 Cleveland Browns Baltimore Ravens Baltimore Ravens Cleveland Browns 25 15 44 0 0.63 TRUE 0.202727272727273 0 18.7777777777778 23.4444444444444 24.875 22
2788 2012 9 Seattle Seahawks Minnesota Vikings Seattle Seahawks Minnesota Vikings 30 20 38.5 0 0.55 FALSE -0.140909090909091 0 18.8888888888889 17.1111111111111 22.6666666666667 21.8888888888889
2791 2012 9 Green Bay Packers Arizona Cardinals Green Bay Packers Arizona Cardinals 31 17 43 1 0.63 TRUE 0.202727272727273 0 26.5555555555556 20.7777777777778 16 19.2222222222222
2794 2012 9 New York Giants Pittsburgh Steelers Pittsburgh Steelers New York Giants 24 20 48 1 0.52 FALSE -0.0836363636363636 0 28.2222222222222 20.5555555555556 23.875 20.5
2797 2012 9 New Orleans Saints Philadelphia Eagles New Orleans Saints Philadelphia Eagles 28 13 52.5 1 0.74 FALSE -0.503636363636364 1 27.25 28.625 16.625 22.875
2800 2012 10 Jacksonville Jaguars Indianapolis Colts Indianapolis Colts Jacksonville Jaguars 27 10 43 1 0.52 FALSE -0.0836363636363636 1 14.1111111111111 27.3333333333333 20.6666666666667 22.3333333333333
2803 2012 10 Chicago Bears Houston Texans Houston Texans Chicago Bears 13 6 37.5 1 0.64 FALSE -0.312727272727273 1 26.8888888888889 14.7777777777778 27.7777777777778 15.8888888888889
2806 2012 10 Baltimore Ravens Oakland Raiders Baltimore Ravens Oakland Raiders 55 20 48 0 0.57 FALSE -0.179090909090909 0 28.2222222222222 21.7777777777778 21.2222222222222 31.5555555555556
2809 2012 10 New England Patriots Buffalo Bills New England Patriots Buffalo Bills 37 31 54 1 0.73 TRUE 0.393636363636364 0 33.2222222222222 22.3333333333333 23.4444444444444 31.6666666666667
2812 2012 10 Cincinnati Bengals New York Giants Cincinnati Bengals New York Giants 31 13 47 1 0.51 FALSE -0.0645454545454546 0 24.4444444444444 25.6666666666667 26.7 21.6
2815 2012 10 Philadelphia Eagles Dallas Cowboys Dallas Cowboys Philadelphia Eagles 38 23 44 1 0.66 TRUE 0.26 0 17.3333333333333 24.5555555555556 20.8888888888889 22.6666666666667
2818 2012 10 San Francisco 49ers St. Louis Rams San Francisco 49ers St. Louis Rams 24 24 38 1 0.55 TRUE 0.05 0 23.6666666666667 14.1111111111111 17.8888888888889 23.3333333333333
2821 2012 10 New Orleans Saints Atlanta Falcons New Orleans Saints Atlanta Falcons 31 27 53.5 1 0.78 TRUE 0.489090909090909 0 27.6666666666667 28.4444444444444 27.4444444444444 19.3333333333333
2824 2012 10 Seattle Seahawks New York Jets Seattle Seahawks New York Jets 28 7 38.5 0 0.54 TRUE 0.030909090909091 0 19.8 16.1 19.4444444444444 25.3333333333333
2827 2012 10 Tampa Bay Buccaneers San Diego Chargers Tampa Bay Buccaneers San Diego Chargers 34 24 46.5 1 0.62 TRUE 0.183636363636364 0 28.8888888888889 23.2222222222222 23.2222222222222 21.2222222222222
2830 2012 10 Carolina Panthers Denver Broncos Denver Broncos Carolina Panthers 36 14 46.5 1 0.66 TRUE 0.26 0 18.1111111111111 24 30.1111111111111 21
2833 2012 10 Minnesota Vikings Detroit Lions Minnesota Vikings Detroit Lions 34 24 46 1 0.55 TRUE 0.05 0 23.8 22.1 24 24.6666666666667
2836 2012 10 Miami Dolphins Tennessee Titans Tennessee Titans Miami Dolphins 37 3 44 0 0.56 TRUE 0.0690909090909093 0 19.2222222222222 20.6666666666667 21.9 31.1
2839 2012 10 Pittsburgh Steelers Kansas City Chiefs Pittsburgh Steelers Kansas City Chiefs 16 13 39.5 1 0.51 FALSE -0.0645454545454546 1 23 19.6666666666667 16.2222222222222 28.4444444444444
2842 2012 11 Buffalo Bills Miami Dolphins Buffalo Bills Miami Dolphins 19 14 46 1 0.53 FALSE -0.102727272727273 1 23 29.9 18.7 20.5
2845 2012 11 St. Louis Rams New York Jets New York Jets St. Louis Rams 27 13 38.5 0 0.52 FALSE -0.0836363636363636 0 17.4 23.7 20.2 24.1
2848 2012 11 Carolina Panthers Tampa Bay Buccaneers Tampa Bay Buccaneers Carolina Panthers 27 21 47 1 0.57 TRUE 0.0881818181818181 0 18.4 24.3 28.7 23
2851 2012 11 Dallas Cowboys Cleveland Browns Dallas Cowboys Cleveland Browns 23 20 43.5 0 0.54 TRUE 0.030909090909091 0 21.1 22.4 18.9 23.4
2854 2012 11 Oakland Raiders New Orleans Saints New Orleans Saints Oakland Raiders 38 17 55.5 1 0.7 FALSE -0.427272727272727 0 20.8 32.2 28.7 27.3
2857 2012 11 New England Patriots Indianapolis Colts New England Patriots Indianapolis Colts 59 24 54.5 1 0.7 TRUE 0.336363636363636 0 35.8 22.5 21 26
2860 2012 11 Kansas City Chiefs Cincinnati Bengals Cincinnati Bengals Kansas City Chiefs 28 6 42 0 0.57 TRUE 0.0881818181818181 0 15.2 28.4 24.8 23.7
2863 2012 11 Pittsburgh Steelers Baltimore Ravens Baltimore Ravens Pittsburgh Steelers 13 10 41 0 0.62 TRUE 0.183636363636364 1 21.7 19 26.7 20.6
2866 2012 11 Detroit Lions Green Bay Packers Green Bay Packers Detroit Lions 24 20 53.5 1 0.76 FALSE -0.541818181818182 0 23.6 24.6 26.3 20.7
2869 2012 11 Denver Broncos San Diego Chargers Denver Broncos San Diego Chargers 30 23 48 1 0.72 TRUE 0.374545454545455 0 30.1 21.2 23.2 22.1
2872 2012 11 Houston Texans Jacksonville Jaguars Houston Texans Jacksonville Jaguars 43 37 40.5 1 0.65 TRUE 0.240909090909091 0 29.3 18 16.4 28.9
2875 2012 11 Atlanta Falcons Arizona Cardinals Atlanta Falcons Arizona Cardinals 23 19 43.5 1 0.55 FALSE -0.140909090909091 0 27 19.3 16.3 19.6
2878 2012 11 Washington Redskins Philadelphia Eagles Washington Redskins Philadelphia Eagles 31 6 45.5 1 0.61 FALSE -0.255454545454545 0 25.7 25.4 16.2 25.2
2881 2012 11 San Francisco 49ers Chicago Bears San Francisco 49ers Chicago Bears 32 7 34.5 0 0.65 FALSE -0.331818181818182 1 24.5 13.4 24.9 16.5
2884 2012 12 Dallas Cowboys Washington Redskins Washington Redskins Dallas Cowboys 38 31 47.5 1 0.75 TRUE 0.431818181818182 1 22 23.8181818181818 26.8181818181818 25.9090909090909
2887 2012 12 Detroit Lions Houston Texans Houston Texans Detroit Lions 34 31 48.5 1 0.69 TRUE 0.317272727272727 1 24.2727272727273 25.4545454545455 29.7272727272727 19.1818181818182
2890 2012 12 New York Jets New England Patriots New England Patriots New York Jets 49 19 48 1 0.73 TRUE 0.393636363636364 1 20.0909090909091 26.3636363636364 37 22.1818181818182
2893 2012 12 Indianapolis Colts Buffalo Bills Indianapolis Colts Buffalo Bills 20 13 51 1 0.82 FALSE -0.656363636363636 0 20.9090909090909 24.8181818181818 22.0909090909091 29
2896 2012 12 Kansas City Chiefs Denver Broncos Denver Broncos Kansas City Chiefs 17 9 42 1 0.78 FALSE -0.58 0 14.6363636363636 27.3636363636364 28.9090909090909 20.0909090909091
2899 2012 12 Cleveland Browns Pittsburgh Steelers Cleveland Browns Pittsburgh Steelers 20 14 33.5 0 0.52 FALSE -0.0836363636363636 0 19 22.5454545454545 21 19.0909090909091
2902 2012 12 Arizona Cardinals St. Louis Rams St. Louis Rams Arizona Cardinals 31 17 36 1 0.59 TRUE 0.126363636363636 0 16.3636363636364 20.6363636363636 18.6363636363636 23.0909090909091
2905 2012 12 San Diego Chargers Baltimore Ravens Baltimore Ravens San Diego Chargers 16 13 47 1 0.69 FALSE -0.408181818181818 0 22.2727272727273 21.5454545454545 25.7272727272727 19.9090909090909
2908 2012 12 Tampa Bay Buccaneers Atlanta Falcons Atlanta Falcons Tampa Bay Buccaneers 24 23 51 1 0.85 FALSE -0.713636363636364 0 28.1818181818182 23.0909090909091 26.7272727272727 19.6363636363636
2911 2012 12 Miami Dolphins Seattle Seahawks Miami Dolphins Seattle Seahawks 24 21 37.5 0 0.55 FALSE -0.140909090909091 0 19.1818181818182 20.5454545454545 19.9090909090909 16.8181818181818
2914 2012 12 Chicago Bears Minnesota Vikings Chicago Bears Minnesota Vikings 28 10 38.5 1 0.64 FALSE -0.312727272727273 0 25.1818181818182 15.9090909090909 22.5454545454545 22.6363636363636
2917 2012 12 New Orleans Saints San Francisco 49ers San Francisco 49ers New Orleans Saints 31 21 50.5 1 0.87 TRUE 0.660909090909091 0 28 27.6363636363636 25.0909090909091 14.0909090909091
2920 2012 12 Cincinnati Bengals Oakland Raiders Cincinnati Bengals Oakland Raiders 34 10 50 1 0.59 FALSE -0.217272727272727 0 25.6363636363636 22.4545454545455 19.8181818181818 32.3636363636364
2923 2012 12 New York Giants Green Bay Packers New York Giants Green Bay Packers 38 10 51 1 0.87 FALSE -0.751818181818182 1 27.7272727272727 20.5454545454545 24.8181818181818 22.2727272727273
2926 2012 12 Jacksonville Jaguars Tennessee Titans Jacksonville Jaguars Tennessee Titans 24 19 45 1 0.81 FALSE -0.637272727272727 0 17.0909090909091 28 21.6363636363636 30.4545454545455
2929 2012 12 Philadelphia Eagles Carolina Panthers Carolina Panthers Philadelphia Eagles 30 22 41.5 1 0.79 TRUE 0.508181818181818 1 16.7272727272727 25.6363636363636 19.4545454545455 24.0909090909091
2932 2012 13 Atlanta Falcons New Orleans Saints Atlanta Falcons New Orleans Saints 23 13 54.5 1 0.77 FALSE -0.560909090909091 1 26.4166666666667 19.0833333333333 26.75 27.25
2935 2012 13 Baltimore Ravens Pittsburgh Steelers Pittsburgh Steelers Baltimore Ravens 23 20 37 1 0.63 TRUE 0.202727272727273 0 25.25 20.1666666666667 21.1666666666667 19.1666666666667
2938 2012 13 Miami Dolphins New England Patriots New England Patriots Miami Dolphins 23 16 51 1 0.83 FALSE -0.675454545454545 0 18.9166666666667 20.75 35.8333333333333 21.6666666666667
2941 2012 13 Dallas Cowboys Philadelphia Eagles Dallas Cowboys Philadelphia Eagles 38 33 44.5 1 0.83 TRUE 0.584545454545454 1 23.3333333333333 24.5833333333333 18.0833333333333 26.6666666666667
2944 2012 13 Denver Broncos Tampa Bay Buccaneers Denver Broncos Tampa Bay Buccaneers 31 23 50 1 0.79 TRUE 0.508181818181818 0 29.0833333333333 20.3333333333333 27.75 23.75
2947 2012 13 Oakland Raiders Cleveland Browns Cleveland Browns Oakland Raiders 20 17 39.5 1 0.7 FALSE -0.427272727272727 0 19.5833333333333 31.3333333333333 19.0833333333333 22.0833333333333
2950 2012 13 St. Louis Rams San Francisco 49ers St. Louis Rams San Francisco 49ers 16 13 41 1 0.75 FALSE -0.522727272727273 0 18.4166666666667 22.25 24.0833333333333 14.25
2953 2012 13 San Diego Chargers Cincinnati Bengals Cincinnati Bengals San Diego Chargers 20 13 46 1 0.8 FALSE -0.618181818181818 0 21.5 21.4166666666667 25.1666666666667 21.6666666666667
2956 2012 13 Chicago Bears Seattle Seahawks Seattle Seahawks Chicago Bears 23 17 37 1 0.63 TRUE 0.202727272727273 0 24.5 16.5 20.1666666666667 16.8333333333333
2959 2012 13 Tennessee Titans Houston Texans Houston Texans Tennessee Titans 24 10 47.5 1 0.74 FALSE -0.503636363636364 0 20.6666666666667 29.9166666666667 29.25 18.4166666666667
2962 2012 13 Green Bay Packers Minnesota Vikings Green Bay Packers Minnesota Vikings 23 14 47 1 0.85 FALSE -0.713636363636364 0 24.6666666666667 21.5833333333333 21.8333333333333 22.6666666666667
2965 2012 13 New York Jets Arizona Cardinals New York Jets Arizona Cardinals 7 6 37 1 0.67 FALSE -0.37 0 19 24.6666666666667 15.5 19.5
2968 2012 13 Detroit Lions Indianapolis Colts Indianapolis Colts Detroit Lions 35 33 51.5 1 0.87 TRUE 0.660909090909091 0 25 26.25 22.0833333333333 25.5
2971 2012 13 Buffalo Bills Jacksonville Jaguars Buffalo Bills Jacksonville Jaguars 34 18 41.5 1 0.75 TRUE 0.431818181818182 0 23.0833333333333 28.0833333333333 17.1666666666667 28.5
2974 2012 13 Kansas City Chiefs Carolina Panthers Kansas City Chiefs Carolina Panthers 27 21 41.5 1 0.65 TRUE 0.240909090909091 0 15.6666666666667 26.8333333333333 19.5833333333333 24.3333333333333
2977 2012 13 Washington Redskins New York Giants Washington Redskins New York Giants 17 16 50.5 1 0.74 FALSE -0.503636363636364 1 26 25.0833333333333 26.75 20.25
2980 2012 14 Oakland Raiders Denver Broncos Denver Broncos Oakland Raiders 26 13 47 1 0.52 FALSE -0.0836363636363636 1 19.0769230769231 30.9230769230769 28.8461538461538 19.7692307692308
2983 2012 14 Cleveland Browns Kansas City Chiefs Cleveland Browns Kansas City Chiefs 30 7 38 0 0.58 TRUE 0.107272727272727 0 19.9230769230769 20.9230769230769 15 27.0769230769231
2986 2012 14 San Francisco 49ers Miami Dolphins San Francisco 49ers Miami Dolphins 27 13 38.5 1 0.55 TRUE 0.05 0 24.3076923076923 14.1538461538462 18.4615384615385 21.2307692307692
2989 2012 14 Pittsburgh Steelers San Diego Chargers San Diego Chargers Pittsburgh Steelers 34 24 38 1 0.68 TRUE 0.298181818181818 0 21.3846153846154 20.3076923076923 22.4615384615385 21.6153846153846
2992 2012 14 Green Bay Packers Detroit Lions Green Bay Packers Detroit Lions 27 20 49.5 1 0.81 FALSE -0.637272727272727 1 24.8461538461538 21.4615384615385 24.6153846153846 26.3076923076923
2995 2012 14 Tampa Bay Buccaneers Philadelphia Eagles Philadelphia Eagles Tampa Bay Buccaneers 23 21 48 1 0.76 FALSE -0.541818181818182 0 27.2307692307692 23.6923076923077 18.4615384615385 26.2307692307692
2998 2012 14 Buffalo Bills St. Louis Rams St. Louis Rams Buffalo Bills 15 12 42.5 1 0.66 FALSE -0.350909090909091 0 22.2307692307692 27.0769230769231 18.1538461538462 21.4615384615385
3001 2012 14 Carolina Panthers Atlanta Falcons Carolina Panthers Atlanta Falcons 30 20 47 1 0.82 TRUE 0.565454545454545 0 20.3846153846154 24 25.9230769230769 19.9230769230769
3004 2012 14 Indianapolis Colts Tennessee Titans Indianapolis Colts Tennessee Titans 27 23 47 1 0.6 TRUE 0.145454545454546 0 22.4615384615385 25.3076923076923 20.8461538461538 29.6923076923077
3007 2012 14 Jacksonville Jaguars New York Jets New York Jets Jacksonville Jaguars 17 10 39 0 0.78 TRUE 0.489090909090909 0 16.6153846153846 27.6153846153846 18.8461538461538 23.5384615384615
3010 2012 14 New York Giants New Orleans Saints New York Giants New Orleans Saints 52 27 52.5 1 0.83 TRUE 0.584545454545454 0 28.6923076923077 20.7692307692308 26.7692307692308 29.1538461538462
3013 2012 14 Seattle Seahawks Arizona Cardinals Seattle Seahawks Arizona Cardinals 58 0 36 1 0.65 TRUE 0.240909090909091 0 23.0769230769231 15.5384615384615 14.3076923076923 22.4615384615385
3016 2012 14 Washington Redskins Baltimore Ravens Washington Redskins Baltimore Ravens 31 28 48 0 0.61 FALSE -0.255454545454545 0 26.3846153846154 25.3076923076923 25.4615384615385 21
3019 2012 14 Cincinnati Bengals Dallas Cowboys Dallas Cowboys Cincinnati Bengals 20 19 46 1 0.77 FALSE -0.560909090909091 0 24.6923076923077 21.5384615384615 23.0769230769231 24.1538461538462
3022 2012 14 Minnesota Vikings Chicago Bears Minnesota Vikings Chicago Bears 21 14 40.5 1 0.84 FALSE -0.694545454545454 0 21.7692307692308 22 23.6923076923077 16.8461538461538
3025 2012 14 New England Patriots Houston Texans New England Patriots Houston Texans 42 14 51 1 0.79 TRUE 0.508181818181818 1 36.3076923076923 21.0769230769231 28.0769230769231 20.2307692307692
3028 2012 15 Philadelphia Eagles Cincinnati Bengals Cincinnati Bengals Philadelphia Eagles 34 13 45 1 0.53 TRUE 0.0118181818181819 1 18.0714285714286 26.7857142857143 25.3571428571429 20.9285714285714
3031 2012 15 Buffalo Bills Seattle Seahawks Seattle Seahawks Buffalo Bills 50 17 44 1 0.52 TRUE -0.00727272727272721 0 21.8571428571429 28.7142857142857 25 15.6428571428571
3034 2012 15 Atlanta Falcons New York Giants Atlanta Falcons New York Giants 34 0 50 1 0.69 FALSE -0.408181818181818 0 26.5 18.5 26.6428571428571 21.7142857142857
3037 2012 15 Miami Dolphins Jacksonville Jaguars Miami Dolphins Jacksonville Jaguars 24 3 38.5 1 0.64 FALSE -0.312727272727273 0 18.8571428571429 19.9285714285714 15.6428571428571 27.3571428571429
3040 2012 15 Arizona Cardinals Detroit Lions Arizona Cardinals Detroit Lions 38 10 43.5 1 0.69 TRUE 0.317272727272727 0 16 21.5714285714286 23.5714285714286 27.1428571428571
3043 2012 15 New Orleans Saints Tampa Bay Buccaneers New Orleans Saints Tampa Bay Buccaneers 41 0 55 1 0.88 FALSE -0.770909090909091 0 27.7857142857143 27.0714285714286 25.2857142857143 24.9285714285714
3046 2012 15 Dallas Cowboys Pittsburgh Steelers Dallas Cowboys Pittsburgh Steelers 27 24 46 1 0.63 TRUE 0.202727272727273 0 23.3571428571429 24.1428571428571 21.5714285714286 20.7857142857143
3049 2012 15 St. Louis Rams Minnesota Vikings Minnesota Vikings St. Louis Rams 36 22 39.5 0 0.5 FALSE -0.0454545454545454 0 18.4285714285714 22.5 22.7857142857143 22
3052 2012 15 Baltimore Ravens Denver Broncos Denver Broncos Baltimore Ravens 34 17 48 1 0.61 TRUE 0.164545454545455 0 24.8571428571429 21.9285714285714 29.2142857142857 19.5714285714286
3055 2012 15 Cleveland Browns Washington Redskins Washington Redskins Cleveland Browns 38 21 40.5 0 0.57 FALSE -0.179090909090909 0 20 22.1428571428571 27.2142857142857 25
3058 2012 15 Houston Texans Indianapolis Colts Houston Texans Indianapolis Colts 29 17 48 1 0.92 FALSE -0.847272727272727 0 28.1428571428571 20 22.0714285714286 25.5714285714286
3061 2012 15 New England Patriots San Francisco 49ers San Francisco 49ers New England Patriots 41 34 47.5 1 0.71 TRUE 0.355454545454545 1 36.1428571428571 22.5 25.5 15.5714285714286
3064 2012 15 Chicago Bears Green Bay Packers Green Bay Packers Chicago Bears 21 13 43.5 1 0.77 FALSE -0.560909090909091 0 22.9285714285714 17.1428571428571 24.5714285714286 20.8571428571429
3067 2012 15 Oakland Raiders Kansas City Chiefs Oakland Raiders Kansas City Chiefs 15 0 43.5 0 0.54 TRUE 0.030909090909091 0 18.7857142857143 28.7142857142857 13.9285714285714 26.2142857142857
3070 2012 15 San Diego Chargers Carolina Panthers Carolina Panthers San Diego Chargers 31 7 45.5 1 0.86 FALSE -0.732727272727273 0 21.3571428571429 22.2857142857143 21.1428571428571 22.7857142857143
3073 2012 15 Tennessee Titans New York Jets Tennessee Titans New York Jets 14 10 40.5 0 0.62 TRUE 0.183636363636364 1 20.3571428571429 28.2857142857143 18.2142857142857 22.8571428571429
3076 2012 16 Detroit Lions Atlanta Falcons Atlanta Falcons Detroit Lions 31 18 50 1 0.79 FALSE -0.599090909090909 1 23.2 27.4 26.8 18.4666666666667
3079 2012 16 Arizona Cardinals Chicago Bears Chicago Bears Arizona Cardinals 28 13 36 1 0.74 TRUE 0.412727272727273 0 15.8 22 23.2666666666667 16.8666666666667
3082 2012 16 Baltimore Ravens New York Giants Baltimore Ravens New York Giants 33 14 47.5 1 0.64 FALSE -0.312727272727273 0 25.4 21.4 25.8 22.4666666666667
3085 2012 16 Green Bay Packers Tennessee Titans Green Bay Packers Tennessee Titans 55 7 44.5 1 0.7 TRUE 0.336363636363636 0 26.6 19.9333333333333 19.4666666666667 30.0666666666667
3088 2012 16 Denver Broncos Cleveland Browns Denver Broncos Cleveland Browns 34 12 44 1 0.77 TRUE 0.47 0 29.5333333333333 19.0666666666667 19.4666666666667 22.9333333333333
3091 2012 16 Philadelphia Eagles Washington Redskins Washington Redskins Philadelphia Eagles 27 20 46 1 0.87 TRUE 0.660909090909091 0 18.2 26.8 27.2 24.6666666666667
3094 2012 16 Jacksonville Jaguars New England Patriots New England Patriots Jacksonville Jaguars 23 16 51 1 0.79 FALSE -0.599090909090909 0 15.6666666666667 27.0666666666667 35.2666666666667 22.0666666666667
3097 2012 16 Carolina Panthers Oakland Raiders Carolina Panthers Oakland Raiders 17 6 47 1 0.65 FALSE -0.331818181818182 0 20.8666666666667 21.6666666666667 17.9333333333333 27.9333333333333
3100 2012 16 New York Jets San Diego Chargers San Diego Chargers New York Jets 27 17 37 0 0.66 FALSE -0.350909090909091 0 18.1333333333333 23.1333333333333 21.7333333333333 21.9333333333333
3103 2012 16 Seattle Seahawks San Francisco 49ers Seattle Seahawks San Francisco 49ers 42 13 40.5 1 0.73 TRUE 0.393636363636364 1 26.1333333333333 15.4666666666667 24.6666666666667 17.3333333333333
3106 2012 16 Dallas Cowboys New Orleans Saints New Orleans Saints Dallas Cowboys 34 31 54.5 1 0.93 TRUE 0.775454545454546 0 23.8666666666667 24.8 28.2 27.3333333333333
3109 2012 16 Miami Dolphins Buffalo Bills Miami Dolphins Buffalo Bills 24 10 43 1 0.59 FALSE -0.217272727272727 0 19.2 19.2666666666667 21.0666666666667 28.4
3112 2012 16 Houston Texans Minnesota Vikings Minnesota Vikings Houston Texans 23 6 43 1 0.79 FALSE -0.599090909090909 0 26.6666666666667 20.2 22.8 20.9333333333333
3115 2012 16 Pittsburgh Steelers Cincinnati Bengals Cincinnati Bengals Pittsburgh Steelers 13 10 40.5 1 0.66 FALSE -0.350909090909091 0 20.8 20.2666666666667 24.5333333333333 20.2
3118 2012 16 Tampa Bay Buccaneers St. Louis Rams St. Louis Rams Tampa Bay Buccaneers 28 13 43.5 1 0.54 FALSE -0.121818181818182 0 24.4666666666667 25.1333333333333 19.0666666666667 21.8666666666667
3121 2012 16 Kansas City Chiefs Indianapolis Colts Indianapolis Colts Kansas City Chiefs 20 13 41.5 1 0.62 FALSE -0.274545454545455 0 13.8666666666667 25.8 21.9333333333333 24.7333333333333
3124 2012 17 San Diego Chargers Oakland Raiders San Diego Chargers Oakland Raiders 24 21 41.5 1 0.72 TRUE 0.374545454545455 0 21.875 21.875 18.125 27.6875
3127 2012 17 Seattle Seahawks St. Louis Rams Seattle Seahawks St. Louis Rams 20 13 42 1 0.89 FALSE -0.79 0 25.75 15.3125 18.6875 21.75
3130 2012 17 Denver Broncos Kansas City Chiefs Denver Broncos Kansas City Chiefs 38 3 41 1 0.72 FALSE -0.465454545454545 0 30.0625 18.0625 13.1875 26.5625
3133 2012 17 New England Patriots Miami Dolphins New England Patriots Miami Dolphins 28 0 48 1 0.72 FALSE -0.465454545454545 0 34.8125 20.6875 18 19.8125
3136 2012 17 New York Giants Philadelphia Eagles New York Giants Philadelphia Eagles 42 7 44.5 1 0.73 TRUE 0.393636363636364 0 26.8125 21.5 17.5 27.75
3139 2012 17 Indianapolis Colts Houston Texans Indianapolis Colts Houston Texans 28 16 47 1 0.78 FALSE -0.58 0 22.3125 24.1875 26 20.6875
3142 2012 17 Tennessee Titans Jacksonville Jaguars Tennessee Titans Jacksonville Jaguars 38 20 42 0 0.54 FALSE -0.121818181818182 0 20.625 29.4375 15.9375 27.75
3145 2012 17 San Francisco 49ers Arizona Cardinals San Francisco 49ers Arizona Cardinals 27 13 38.5 1 0.69 TRUE 0.317272727272727 0 24.8125 17.0625 15.625 22.3125
3148 2012 17 New Orleans Saints Carolina Panthers Carolina Panthers New Orleans Saints 44 38 54 1 0.89 TRUE 0.699090909090909 0 28.8125 28.375 22.3125 22.6875
3151 2012 17 Minnesota Vikings Green Bay Packers Minnesota Vikings Green Bay Packers 37 34 46 1 0.83 TRUE 0.584545454545454 0 23.6875 21.75 27.0625 21
3154 2012 17 Washington Redskins Dallas Cowboys Washington Redskins Dallas Cowboys 28 18 49 1 0.76 FALSE -0.541818181818182 1 27.25 24.25 23.5 25
3157 2012 17 Detroit Lions Chicago Bears Chicago Bears Detroit Lions 26 24 46 1 0.74 TRUE 0.412727272727273 0 23.25 27.3125 23.4375 17.3125
3160 2012 17 Pittsburgh Steelers Cleveland Browns Pittsburgh Steelers Cleveland Browns 24 10 36.5 1 0.62 FALSE -0.274545454545455 0 21 19.625 18.875 23
3163 2012 17 Buffalo Bills New York Jets Buffalo Bills New York Jets 28 9 40.5 0 0.56 TRUE 0.0690909090909093 0 21.5 27.1875 17.5625 23.4375
3166 2012 17 Cincinnati Bengals Baltimore Ravens Cincinnati Bengals Baltimore Ravens 23 17 43 0 0.52 TRUE -0.00727272727272721 0 24.4375 20 24.875 21.5
3169 2012 17 Atlanta Falcons Tampa Bay Buccaneers Tampa Bay Buccaneers Atlanta Falcons 22 17 45.5 1 0.63 FALSE -0.293636363636364 0 26.1875 18.6875 24.3125 24.625
3172 2013 1 Denver Broncos Baltimore Ravens Denver Broncos Baltimore Ravens 49 27 48.5 1 0.79 TRUE 0.508181818181818 1 49 27 27 49
3175 2013 1 Carolina Panthers Seattle Seahawks Seattle Seahawks Carolina Panthers 12 7 44.5 1 0.58 FALSE -0.198181818181818 0 7 12 12 7
3178 2013 1 St. Louis Rams Arizona Cardinals St. Louis Rams Arizona Cardinals 27 24 42.5 1 0.61 TRUE 0.164545454545455 0 27 24 24 27
3181 2013 1 San Francisco 49ers Green Bay Packers San Francisco 49ers Green Bay Packers 34 28 47.5 1 0.69 TRUE 0.317272727272727 0 34 28 28 34
3184 2013 1 Detroit Lions Minnesota Vikings Detroit Lions Minnesota Vikings 34 24 46.5 1 0.82 TRUE 0.565454545454545 0 34 24 24 34
3187 2013 1 New Orleans Saints Atlanta Falcons New Orleans Saints Atlanta Falcons 23 17 55 1 0.9 FALSE -0.809090909090909 0 23 17 17 23
3190 2013 1 Pittsburgh Steelers Tennessee Titans Tennessee Titans Pittsburgh Steelers 16 9 42 0 0.65 TRUE 0.240909090909091 0 9 16 16 9
3193 2013 1 Chicago Bears Cincinnati Bengals Chicago Bears Cincinnati Bengals 24 21 41.5 1 0.71 TRUE 0.355454545454545 0 24 21 21 24
3196 2013 1 Indianapolis Colts Oakland Raiders Indianapolis Colts Oakland Raiders 21 17 45.5 0 0.58 TRUE 0.107272727272727 0 21 17 17 21
3199 2013 1 Dallas Cowboys New York Giants Dallas Cowboys New York Giants 36 31 50 1 0.6 TRUE 0.145454545454546 1 36 31 31 36
3202 2013 1 Jacksonville Jaguars Kansas City Chiefs Kansas City Chiefs Jacksonville Jaguars 28 2 42.5 0 0.63 TRUE 0.202727272727273 0 2 28 28 2
3205 2013 1 Cleveland Browns Miami Dolphins Miami Dolphins Cleveland Browns 23 10 41 0 0.7 TRUE 0.336363636363636 0 10 23 23 10
3208 2013 1 New York Jets Tampa Bay Buccaneers New York Jets Tampa Bay Buccaneers 18 17 39.5 0 0.76 TRUE 0.450909090909091 0 18 17 17 18
3211 2013 1 Buffalo Bills New England Patriots New England Patriots Buffalo Bills 23 21 51 1 0.59 FALSE -0.217272727272727 0 21 23 23 21
3214 2013 1 Washington Redskins Philadelphia Eagles Philadelphia Eagles Washington Redskins 33 27 52.5 1 0.67 TRUE 0.279090909090909 1 27 33 33 27
3217 2013 1 San Diego Chargers Houston Texans Houston Texans San Diego Chargers 31 28 44.5 1 0.8 TRUE 0.527272727272727 1 28 31 31 28
3220 2013 2 New England Patriots New York Jets New England Patriots New York Jets 13 10 43 1 0.73 FALSE -0.484545454545455 1 18 15.5 14 15
3223 2013 2 Tampa Bay Buccaneers New Orleans Saints New Orleans Saints Tampa Bay Buccaneers 16 14 48.5 1 0.87 FALSE -0.751818181818182 0 15.5 17 19.5 15.5
3226 2013 2 Chicago Bears Minnesota Vikings Chicago Bears Minnesota Vikings 31 30 41 1 0.8 TRUE 0.527272727272727 0 27.5 25.5 27 32.5
3229 2013 2 Kansas City Chiefs Dallas Cowboys Kansas City Chiefs Dallas Cowboys 17 16 45.5 1 0.51 FALSE -0.0645454545454546 0 22.5 9 26 24
3232 2013 2 Arizona Cardinals Detroit Lions Arizona Cardinals Detroit Lions 25 21 48 1 0.85 FALSE -0.713636363636364 0 24.5 24 27.5 24.5
3235 2013 2 Baltimore Ravens Cleveland Browns Baltimore Ravens Cleveland Browns 14 6 43.5 0 0.66 TRUE 0.26 0 20.5 27.5 8 18.5
3238 2013 2 Atlanta Falcons St. Louis Rams Atlanta Falcons St. Louis Rams 31 24 47 1 0.69 TRUE 0.317272727272727 0 24 23.5 25.5 27.5
3241 2013 2 Houston Texans Tennessee Titans Houston Texans Tennessee Titans 30 24 42 1 0.71 TRUE 0.355454545454545 0 30.5 26 20 19.5
3244 2013 2 Green Bay Packers Washington Redskins Green Bay Packers Washington Redskins 38 20 49 1 0.88 TRUE 0.68 0 33 27 23.5 35.5
3247 2013 2 Indianapolis Colts Miami Dolphins Miami Dolphins Indianapolis Colts 24 20 43.5 1 0.66 TRUE 0.26 0 20.5 20.5 23.5 15
3250 2013 2 Buffalo Bills Carolina Panthers Buffalo Bills Carolina Panthers 24 23 43.5 1 0.69 TRUE 0.317272727272727 0 22.5 23 15 18
3253 2013 2 Philadelphia Eagles San Diego Chargers San Diego Chargers Philadelphia Eagles 33 30 52.5 1 0.77 TRUE 0.47 0 31.5 30 30.5 30.5
3256 2013 2 Seattle Seahawks San Francisco 49ers Seattle Seahawks San Francisco 49ers 29 3 44.5 1 0.7 FALSE -0.427272727272727 1 20.5 5 18.5 28.5
3259 2013 2 Oakland Raiders Jacksonville Jaguars Oakland Raiders Jacksonville Jaguars 19 9 41 0 0.6 TRUE 0.145454545454546 0 18 15 5.5 23.5
3262 2013 2 New York Giants Denver Broncos Denver Broncos New York Giants 41 23 54 1 0.89 TRUE 0.699090909090909 0 27 38.5 45 25
3265 2013 2 Cincinnati Bengals Pittsburgh Steelers Cincinnati Bengals Pittsburgh Steelers 20 10 40 0 0.51 TRUE -0.0263636363636363 1 20.5 17 9.5 18
3268 2013 3 Philadelphia Eagles Kansas City Chiefs Kansas City Chiefs Philadelphia Eagles 26 16 50.5 1 0.68 FALSE -0.389090909090909 1 26.3333333333333 28.6666666666667 23.6666666666667 11.3333333333333
3271 2013 3 New England Patriots Tampa Bay Buccaneers New England Patriots Tampa Bay Buccaneers 23 3 44.5 0 0.52 TRUE -0.00727272727272721 0 19.6666666666667 11.3333333333333 11.3333333333333 19
3274 2013 3 New Orleans Saints Arizona Cardinals New Orleans Saints Arizona Cardinals 31 7 48.5 1 0.87 FALSE -0.751818181818182 0 23.3333333333333 12.6666666666667 18.6666666666667 26.3333333333333
3277 2013 3 Washington Redskins Detroit Lions Detroit Lions Washington Redskins 27 20 49 1 0.93 FALSE -0.866363636363636 0 22.3333333333333 32.6666666666667 27.3333333333333 23
3280 2013 3 Carolina Panthers New York Giants Carolina Panthers New York Giants 38 0 47.5 1 0.75 FALSE -0.522727272727273 0 22.6666666666667 12 18 38.3333333333333
3283 2013 3 Miami Dolphins Atlanta Falcons Miami Dolphins Atlanta Falcons 27 23 45.5 1 0.76 TRUE 0.450909090909091 0 24.6666666666667 17.6666666666667 23.6666666666667 24.6666666666667
3286 2013 3 Tennessee Titans San Diego Chargers Tennessee Titans San Diego Chargers 20 17 43 1 0.83 FALSE -0.675454545454545 0 20 18.6666666666667 26 27
3289 2013 3 New York Jets Buffalo Bills New York Jets Buffalo Bills 27 20 41 0 0.62 FALSE -0.274545454545455 0 18.3333333333333 16.6666666666667 21.6666666666667 24.3333333333333
3292 2013 3 Cincinnati Bengals Green Bay Packers Cincinnati Bengals Green Bay Packers 34 30 50 1 0.85 TRUE 0.622727272727273 0 25 21.3333333333333 32 29.3333333333333
3295 2013 3 Dallas Cowboys St. Louis Rams Dallas Cowboys St. Louis Rams 31 7 47.5 1 0.65 FALSE -0.331818181818182 0 27.6666666666667 18.3333333333333 19.3333333333333 28.6666666666667
3298 2013 3 Baltimore Ravens Houston Texans Baltimore Ravens Houston Texans 30 9 44.5 1 0.51 FALSE -0.0645454545454546 0 23.6666666666667 21.3333333333333 23.3333333333333 27.3333333333333
3301 2013 3 Minnesota Vikings Cleveland Browns Cleveland Browns Minnesota Vikings 31 27 40.5 0 0.72 FALSE -0.465454545454545 0 27 32 15.6666666666667 21.3333333333333
3304 2013 3 Seattle Seahawks Jacksonville Jaguars Seattle Seahawks Jacksonville Jaguars 45 17 39.5 1 0.51 TRUE -0.0263636363636363 0 28.6666666666667 9 9.33333333333333 30.6666666666667
3307 2013 3 Pittsburgh Steelers Chicago Bears Chicago Bears Pittsburgh Steelers 40 23 40.5 1 0.51 TRUE -0.0263636363636363 1 14 25.3333333333333 31.6666666666667 24.6666666666667
3310 2013 3 San Francisco 49ers Indianapolis Colts Indianapolis Colts San Francisco 49ers 27 7 46 1 0.86 FALSE -0.732727272727273 0 14.6666666666667 28 22.6666666666667 16
3313 2013 3 Denver Broncos Oakland Raiders Denver Broncos Oakland Raiders 37 21 49.5 1 0.86 TRUE 0.641818181818182 1 42.3333333333333 23.6666666666667 19 22.3333333333333
3316 2013 4 St. Louis Rams San Francisco 49ers San Francisco 49ers St. Louis Rams 35 11 43 1 0.61 TRUE 0.164545454545455 1 17.25 30.25 19.75 23.75
3319 2013 4 Buffalo Bills Baltimore Ravens Buffalo Bills Baltimore Ravens 23 20 45 1 0.55 FALSE -0.140909090909091 0 22 23.25 22.75 21.75
3322 2013 4 Cleveland Browns Cincinnati Bengals Cleveland Browns Cincinnati Bengals 17 6 42.5 1 0.66 FALSE -0.350909090909091 0 16 17.5 20.25 20.25
3325 2013 4 Tennessee Titans New York Jets Tennessee Titans New York Jets 38 13 40.5 0 0.7 FALSE -0.427272727272727 0 24.5 17.25 17 22
3328 2013 4 San Diego Chargers Dallas Cowboys San Diego Chargers Dallas Cowboys 30 21 47 1 0.86 TRUE 0.641818181818182 0 27 25.5 26 21.25
3331 2013 4 Kansas City Chiefs New York Giants Kansas City Chiefs New York Giants 31 7 44 1 0.71 FALSE -0.446363636363636 0 25.5 10.25 15.25 36.5
3334 2013 4 Houston Texans Seattle Seahawks Seattle Seahawks Houston Texans 23 20 41.5 1 0.72 TRUE 0.374545454545455 0 22.5 26.25 27.25 11.75
3337 2013 4 Tampa Bay Buccaneers Arizona Cardinals Arizona Cardinals Tampa Bay Buccaneers 13 10 40.5 0 0.63 TRUE 0.202727272727273 0 11 17.5 17.25 22.25
3340 2013 4 Minnesota Vikings Pittsburgh Steelers Minnesota Vikings Pittsburgh Steelers 34 27 41.5 1 0.75 TRUE 0.431818181818182 0 28.75 30.75 17.25 27.5
3343 2013 4 Oakland Raiders Washington Redskins Washington Redskins Oakland Raiders 24 14 45.5 1 0.86 FALSE -0.732727272727273 0 17.75 22.75 22.75 28
3346 2013 4 Atlanta Falcons New England Patriots New England Patriots Atlanta Falcons 30 23 49.5 1 0.66 TRUE 0.26 1 23.5 26 22.25 14.25
3349 2013 4 Denver Broncos Philadelphia Eagles Denver Broncos Philadelphia Eagles 52 20 58.5 1 0.83 TRUE 0.584545454545454 0 44.75 22.75 24.75 34.5
3352 2013 4 Jacksonville Jaguars Indianapolis Colts Indianapolis Colts Jacksonville Jaguars 37 3 42.5 1 0.56 FALSE -0.16 0 7.75 32.25 26.25 12.75
3355 2013 4 Detroit Lions Chicago Bears Detroit Lions Chicago Bears 40 32 48.5 1 0.88 TRUE 0.68 0 30.5 25.25 31.75 28.5
3358 2013 4 New Orleans Saints Miami Dolphins New Orleans Saints Miami Dolphins 38 17 49 1 0.78 TRUE 0.489090909090909 1 27 13.75 22.75 22.75
3361 2013 5 Cleveland Browns Buffalo Bills Cleveland Browns Buffalo Bills 37 24 40.5 0 0.58 FALSE -0.198181818181818 1 20.2 18.8 22.4 26
3364 2013 5 Arizona Cardinals Carolina Panthers Arizona Cardinals Carolina Panthers 22 6 41.5 1 0.57 FALSE -0.179090909090909 0 18.2 19 18.5 14.5
3367 2013 5 Green Bay Packers Detroit Lions Green Bay Packers Detroit Lions 22 9 53.5 1 0.94 FALSE -0.885454545454545 0 29.5 24.25 26.2 24.6
3370 2013 5 New York Giants Philadelphia Eagles Philadelphia Eagles New York Giants 36 21 54 1 0.79 TRUE 0.508181818181818 0 16.4 36.4 27 31.8
3373 2013 5 Dallas Cowboys Denver Broncos Denver Broncos Dallas Cowboys 51 48 57 1 0.93 TRUE 0.775454545454546 0 30.4 27.2 46 27.8
3376 2013 5 Cincinnati Bengals New England Patriots Cincinnati Bengals New England Patriots 13 6 45.5 1 0.79 FALSE -0.599090909090909 0 18.8 17.4 19 14
3379 2013 5 Chicago Bears New Orleans Saints New Orleans Saints Chicago Bears 26 18 50.5 1 0.91 FALSE -0.828181818181818 0 29 28 26.8 14.6
3382 2013 5 Oakland Raiders San Diego Chargers Oakland Raiders San Diego Chargers 27 17 47 1 0.86 FALSE -0.732727272727273 0 19.6 21.6 25 25.8
3385 2013 5 St. Louis Rams Jacksonville Jaguars St. Louis Rams Jacksonville Jaguars 34 20 41 0 0.51 FALSE -0.0645454545454546 0 20.6 28.2 10.2 32.6
3388 2013 5 Indianapolis Colts Seattle Seahawks Indianapolis Colts Seattle Seahawks 34 28 43.5 1 0.77 TRUE 0.47 0 27.8 15.8 27.4 16.2
3391 2013 5 Miami Dolphins Baltimore Ravens Baltimore Ravens Miami Dolphins 26 23 43 1 0.5 TRUE -0.0454545454545454 0 22.8 23.4 23.4 22
3394 2013 5 Tennessee Titans Kansas City Chiefs Kansas City Chiefs Tennessee Titans 26 17 38 1 0.65 TRUE 0.240909090909091 0 23 19 25.6 11.6
3397 2013 5 San Francisco 49ers Houston Texans San Francisco 49ers Houston Texans 34 3 43.5 1 0.85 FALSE -0.713636363636364 1 22.6 19.6 18.6 27.8
3400 2013 5 Atlanta Falcons New York Jets New York Jets Atlanta Falcons 30 28 45 1 0.68 TRUE 0.298181818181818 1 24.4 26.8 19.6 23.2
3403 2013 6 Chicago Bears New York Giants Chicago Bears New York Giants 27 21 47.5 1 0.87 TRUE 0.660909090909091 1 28.6666666666667 26.8333333333333 17.1666666666667 34.8333333333333
3406 2013 6 Minnesota Vikings Carolina Panthers Carolina Panthers Minnesota Vikings 35 10 45 1 0.78 FALSE -0.58 0 25 31.6 21.8 13.6
3409 2013 6 Baltimore Ravens Green Bay Packers Green Bay Packers Baltimore Ravens 19 17 49 1 0.76 FALSE -0.541818181818182 0 22.3333333333333 21.5 27.4 22.8
3412 2013 6 Houston Texans St. Louis Rams St. Louis Rams Houston Texans 38 13 43 1 0.83 TRUE 0.584545454545454 0 17.6666666666667 29.5 23.5 25.6666666666667
3415 2013 6 Cleveland Browns Detroit Lions Detroit Lions Cleveland Browns 31 17 43.5 1 0.65 TRUE 0.240909090909091 0 19.6666666666667 20.8333333333333 27 23.3333333333333
3418 2013 6 Denver Broncos Jacksonville Jaguars Denver Broncos Jacksonville Jaguars 35 19 53 1 0.87 TRUE 0.660909090909091 0 44.1666666666667 26.3333333333333 11.6666666666667 33
3421 2013 6 Kansas City Chiefs Oakland Raiders Kansas City Chiefs Oakland Raiders 24 7 41 1 0.69 FALSE -0.408181818181818 0 25.3333333333333 10.8333333333333 17.5 22
3424 2013 6 Seattle Seahawks Tennessee Titans Seattle Seahawks Tennessee Titans 20 13 42 1 0.82 FALSE -0.656363636363636 0 26.1666666666667 15.6666666666667 21.3333333333333 19.1666666666667
3427 2013 6 Buffalo Bills Cincinnati Bengals Cincinnati Bengals Buffalo Bills 27 24 41.5 1 0.53 TRUE 0.0118181818181819 0 22.6666666666667 26.1666666666667 20.1666666666667 18.5
3430 2013 6 Dallas Cowboys Washington Redskins Dallas Cowboys Washington Redskins 31 16 53 1 0.84 FALSE -0.694545454545454 1 30.5 25.3333333333333 21.4 28.6
3433 2013 6 Tampa Bay Buccaneers Philadelphia Eagles Philadelphia Eagles Tampa Bay Buccaneers 31 20 45 1 0.57 TRUE 0.0881818181818181 0 12.8 20.2 27.6666666666667 29.8333333333333
3436 2013 6 New York Jets Pittsburgh Steelers Pittsburgh Steelers New York Jets 19 6 41 1 0.55 FALSE -0.140909090909091 0 17.3333333333333 22.5 17.6 23.2
3439 2013 6 New England Patriots New Orleans Saints New England Patriots New Orleans Saints 30 27 51 1 0.78 TRUE 0.489090909090909 0 20.8333333333333 16.1666666666667 26.8333333333333 17.1666666666667
3442 2013 6 San Francisco 49ers Arizona Cardinals San Francisco 49ers Arizona Cardinals 32 20 40.5 1 0.61 TRUE 0.164545454545455 0 24.1666666666667 19.6666666666667 18.5 21.1666666666667
3445 2013 6 San Diego Chargers Indianapolis Colts San Diego Chargers Indianapolis Colts 19 9 51 1 0.85 FALSE -0.713636363636364 1 24 23 24.6666666666667 16.3333333333333
3448 2013 7 Arizona Cardinals Seattle Seahawks Seattle Seahawks Arizona Cardinals 34 22 41 1 0.65 TRUE 0.240909090909091 1 19 23 27.2857142857143 16.5714285714286
3451 2013 7 Pittsburgh Steelers Baltimore Ravens Pittsburgh Steelers Baltimore Ravens 19 16 41 1 0.5 FALSE -0.0454545454545454 0 17.8333333333333 22 21.4285714285714 21.1428571428571
3454 2013 7 Atlanta Falcons Tampa Bay Buccaneers Atlanta Falcons Tampa Bay Buccaneers 31 23 43 1 0.66 TRUE 0.26 0 25.5 26.1666666666667 14.5 22
3457 2013 7 Carolina Panthers St. Louis Rams Carolina Panthers St. Louis Rams 30 15 42.5 1 0.78 TRUE 0.489090909090909 0 23.1666666666667 13.8333333333333 22.2857142857143 26.2857142857143
3460 2013 7 Green Bay Packers Cleveland Browns Green Bay Packers Cleveland Browns 31 13 45.5 1 0.59 FALSE -0.217272727272727 0 28 21.1666666666667 18.7142857142857 22.2857142857143
3463 2013 7 Philadelphia Eagles Dallas Cowboys Dallas Cowboys Philadelphia Eagles 17 3 55.5 1 0.82 FALSE -0.656363636363636 0 24.1428571428571 28 28.5714285714286 22.1428571428571
3466 2013 7 Detroit Lions Cincinnati Bengals Cincinnati Bengals Detroit Lions 27 24 46.5 1 0.88 TRUE 0.68 0 26.5714285714286 23.8571428571429 21.1428571428571 19.2857142857143
3469 2013 7 Jacksonville Jaguars San Diego Chargers San Diego Chargers Jacksonville Jaguars 24 6 45 1 0.69 FALSE -0.408181818181818 0 10.8571428571429 31.7142857142857 24 20.5714285714286
3472 2013 7 Indianapolis Colts Denver Broncos Indianapolis Colts Denver Broncos 39 33 56 1 0.92 TRUE 0.756363636363637 1 26.7142857142857 18.7142857142857 42.5714285714286 28.1428571428571
3475 2013 7 Washington Redskins Chicago Bears Washington Redskins Chicago Bears 45 41 48.5 1 0.51 TRUE -0.0263636363636363 0 25.3333333333333 30.6666666666667 30.4285714285714 29.4285714285714
3478 2013 7 Kansas City Chiefs Houston Texans Kansas City Chiefs Houston Texans 17 16 39 1 0.57 FALSE -0.179090909090909 0 24.1428571428571 11.5714285714286 17.4285714285714 27.7142857142857
3481 2013 7 New York Jets New England Patriots New York Jets New England Patriots 30 27 43 1 0.63 TRUE 0.202727272727273 0 19.1428571428571 23.1428571428571 21.7142857142857 18.1428571428571
3484 2013 7 Miami Dolphins Buffalo Bills Buffalo Bills Miami Dolphins 23 21 44 1 0.64 FALSE -0.312727272727273 0 22.5 23.3333333333333 22.7142857142857 25.4285714285714
3487 2013 7 Tennessee Titans San Francisco 49ers San Francisco 49ers Tennessee Titans 31 17 41 1 0.76 TRUE 0.450909090909091 0 20.7142857142857 20.8571428571429 25.1428571428571 19.2857142857143
3490 2013 7 New York Giants Minnesota Vikings New York Giants Minnesota Vikings 23 7 48 1 0.74 FALSE -0.503636363636364 1 18 30.8571428571429 22 30.1666666666667
3493 2013 8 Tampa Bay Buccaneers Carolina Panthers Carolina Panthers Tampa Bay Buccaneers 31 13 39.5 1 0.73 TRUE 0.393636363636364 1 14.2857142857143 23.2857142857143 24.2857142857143 13.7142857142857
3496 2013 8 Minnesota Vikings Green Bay Packers Green Bay Packers Minnesota Vikings 44 31 47.5 1 0.64 TRUE 0.221818181818182 1 23.2857142857143 32.1428571428571 30.2857142857143 22.5714285714286
3499 2013 8 Arizona Cardinals Atlanta Falcons Arizona Cardinals Atlanta Falcons 27 13 45 1 0.66 FALSE -0.350909090909091 0 20 21.75 23.7142857142857 26.2857142857143
3502 2013 8 New England Patriots Miami Dolphins New England Patriots Miami Dolphins 27 17 46 1 0.77 FALSE -0.560909090909091 0 22.375 18 21.7142857142857 23.8571428571429
3505 2013 8 Oakland Raiders Pittsburgh Steelers Oakland Raiders Pittsburgh Steelers 21 18 40 0 0.6 TRUE 0.145454545454546 0 18 21.4285714285714 17.8571428571429 21.8571428571429
3508 2013 8 Jacksonville Jaguars San Francisco 49ers San Francisco 49ers Jacksonville Jaguars 42 10 40 1 0.87 TRUE 0.660909090909091 0 10.75 33 27.25 18.125
3511 2013 8 Denver Broncos Washington Redskins Denver Broncos Washington Redskins 45 21 59 1 0.88 TRUE 0.68 0 42.875 27.25 24.7142857142857 32.7142857142857
3514 2013 8 New Orleans Saints Buffalo Bills New Orleans Saints Buffalo Bills 35 17 48.5 1 0.84 TRUE 0.603636363636364 0 28 17.1428571428571 22 26.625
3517 2013 8 Philadelphia Eagles New York Giants New York Giants Philadelphia Eagles 15 7 50 1 0.62 FALSE -0.274545454545455 0 22 26.375 17.625 27.875
3520 2013 8 Detroit Lions Dallas Cowboys Detroit Lions Dallas Cowboys 31 30 52 1 0.91 TRUE 0.737272727272727 0 27.125 24.625 28.75 23.25
3523 2013 8 Cincinnati Bengals New York Jets Cincinnati Bengals New York Jets 49 9 41 1 0.64 TRUE 0.221818181818182 0 24.625 18 17.875 26.375
3526 2013 8 Kansas City Chiefs Cleveland Browns Kansas City Chiefs Cleveland Browns 23 17 39 0 0.63 FALSE -0.293636363636364 0 24 12.25 18.5 22.375
3529 2013 8 St. Louis Rams Seattle Seahawks Seattle Seahawks St. Louis Rams 14 9 43.5 1 0.7 FALSE -0.427272727272727 1 20.625 24.75 25.625 15.625
3532 2013 9 Miami Dolphins Cincinnati Bengals Miami Dolphins Cincinnati Bengals 22 20 42.5 1 0.86 FALSE -0.732727272727273 1 21.75 23.375 24.1111111111111 18.4444444444444
3535 2013 9 Houston Texans Indianapolis Colts Indianapolis Colts Houston Texans 27 24 43 1 0.81 TRUE 0.546363636363637 1 18.25 27.625 26.75 19.375
3538 2013 9 Carolina Panthers Atlanta Falcons Carolina Panthers Atlanta Falcons 34 10 47 1 0.79 FALSE -0.599090909090909 0 25.5 13.25 22 27.25
3541 2013 9 St. Louis Rams Tennessee Titans Tennessee Titans St. Louis Rams 28 21 41 0 0.61 FALSE -0.255454545454545 0 20.6666666666667 25.1111111111111 21.625 20.875
3544 2013 9 New York Jets New Orleans Saints New York Jets New Orleans Saints 26 20 46 1 0.78 FALSE -0.58 0 18.7777777777778 25.6666666666667 27 18.25
3547 2013 9 Washington Redskins San Diego Chargers Washington Redskins San Diego Chargers 30 24 49.5 1 0.84 TRUE 0.603636363636364 0 25.375 31.625 24 21.75
3550 2013 9 Dallas Cowboys Minnesota Vikings Dallas Cowboys Minnesota Vikings 27 23 51.5 1 0.81 FALSE -0.637272727272727 0 28.5555555555556 23.2222222222222 23.25 31.5
3553 2013 9 Cleveland Browns Baltimore Ravens Cleveland Browns Baltimore Ravens 24 18 42 0 0.71 TRUE 0.355454545454545 0 19.1111111111111 21.8888888888889 21 21.5
3556 2013 9 Oakland Raiders Philadelphia Eagles Philadelphia Eagles Oakland Raiders 49 20 45.5 1 0.54 TRUE 0.030909090909091 0 18.25 24.875 25 25.6666666666667
3559 2013 9 Buffalo Bills Kansas City Chiefs Kansas City Chiefs Buffalo Bills 23 13 41 1 0.56 FALSE -0.16 0 21 26.2222222222222 23.8888888888889 12.3333333333333
3562 2013 9 New England Patriots Pittsburgh Steelers New England Patriots Pittsburgh Steelers 55 31 42.5 1 0.7 TRUE 0.336363636363636 0 26 19.4444444444444 19.5 26
3565 2013 9 Seattle Seahawks Tampa Bay Buccaneers Seattle Seahawks Tampa Bay Buccaneers 27 24 40.5 1 0.74 TRUE 0.412727272727273 0 25.7777777777778 16.5555555555556 15.5 23.75
3568 2013 9 Green Bay Packers Chicago Bears Chicago Bears Green Bay Packers 27 20 51 1 0.64 FALSE -0.312727272727273 1 29 23.125 30 28.25
3571 2013 10 Minnesota Vikings Washington Redskins Minnesota Vikings Washington Redskins 34 27 48.5 1 0.8 TRUE 0.527272727272727 1 24.4444444444444 31 25.5555555555556 31.8888888888889
3574 2013 10 San Francisco 49ers Carolina Panthers Carolina Panthers San Francisco 49ers 10 9 43.5 1 0.86 FALSE -0.732727272727273 0 25.2222222222222 17.2222222222222 23.7777777777778 12.7777777777778
3577 2013 10 Tennessee Titans Jacksonville Jaguars Jacksonville Jaguars Tennessee Titans 29 27 42 1 0.62 TRUE 0.183636363636364 0 22.2222222222222 21.7777777777778 12.7777777777778 32.3333333333333
3580 2013 10 Arizona Cardinals Houston Texans Arizona Cardinals Houston Texans 27 24 42 1 0.74 TRUE 0.412727272727273 0 20.7777777777778 22 18.8888888888889 27.5555555555556
3583 2013 10 San Diego Chargers Denver Broncos Denver Broncos San Diego Chargers 28 20 57.5 1 0.89 FALSE -0.79 0 23.5555555555556 22.4444444444444 41.2222222222222 26.4444444444444
3586 2013 10 Green Bay Packers Philadelphia Eagles Philadelphia Eagles Green Bay Packers 27 13 47 1 0.69 FALSE -0.408181818181818 0 27.2222222222222 23.5555555555556 25.2 24.4
3589 2013 10 Chicago Bears Detroit Lions Detroit Lions Chicago Bears 21 19 52.5 1 0.83 FALSE -0.675454545454545 0 28.7777777777778 27.4444444444444 26.4444444444444 24
3592 2013 10 New York Giants Oakland Raiders New York Giants Oakland Raiders 24 20 41.5 1 0.82 TRUE 0.565454545454545 0 18.3333333333333 27 18.4444444444444 24.7777777777778
3595 2013 10 Indianapolis Colts St. Louis Rams St. Louis Rams Indianapolis Colts 38 8 43.5 1 0.83 TRUE 0.584545454545454 0 24.6666666666667 21.4444444444444 22.4 23.4
3598 2013 10 Atlanta Falcons Seattle Seahawks Seattle Seahawks Atlanta Falcons 33 10 46.5 1 0.66 FALSE -0.350909090909091 0 20.6666666666667 27.8888888888889 26.5 15.9
3601 2013 10 New Orleans Saints Dallas Cowboys New Orleans Saints Dallas Cowboys 49 17 55 1 0.93 TRUE 0.775454545454546 1 29.4444444444444 18.1111111111111 27.4 25.8
3604 2013 10 Pittsburgh Steelers Buffalo Bills Pittsburgh Steelers Buffalo Bills 23 10 43 1 0.67 FALSE -0.37 0 19.8888888888889 24.2222222222222 19.9 25.9
3607 2013 10 Baltimore Ravens Cincinnati Bengals Baltimore Ravens Cincinnati Bengals 20 17 44 0 0.51 TRUE -0.0263636363636363 0 20.8888888888889 21 23.4 18.6
3610 2013 10 Tampa Bay Buccaneers Miami Dolphins Tampa Bay Buccaneers Miami Dolphins 22 19 40 1 0.7 TRUE 0.336363636363636 1 16.2222222222222 23.2222222222222 21.4444444444444 23.2222222222222
3613 2013 11 Tennessee Titans Indianapolis Colts Indianapolis Colts Tennessee Titans 30 27 42.5 1 0.86 TRUE 0.641818181818182 1 22.7 22.6 25.2 22
3616 2013 11 New York Giants Green Bay Packers New York Giants Green Bay Packers 27 13 41.5 1 0.83 FALSE -0.675454545454545 0 19.2 25.6 25.8 23.9
3619 2013 11 Tampa Bay Buccaneers Atlanta Falcons Tampa Bay Buccaneers Atlanta Falcons 41 28 43.5 1 0.72 TRUE 0.374545454545455 0 18.7 23.7 21.4 29.2
3622 2013 11 New Orleans Saints San Francisco 49ers New Orleans Saints San Francisco 49ers 23 20 50 1 0.86 FALSE -0.732727272727273 0 28.8 18.3 24.7 17.8
3625 2013 11 Pittsburgh Steelers Detroit Lions Pittsburgh Steelers Detroit Lions 37 27 45.5 1 0.67 TRUE 0.279090909090909 0 21.6 24.5 26.5 25.3
3628 2013 11 Chicago Bears Baltimore Ravens Chicago Bears Baltimore Ravens 23 20 40 0 0.67 FALSE -0.37 0 28.2 26.7 20.8 21.2
3631 2013 11 Houston Texans Oakland Raiders Oakland Raiders Houston Texans 28 23 41 1 0.85 TRUE 0.622727272727273 0 19.3 27.6 19.4 24.6
3634 2013 11 Miami Dolphins San Diego Chargers Miami Dolphins San Diego Chargers 20 16 45 1 0.7 FALSE -0.427272727272727 0 21.3 22.5 22.8 22.2
3637 2013 11 Denver Broncos Kansas City Chiefs Denver Broncos Kansas City Chiefs 27 17 49 1 0.57 FALSE -0.179090909090909 1 39.8 25.5 23.2 13.8
3640 2013 11 Jacksonville Jaguars Arizona Cardinals Arizona Cardinals Jacksonville Jaguars 27 14 40.5 1 0.76 TRUE 0.450909090909091 0 12.9 31.8 21.4 21.2
3643 2013 11 Seattle Seahawks Minnesota Vikings Seattle Seahawks Minnesota Vikings 41 20 45.5 1 0.78 TRUE 0.489090909090909 0 27.8181818181818 16.2727272727273 24 32
3646 2013 11 Cincinnati Bengals Cleveland Browns Cincinnati Bengals Cleveland Browns 41 20 40 0 0.57 FALSE -0.179090909090909 0 25 18.7272727272727 19.2 23.8
3649 2013 11 Buffalo Bills New York Jets Buffalo Bills New York Jets 37 14 39 0 0.54 FALSE -0.121818181818182 0 21.4545454545455 24.8181818181818 18.3 26.8
3652 2013 11 Philadelphia Eagles Washington Redskins Philadelphia Eagles Washington Redskins 24 16 55 1 0.87 FALSE -0.751818181818182 0 25.0909090909091 23.6363636363636 24.6 31.1
3655 2013 11 Carolina Panthers New England Patriots Carolina Panthers New England Patriots 24 20 46.5 1 0.69 FALSE -0.408181818181818 1 23.8 13.5 25.4 19.9
3658 2013 12 Atlanta Falcons New Orleans Saints New Orleans Saints Atlanta Falcons 17 13 53 1 0.75 FALSE -0.522727272727273 1 20.6363636363636 28.0909090909091 27.7272727272727 17.8181818181818
3661 2013 12 Miami Dolphins Carolina Panthers Carolina Panthers Miami Dolphins 20 16 40.5 1 0.75 FALSE -0.522727272727273 0 20.8181818181818 22.2727272727273 23.4545454545455 13.7272727272727
3664 2013 12 St. Louis Rams Chicago Bears St. Louis Rams Chicago Bears 42 21 46 1 0.64 TRUE 0.221818181818182 0 24.1818181818182 23.1818181818182 27.5454545454545 28.0909090909091
3667 2013 12 Arizona Cardinals Indianapolis Colts Arizona Cardinals Indianapolis Colts 40 11 45 1 0.83 TRUE 0.584545454545454 0 23.0909090909091 20.2727272727273 23.9090909090909 23.6363636363636
3670 2013 12 Green Bay Packers Minnesota Vikings Minnesota Vikings Green Bay Packers 26 26 44 1 0.57 TRUE 0.0881818181818181 0 25.8181818181818 24.0909090909091 24.1818181818182 31.4545454545455
3673 2013 12 Houston Texans Jacksonville Jaguars Jacksonville Jaguars Houston Texans 13 6 43.5 1 0.83 FALSE -0.675454545454545 0 18.0909090909091 26.2727272727273 12.9090909090909 29.4545454545455
3676 2013 12 Kansas City Chiefs San Diego Chargers San Diego Chargers Kansas City Chiefs 41 38 43.5 0 0.52 FALSE -0.0836363636363636 0 24.5454545454545 16.2727272727273 24.4545454545455 23.6363636363636
3679 2013 12 Baltimore Ravens New York Jets Baltimore Ravens New York Jets 19 3 38.5 1 0.54 FALSE -0.121818181818182 0 20.6363636363636 19.5454545454545 16.9090909090909 26.0909090909091
3682 2013 12 Cleveland Browns Pittsburgh Steelers Pittsburgh Steelers Cleveland Browns 27 11 40 1 0.52 FALSE -0.0836363636363636 0 18.4545454545455 24.0909090909091 22.0909090909091 23.2727272727273
3685 2013 12 Detroit Lions Tampa Bay Buccaneers Tampa Bay Buccaneers Detroit Lions 24 21 49 1 0.85 FALSE -0.713636363636364 0 26 25.1818181818182 19.1818181818182 23.4545454545455
3688 2013 12 Oakland Raiders Tennessee Titans Tennessee Titans Oakland Raiders 23 19 42 1 0.82 FALSE -0.656363636363636 0 19.3636363636364 24.4545454545455 22.7272727272727 22.2727272727273
3691 2013 12 New York Giants Dallas Cowboys Dallas Cowboys New York Giants 24 21 45 1 0.89 FALSE -0.79 0 19.3636363636364 25.4545454545455 27.0909090909091 25.3636363636364
3694 2013 12 New England Patriots Denver Broncos New England Patriots Denver Broncos 34 31 54 1 0.82 TRUE 0.565454545454545 1 26.1818181818182 20.9090909090909 39 26.2727272727273
3697 2013 12 Washington Redskins San Francisco 49ers San Francisco 49ers Washington Redskins 27 6 45.5 1 0.61 FALSE -0.255454545454545 1 22.9090909090909 30.7272727272727 24.9090909090909 16.7272727272727
3700 2013 13 Baltimore Ravens Pittsburgh Steelers Baltimore Ravens Pittsburgh Steelers 22 20 40.5 1 0.51 TRUE -0.0263636363636363 1 20.75 19.5833333333333 21.9166666666667 23.1666666666667
3703 2013 13 Dallas Cowboys Oakland Raiders Dallas Cowboys Oakland Raiders 31 24 49.5 1 0.84 TRUE 0.603636363636364 1 27.4166666666667 25.25 19.75 25
3706 2013 13 Detroit Lions Green Bay Packers Detroit Lions Green Bay Packers 40 10 49 1 0.8 TRUE 0.527272727272727 1 27.1666666666667 23.9166666666667 24.5 25.4166666666667
3709 2013 13 Indianapolis Colts Tennessee Titans Indianapolis Colts Tennessee Titans 22 14 46.5 1 0.82 FALSE -0.656363636363636 0 23.75 22.8333333333333 22 22.25
3712 2013 13 Kansas City Chiefs Denver Broncos Denver Broncos Kansas City Chiefs 35 28 50 1 0.8 TRUE 0.527272727272727 0 24.8333333333333 17.8333333333333 38.6666666666667 26.4166666666667
3715 2013 13 New York Jets Miami Dolphins Miami Dolphins New York Jets 23 3 40 1 0.5 FALSE -0.0454545454545454 0 15.75 25.8333333333333 21 20.6666666666667
3718 2013 13 Washington Redskins New York Giants New York Giants Washington Redskins 24 17 45 1 0.77 FALSE -0.560909090909091 1 22.4166666666667 30.1666666666667 19.75 24.75
3721 2013 13 Cleveland Browns Jacksonville Jaguars Jacksonville Jaguars Cleveland Browns 32 28 39.5 0 0.56 FALSE -0.16 0 19.25 24.75 14.5 29.3333333333333
3724 2013 13 San Francisco 49ers St. Louis Rams San Francisco 49ers St. Louis Rams 23 13 40.5 1 0.78 FALSE -0.58 0 24.75 16.4166666666667 23.25 23.1666666666667
3727 2013 13 Houston Texans New England Patriots New England Patriots Houston Texans 34 31 49 1 0.84 TRUE 0.603636363636364 0 19.1666666666667 26.9166666666667 26.8333333333333 21.75
3730 2013 13 Carolina Panthers Tampa Bay Buccaneers Carolina Panthers Tampa Bay Buccaneers 27 6 41 1 0.77 FALSE -0.560909090909091 0 23.75 13.0833333333333 18.0833333333333 23.75
3733 2013 13 Philadelphia Eagles Arizona Cardinals Philadelphia Eagles Arizona Cardinals 24 21 48.5 1 0.66 FALSE -0.350909090909091 0 25 23.4166666666667 22.9166666666667 20.5833333333333
3736 2013 13 Minnesota Vikings Chicago Bears Minnesota Vikings Chicago Bears 23 20 50 1 0.74 FALSE -0.503636363636364 0 24.0833333333333 30.5 26.9166666666667 27.6666666666667
3739 2013 13 San Diego Chargers Cincinnati Bengals Cincinnati Bengals San Diego Chargers 17 10 48.5 1 0.86 FALSE -0.732727272727273 0 23.25 23.0833333333333 24.3333333333333 18
3742 2013 13 Buffalo Bills Atlanta Falcons Atlanta Falcons Buffalo Bills 34 31 48 1 0.56 TRUE 0.0690909090909093 0 22.25 25.5833333333333 21.75 28.3333333333333
3745 2013 13 Seattle Seahawks New Orleans Saints Seattle Seahawks New Orleans Saints 34 7 48.5 1 0.8 FALSE -0.618181818181818 1 28.3333333333333 15.5 26 19.1666666666667
3748 2013 14 Jacksonville Jaguars Houston Texans Jacksonville Jaguars Houston Texans 27 20 43.5 1 0.77 TRUE 0.47 1 15.4615384615385 28.6153846153846 19.2307692307692 26.9230769230769
3751 2013 14 Green Bay Packers Atlanta Falcons Green Bay Packers Atlanta Falcons 22 21 47 0 0.6 TRUE 0.145454545454546 0 24.3076923076923 25.0769230769231 21.6923076923077 27.8461538461538
3754 2013 14 Cincinnati Bengals Indianapolis Colts Cincinnati Bengals Indianapolis Colts 42 28 43.5 1 0.69 TRUE 0.317272727272727 0 25.6923076923077 18.7692307692308 24.0769230769231 24.3076923076923
3757 2013 14 Baltimore Ravens Minnesota Vikings Baltimore Ravens Minnesota Vikings 29 26 41.5 1 0.58 TRUE 0.107272727272727 0 21.3846153846154 20.0769230769231 24.2307692307692 30.3846153846154
3760 2013 14 Tampa Bay Buccaneers Buffalo Bills Tampa Bay Buccaneers Buffalo Bills 27 6 43 1 0.83 FALSE -0.675454545454545 0 18.7692307692308 22.3846153846154 21 25.6923076923077
3763 2013 14 New Orleans Saints Carolina Panthers New Orleans Saints Carolina Panthers 31 13 47.5 1 0.84 FALSE -0.694545454545454 1 26.3846153846154 18.6923076923077 22.9230769230769 14.4615384615385
3766 2013 14 Arizona Cardinals St. Louis Rams Arizona Cardinals St. Louis Rams 30 10 41 1 0.73 FALSE -0.484545454545455 0 23.4615384615385 19.7692307692308 22.2307692307692 23.6923076923077
3769 2013 14 Denver Broncos Tennessee Titans Denver Broncos Tennessee Titans 51 28 50 1 0.8 TRUE 0.527272727272727 0 39.6153846153846 26.5384615384615 22.4615384615385 24.4615384615385
3772 2013 14 New York Jets Oakland Raiders New York Jets Oakland Raiders 37 27 39 0 0.68 FALSE -0.389090909090909 0 17.3846153846154 25.9230769230769 20.3076923076923 25.9230769230769
3775 2013 14 Philadelphia Eagles Detroit Lions Philadelphia Eagles Detroit Lions 34 20 51 1 0.56 TRUE 0.0690909090909093 0 25.6923076923077 23.1538461538462 26.6153846153846 24.6923076923077
3778 2013 14 Washington Redskins Kansas City Chiefs Kansas City Chiefs Washington Redskins 45 10 44 1 0.57 TRUE 0.0881818181818181 0 21.4615384615385 31.3076923076923 26.3846153846154 17.2307692307692
3781 2013 14 New England Patriots Cleveland Browns New England Patriots Cleveland Browns 27 26 47.5 1 0.66 TRUE 0.26 0 26.8461538461538 22.0769230769231 19.7692307692308 24.9230769230769
3784 2013 14 San Francisco 49ers Seattle Seahawks San Francisco 49ers Seattle Seahawks 19 17 41.5 1 0.71 FALSE -0.446363636363636 0 24.3076923076923 16.4615384615385 27.4615384615385 15.7692307692308
3787 2013 14 San Diego Chargers New York Giants San Diego Chargers New York Giants 37 14 47 1 0.82 TRUE 0.565454545454545 0 24.3076923076923 22.3846153846154 19.3076923076923 25.6923076923077
3790 2013 14 Pittsburgh Steelers Miami Dolphins Miami Dolphins Pittsburgh Steelers 34 28 40.5 0 0.61 FALSE -0.255454545454545 0 22.3846153846154 24 22 21.2307692307692
3793 2013 14 Chicago Bears Dallas Cowboys Chicago Bears Dallas Cowboys 45 28 49 1 0.56 TRUE 0.0690909090909093 1 28.3076923076923 27.6923076923077 27.4615384615385 26.7692307692308
3796 2013 15 Denver Broncos San Diego Chargers San Diego Chargers Denver Broncos 27 20 57.5 1 0.91 FALSE -0.828181818181818 1 38.2142857142857 26.5714285714286 24.5 22.2142857142857
3799 2013 15 Pittsburgh Steelers Cincinnati Bengals Pittsburgh Steelers Cincinnati Bengals 30 20 44.5 1 0.85 TRUE 0.622727272727273 1 22.9285714285714 23.7142857142857 25.2857142857143 19.5714285714286
3802 2013 15 St. Louis Rams New Orleans Saints St. Louis Rams New Orleans Saints 27 16 48 1 0.88 FALSE -0.770909090909091 0 22.5714285714286 23.1428571428571 25.6428571428571 19.2857142857143
3805 2013 15 Carolina Panthers New York Jets Carolina Panthers New York Jets 30 20 40.5 1 0.66 TRUE 0.26 0 23.4285714285714 14.8571428571429 17.5714285714286 26.2142857142857
3808 2013 15 Cleveland Browns Chicago Bears Chicago Bears Cleveland Browns 38 31 44 1 0.78 TRUE 0.489090909090909 0 20.5714285714286 25.8571428571429 29 27.9285714285714
3811 2013 15 New York Giants Seattle Seahawks Seattle Seahawks New York Giants 23 0 43 1 0.84 FALSE -0.694545454545454 0 17.9285714285714 25.5 27.1428571428571 14.6428571428571
3814 2013 15 Dallas Cowboys Green Bay Packers Green Bay Packers Dallas Cowboys 37 36 50 1 0.82 TRUE 0.565454545454545 0 28.0714285714286 27.5 25.2142857142857 25.8571428571429
3817 2013 15 Jacksonville Jaguars Buffalo Bills Buffalo Bills Jacksonville Jaguars 27 20 43.5 1 0.83 TRUE 0.584545454545454 0 15.7857142857143 28.5 21.4285714285714 25.2857142857143
3820 2013 15 Minnesota Vikings Philadelphia Eagles Minnesota Vikings Philadelphia Eagles 48 30 53 1 0.74 TRUE 0.412727272727273 0 25.9285714285714 30.3571428571429 26 24.9285714285714
3823 2013 15 Tennessee Titans Arizona Cardinals Arizona Cardinals Tennessee Titans 37 34 43 1 0.89 TRUE 0.699090909090909 0 23.2857142857143 25.3571428571429 24.4285714285714 20.7857142857143
3826 2013 15 Oakland Raiders Kansas City Chiefs Kansas City Chiefs Oakland Raiders 56 31 44.5 1 0.87 TRUE 0.660909090909091 0 21.0714285714286 28.0714285714286 28.5 18.2142857142857
3829 2013 15 Miami Dolphins New England Patriots Miami Dolphins New England Patriots 24 20 47 1 0.8 FALSE -0.618181818181818 0 22.1428571428571 21.1428571428571 26.3571428571429 22.2142857142857
3832 2013 15 Atlanta Falcons Washington Redskins Atlanta Falcons Washington Redskins 27 26 49.5 1 0.6 TRUE 0.145454545454546 0 22.0714285714286 27.7142857142857 21.7857142857143 31
3835 2013 15 Tampa Bay Buccaneers San Francisco 49ers San Francisco 49ers Tampa Bay Buccaneers 33 14 41 1 0.77 TRUE 0.47 0 18.4285714285714 23.1428571428571 24.9285714285714 16.2857142857143
3838 2013 15 Indianapolis Colts Houston Texans Indianapolis Colts Houston Texans 25 3 47 1 0.69 FALSE -0.408181818181818 0 24.1428571428571 22.7857142857143 18.0714285714286 26.7857142857143
3841 2013 15 Detroit Lions Baltimore Ravens Baltimore Ravens Detroit Lions 18 16 49.5 1 0.8 FALSE -0.618181818181818 1 25.8571428571429 24.2142857142857 21.1428571428571 19.7857142857143
3844 2013 16 Kansas City Chiefs Indianapolis Colts Indianapolis Colts Kansas City Chiefs 23 7 47 1 0.73 FALSE -0.484545454545455 0 27.0666666666667 18.5333333333333 24.0666666666667 21.7333333333333
3847 2013 16 Philadelphia Eagles Chicago Bears Philadelphia Eagles Chicago Bears 54 11 54 1 0.64 TRUE 0.221818181818182 1 27.8666666666667 24 27.8 29.6666666666667
3850 2013 16 Cincinnati Bengals Minnesota Vikings Cincinnati Bengals Minnesota Vikings 42 14 48 1 0.63 TRUE 0.202727272727273 0 26.4 19.2 25.1333333333333 31.1333333333333
3853 2013 16 Green Bay Packers Pittsburgh Steelers Pittsburgh Steelers Green Bay Packers 38 31 44 1 0.59 TRUE 0.126363636363636 0 25.6 26.6666666666667 23.9333333333333 24.2
3856 2013 16 New York Jets Cleveland Browns New York Jets Cleveland Browns 24 13 41.5 1 0.51 FALSE -0.0645454545454546 0 18 25.3333333333333 20.0666666666667 25.7333333333333
3859 2013 16 Jacksonville Jaguars Tennessee Titans Tennessee Titans Jacksonville Jaguars 20 16 44 1 0.57 FALSE -0.179090909090909 0 15.8 27.9333333333333 23.0666666666667 24.7333333333333
3862 2013 16 Buffalo Bills Miami Dolphins Buffalo Bills Miami Dolphins 19 0 42 1 0.55 FALSE -0.140909090909091 0 21.2666666666667 23.6 20.6666666666667 21
3865 2013 16 Baltimore Ravens New England Patriots New England Patriots Baltimore Ravens 41 7 45.5 1 0.56 TRUE 0.0690909090909093 0 20.2 21.2 27.3333333333333 21.2
3868 2013 16 St. Louis Rams Tampa Bay Buccaneers St. Louis Rams Tampa Bay Buccaneers 23 13 43 1 0.59 FALSE -0.217272727272727 0 22.6 22.4666666666667 18.0666666666667 23.1333333333333
3871 2013 16 Washington Redskins Dallas Cowboys Dallas Cowboys Washington Redskins 24 23 52 1 0.71 FALSE -0.446363636363636 0 21.8666666666667 30.5333333333333 27.8 27.2
3874 2013 16 Houston Texans Denver Broncos Denver Broncos Houston Texans 37 13 54 1 0.8 FALSE -0.618181818181818 0 17.7333333333333 27.4666666666667 38.1333333333333 25.6666666666667
3877 2013 16 San Diego Chargers Oakland Raiders San Diego Chargers Oakland Raiders 26 13 50.5 1 0.63 FALSE -0.293636363636364 0 24.6 21.6 20.5333333333333 27.9333333333333
3880 2013 16 Seattle Seahawks Arizona Cardinals Arizona Cardinals Seattle Seahawks 17 10 43 1 0.59 FALSE -0.217272727272727 0 26 14.8 23.9333333333333 20.0666666666667
3883 2013 16 Carolina Panthers New Orleans Saints Carolina Panthers New Orleans Saints 17 13 44.5 1 0.67 FALSE -0.37 0 23 14.7333333333333 24.8 19.1333333333333
3886 2013 16 Detroit Lions New York Giants New York Giants Detroit Lions 23 20 47.5 1 0.67 FALSE -0.37 0 25.4666666666667 24.1333333333333 18.2666666666667 25.1333333333333
3889 2013 16 San Francisco 49ers Atlanta Falcons San Francisco 49ers Atlanta Falcons 34 24 46.5 1 0.63 TRUE 0.202727272727273 1 25.5333333333333 16.8 22.2 28.1333333333333
3892 2013 17 Seattle Seahawks St. Louis Rams Seattle Seahawks St. Louis Rams 27 9 41 0 0.59 TRUE 0.126363636363636 0 26.0625 14.4375 21.75 22.75
3895 2013 17 Tennessee Titans Houston Texans Tennessee Titans Houston Texans 16 10 44.5 1 0.68 FALSE -0.389090909090909 0 22.625 23.8125 17.25 26.75
3898 2013 17 Indianapolis Colts Jacksonville Jaguars Indianapolis Colts Jacksonville Jaguars 30 10 45 1 0.56 FALSE -0.16 0 24.4375 21 15.4375 28.0625
3901 2013 17 Miami Dolphins New York Jets New York Jets Miami Dolphins 20 7 41 0 0.51 TRUE -0.0263636363636363 0 19.8125 20.9375 18.125 24.1875
3904 2013 17 Minnesota Vikings Detroit Lions Minnesota Vikings Detroit Lions 14 13 50 1 0.76 FALSE -0.541818181818182 0 24.4375 30 24.6875 23.5
3907 2013 17 New York Giants Washington Redskins New York Giants Washington Redskins 20 6 44.5 1 0.78 FALSE -0.58 0 18.375 23.9375 20.875 29.875
3910 2013 17 Chicago Bears Green Bay Packers Green Bay Packers Chicago Bears 33 28 51.5 1 0.77 TRUE 0.47 0 27.8125 29.875 26.0625 26.75
3913 2013 17 New Orleans Saints Tampa Bay Buccaneers New Orleans Saints Tampa Bay Buccaneers 42 17 46.5 1 0.8 TRUE 0.527272727272727 0 25.875 19 18 24.3125
3916 2013 17 Atlanta Falcons Carolina Panthers Carolina Panthers Atlanta Falcons 21 20 46 1 0.62 FALSE -0.274545454545455 0 22.0625 27.6875 22.875 15.0625
3919 2013 17 New England Patriots Buffalo Bills New England Patriots Buffalo Bills 34 20 46.5 1 0.61 TRUE 0.164545454545455 0 27.75 21.125 21.1875 24.25
3922 2013 17 Oakland Raiders Denver Broncos Denver Broncos Oakland Raiders 34 14 54 1 0.83 FALSE -0.675454545454545 0 20.125 28.3125 37.875 24.9375
3925 2013 17 Cincinnati Bengals Baltimore Ravens Cincinnati Bengals Baltimore Ravens 34 17 43 1 0.61 TRUE 0.164545454545455 0 26.875 19.0625 20 22
3928 2013 17 Dallas Cowboys Philadelphia Eagles Philadelphia Eagles Dallas Cowboys 24 22 54.5 1 0.82 FALSE -0.656363636363636 1 27.4375 27 27.625 23.875
3931 2013 17 San Diego Chargers Kansas City Chiefs San Diego Chargers Kansas City Chiefs 27 24 46 1 0.7 TRUE 0.336363636363636 0 24.75 21.75 26.875 19.0625
3934 2013 17 Pittsburgh Steelers Cleveland Browns Pittsburgh Steelers Cleveland Browns 20 7 44.5 1 0.5 FALSE -0.0454545454545454 0 23.6875 23.125 19.25 25.375
3937 2013 17 Arizona Cardinals San Francisco 49ers San Francisco 49ers Arizona Cardinals 23 20 41 1 0.56 TRUE 0.0690909090909093 0 23.6875 20.25 25.375 17
3940 2014 1 Seattle Seahawks Green Bay Packers Seattle Seahawks Green Bay Packers 36 16 47 1 0.63 TRUE 0.202727272727273 1 36 16 16 36
3943 2014 1 Denver Broncos Indianapolis Colts Denver Broncos Indianapolis Colts 31 24 54 1 0.79 TRUE 0.508181818181818 1 31 24 24 31
3946 2014 1 Tampa Bay Buccaneers Carolina Panthers Carolina Panthers Tampa Bay Buccaneers 20 14 38.5 0 0.56 TRUE 0.0690909090909093 0 14 20 20 14
3949 2014 1 Pittsburgh Steelers Cleveland Browns Pittsburgh Steelers Cleveland Browns 30 27 41.5 0 0.57 FALSE -0.179090909090909 0 30 27 27 30
3952 2014 1 New York Jets Oakland Raiders New York Jets Oakland Raiders 19 14 41.5 1 0.62 FALSE -0.274545454545455 0 19 14 14 19
3955 2014 1 Baltimore Ravens Cincinnati Bengals Cincinnati Bengals Baltimore Ravens 23 16 43.5 1 0.56 FALSE -0.16 0 16 23 23 16
3958 2014 1 Miami Dolphins New England Patriots Miami Dolphins New England Patriots 33 20 47.5 1 0.57 TRUE 0.0881818181818181 0 33 20 20 33
3961 2014 1 Houston Texans Washington Redskins Houston Texans Washington Redskins 17 6 44 1 0.55 FALSE -0.140909090909091 0 17 6 6 17
3964 2014 1 Atlanta Falcons New Orleans Saints Atlanta Falcons New Orleans Saints 37 34 51.5 1 0.73 TRUE 0.393636363636364 0 37 34 34 37
3967 2014 1 Dallas Cowboys San Francisco 49ers San Francisco 49ers Dallas Cowboys 28 17 50 1 0.78 FALSE -0.58 0 17 28 28 17
3970 2014 1 Philadelphia Eagles Jacksonville Jaguars Philadelphia Eagles Jacksonville Jaguars 34 17 50 1 0.6 TRUE 0.145454545454546 0 34 17 17 34
3973 2014 1 Kansas City Chiefs Tennessee Titans Tennessee Titans Kansas City Chiefs 26 10 45 1 0.53 FALSE -0.102727272727273 0 10 26 26 10
3976 2014 1 St. Louis Rams Minnesota Vikings Minnesota Vikings St. Louis Rams 34 6 43.5 0 0.6 TRUE 0.145454545454546 0 6 34 34 6
3979 2014 1 Chicago Bears Buffalo Bills Buffalo Bills Chicago Bears 23 20 47.5 1 0.62 FALSE -0.274545454545455 0 20 23 23 20
3982 2014 1 Arizona Cardinals San Diego Chargers Arizona Cardinals San Diego Chargers 18 17 46 1 0.68 FALSE -0.389090909090909 1 18 17 17 18
3985 2014 1 Detroit Lions New York Giants Detroit Lions New York Giants 35 14 46 1 0.76 TRUE 0.450909090909091 1 35 14 14 35
3988 2014 2 Baltimore Ravens Pittsburgh Steelers Baltimore Ravens Pittsburgh Steelers 26 6 44.5 1 0.58 FALSE -0.198181818181818 1 21 14.5 18 26.5
3991 2014 2 San Francisco 49ers Chicago Bears Chicago Bears San Francisco 49ers 28 20 47.5 1 0.65 TRUE 0.240909090909091 1 24 22.5 24 21.5
3994 2014 2 Denver Broncos Kansas City Chiefs Denver Broncos Kansas City Chiefs 24 17 49 1 0.75 FALSE -0.522727272727273 0 27.5 20.5 13.5 25
3997 2014 2 Washington Redskins Jacksonville Jaguars Washington Redskins Jacksonville Jaguars 41 10 43 1 0.57 TRUE 0.0881818181818181 0 23.5 13.5 13.5 37.5
4000 2014 2 Minnesota Vikings New England Patriots New England Patriots Minnesota Vikings 30 7 49 1 0.72 FALSE -0.465454545454545 0 20.5 18 25 20
4003 2014 2 Cleveland Browns New Orleans Saints Cleveland Browns New Orleans Saints 26 24 49.5 1 0.7 TRUE 0.336363636363636 0 26.5 27 29 31.5
4006 2014 2 Oakland Raiders Houston Texans Houston Texans Oakland Raiders 30 14 41 1 0.54 TRUE 0.030909090909091 0 14 24.5 23.5 10
4009 2014 2 New York Giants Arizona Cardinals Arizona Cardinals New York Giants 25 14 41.5 0 0.58 TRUE 0.107272727272727 0 14 30 21.5 15.5
4012 2014 2 Tennessee Titans Dallas Cowboys Dallas Cowboys Tennessee Titans 26 10 49.5 1 0.63 FALSE -0.293636363636364 0 18 18 21.5 19
4015 2014 2 Buffalo Bills Miami Dolphins Buffalo Bills Miami Dolphins 29 10 43 1 0.53 FALSE -0.102727272727273 0 26 15 21.5 24.5
4018 2014 2 Cincinnati Bengals Atlanta Falcons Cincinnati Bengals Atlanta Falcons 24 10 49 1 0.78 FALSE -0.58 0 23.5 13 23.5 29
4021 2014 2 San Diego Chargers Seattle Seahawks San Diego Chargers Seattle Seahawks 30 21 45 1 0.66 TRUE 0.26 0 23.5 19.5 28.5 23
4024 2014 2 Tampa Bay Buccaneers St. Louis Rams St. Louis Rams Tampa Bay Buccaneers 19 17 37.5 0 0.53 TRUE 0.0118181818181819 0 15.5 19.5 12.5 25.5
4027 2014 2 Green Bay Packers New York Jets Green Bay Packers New York Jets 31 24 46.5 1 0.71 TRUE 0.355454545454545 0 23.5 30 21.5 22.5
4030 2014 2 Carolina Panthers Detroit Lions Carolina Panthers Detroit Lions 24 7 43.5 1 0.75 FALSE -0.522727272727273 0 22 10.5 21 19
4033 2014 2 Indianapolis Colts Philadelphia Eagles Philadelphia Eagles Indianapolis Colts 30 27 54 1 0.77 TRUE 0.47 1 25.5 30.5 32 22
4036 2014 3 Atlanta Falcons Tampa Bay Buccaneers Atlanta Falcons Tampa Bay Buccaneers 56 14 47 1 0.66 TRUE 0.26 1 34.3333333333333 24 15 31.6666666666667
4039 2014 3 Arizona Cardinals San Francisco 49ers Arizona Cardinals San Francisco 49ers 23 14 41 0 0.5 TRUE -0.0454545454545454 0 22 15 20.6666666666667 22.6666666666667
4042 2014 3 New York Giants Houston Texans New York Giants Houston Texans 30 17 41.5 1 0.56 TRUE 0.0690909090909093 0 19.3333333333333 25.6666666666667 21.3333333333333 16.6666666666667
4045 2014 3 St. Louis Rams Dallas Cowboys Dallas Cowboys St. Louis Rams 34 31 45 1 0.55 TRUE 0.05 0 18.6666666666667 28.3333333333333 25.6666666666667 23
4048 2014 3 Buffalo Bills San Diego Chargers San Diego Chargers Buffalo Bills 22 10 45.5 1 0.58 FALSE -0.198181818181818 0 20.6666666666667 17.3333333333333 23 16.3333333333333
4051 2014 3 Miami Dolphins Kansas City Chiefs Kansas City Chiefs Miami Dolphins 34 15 42.5 1 0.54 TRUE 0.030909090909091 0 19.3333333333333 27.6666666666667 20.3333333333333 21.6666666666667
4054 2014 3 Cleveland Browns Baltimore Ravens Baltimore Ravens Cleveland Browns 23 21 43 1 0.61 TRUE 0.164545454545455 0 24.6666666666667 25.6666666666667 21.6666666666667 16.6666666666667
4057 2014 3 New England Patriots Oakland Raiders New England Patriots Oakland Raiders 16 9 47 1 0.6 FALSE -0.236363636363636 0 22 16.3333333333333 12.3333333333333 21.6666666666667
4060 2014 3 Detroit Lions Green Bay Packers Detroit Lions Green Bay Packers 19 7 52 1 0.84 FALSE -0.694545454545454 0 20.3333333333333 15 18 26.3333333333333
4063 2014 3 Cincinnati Bengals Tennessee Titans Cincinnati Bengals Tennessee Titans 33 7 44.5 0 0.5 TRUE -0.0454545454545454 0 26.6666666666667 11 14.3333333333333 23
4066 2014 3 Jacksonville Jaguars Indianapolis Colts Indianapolis Colts Jacksonville Jaguars 44 17 45 1 0.54 TRUE 0.030909090909091 0 14.6666666666667 39.6666666666667 31.6666666666667 26
4069 2014 3 Carolina Panthers Pittsburgh Steelers Pittsburgh Steelers Carolina Panthers 37 19 42.5 1 0.56 TRUE 0.0690909090909093 1 21 19.3333333333333 24.3333333333333 24
4072 2014 3 New Orleans Saints Minnesota Vikings New Orleans Saints Minnesota Vikings 20 9 49.5 1 0.72 FALSE -0.465454545454545 0 26 24 16.6666666666667 18.6666666666667
4075 2014 3 Philadelphia Eagles Washington Redskins Philadelphia Eagles Washington Redskins 37 34 50 1 0.78 TRUE 0.489090909090909 0 33.6666666666667 26 27 21.3333333333333
4078 2014 3 Seattle Seahawks Denver Broncos Seattle Seahawks Denver Broncos 26 20 48 1 0.71 FALSE -0.446363636363636 0 27.6666666666667 22 25 22.3333333333333
4081 2014 3 New York Jets Chicago Bears Chicago Bears New York Jets 27 19 45 1 0.67 TRUE 0.279090909090909 1 20.6666666666667 24 25 20.6666666666667
4084 2014 4 Washington Redskins New York Giants New York Giants Washington Redskins 45 14 44.5 1 0.75 TRUE 0.431818181818182 1 23.75 27.25 25.75 22.75
4087 2014 4 Dallas Cowboys New Orleans Saints Dallas Cowboys New Orleans Saints 38 17 54 1 0.81 TRUE 0.546363636363637 1 28.75 21.5 23.75 27.5
4090 2014 4 Pittsburgh Steelers Tampa Bay Buccaneers Tampa Bay Buccaneers Pittsburgh Steelers 27 24 45 1 0.55 TRUE 0.05 0 24.25 24.75 18 29.75
4093 2014 4 San Diego Chargers Jacksonville Jaguars San Diego Chargers Jacksonville Jaguars 33 14 44.5 1 0.77 TRUE 0.47 0 25.5 15.75 14.5 38
4096 2014 4 San Francisco 49ers Philadelphia Eagles San Francisco 49ers Philadelphia Eagles 26 21 49.5 1 0.75 FALSE -0.522727272727273 0 22 22.25 30.5 26
4099 2014 4 Chicago Bears Green Bay Packers Green Bay Packers Chicago Bears 38 17 51 1 0.74 TRUE 0.412727272727273 0 23 25 23 24
4102 2014 4 New York Jets Detroit Lions Detroit Lions New York Jets 24 17 44 1 0.61 FALSE -0.255454545454545 0 19.75 24 21.25 15.5
4105 2014 4 Indianapolis Colts Tennessee Titans Indianapolis Colts Tennessee Titans 41 17 46 1 0.72 TRUE 0.374545454545455 0 34 23.75 15 27.5
4108 2014 4 Houston Texans Buffalo Bills Houston Texans Buffalo Bills 23 17 44 1 0.56 FALSE -0.16 0 21.75 16.75 19.75 18.75
4111 2014 4 Baltimore Ravens Carolina Panthers Baltimore Ravens Carolina Panthers 38 10 42 1 0.5 TRUE -0.0454545454545454 0 25.75 15 18.25 24
4114 2014 4 Minnesota Vikings Atlanta Falcons Minnesota Vikings Atlanta Falcons 41 28 47.5 1 0.66 TRUE 0.26 0 22.75 21 32.75 28.25
4117 2014 4 Oakland Raiders Miami Dolphins Miami Dolphins Oakland Raiders 38 14 41 1 0.65 TRUE 0.240909090909091 0 12.75 25.75 24 24.25
4120 2014 4 Kansas City Chiefs New England Patriots Kansas City Chiefs New England Patriots 41 14 45.5 0 0.57 FALSE -0.179090909090909 1 25.5 19.75 20 22.5
4123 2014 5 Green Bay Packers Minnesota Vikings Green Bay Packers Minnesota Vikings 42 10 46.5 1 0.66 TRUE 0.26 1 26.8 21.2 20.2 25.2
4126 2014 5 Tennessee Titans Cleveland Browns Cleveland Browns Tennessee Titans 29 28 44 1 0.53 TRUE 0.0118181818181819 0 17.6 27.8 25.75 26.25
4129 2014 5 Denver Broncos Arizona Cardinals Denver Broncos Arizona Cardinals 41 20 47.5 1 0.64 TRUE 0.221818181818182 0 29 21.75 21.5 21.5
4132 2014 5 New England Patriots Cincinnati Bengals New England Patriots Cincinnati Bengals 43 17 46.5 1 0.58 TRUE 0.107272727272727 1 24.6 21.4 24.25 19
4135 2014 5 San Diego Chargers New York Jets San Diego Chargers New York Jets 31 0 44.5 1 0.75 FALSE -0.522727272727273 0 26.6 12.6 15.8 25.4
4138 2014 5 Detroit Lions Buffalo Bills Buffalo Bills Detroit Lions 17 14 43.5 1 0.69 FALSE -0.408181818181818 0 19.8 15.8 19.2 17.8
4141 2014 5 Indianapolis Colts Baltimore Ravens Indianapolis Colts Baltimore Ravens 20 13 49.5 1 0.8 FALSE -0.618181818181818 0 31.2 21.6 23.2 16
4144 2014 5 Philadelphia Eagles St. Louis Rams Philadelphia Eagles St. Louis Rams 34 28 48 1 0.78 TRUE 0.489090909090909 0 31.2 26.4 21 29.75
4147 2014 5 Dallas Cowboys Houston Texans Dallas Cowboys Houston Texans 20 17 48 1 0.73 FALSE -0.484545454545455 0 27 20.6 20.8 17.4
4150 2014 5 Carolina Panthers Chicago Bears Carolina Panthers Chicago Bears 31 24 47 1 0.7 TRUE 0.336363636363636 0 20.8 24 23.2 26.2
4153 2014 5 New York Giants Atlanta Falcons New York Giants Atlanta Falcons 30 20 50.5 1 0.76 FALSE -0.541818181818182 0 26.6 22.2 30.2 28.6
4156 2014 5 New Orleans Saints Tampa Bay Buccaneers New Orleans Saints Tampa Bay Buccaneers 37 31 48 1 0.77 TRUE 0.47 0 26.4 28.2 20.6 31.2
4159 2014 5 Jacksonville Jaguars Pittsburgh Steelers Pittsburgh Steelers Jacksonville Jaguars 17 9 47.5 1 0.69 FALSE -0.408181818181818 0 13.4 33.8 22.8 21.6
4162 2014 5 San Francisco 49ers Kansas City Chiefs San Francisco 49ers Kansas City Chiefs 22 17 43.5 1 0.7 FALSE -0.427272727272727 0 22 21.2 23.8 20.2
4165 2014 5 Washington Redskins Seattle Seahawks Seattle Seahawks Washington Redskins 27 17 46 1 0.7 FALSE -0.427272727272727 1 22.4 27.2 27.5 20.75
4168 2014 6 Houston Texans Indianapolis Colts Indianapolis Colts Houston Texans 33 28 46 1 0.64 TRUE 0.221818181818182 1 22 20 31.5 22.6666666666667
4171 2014 6 New York Jets Denver Broncos Denver Broncos New York Jets 31 17 47.5 1 0.73 TRUE 0.393636363636364 0 16 26.3333333333333 29.4 20.8
4174 2014 6 Cleveland Browns Pittsburgh Steelers Cleveland Browns Pittsburgh Steelers 31 10 46.5 1 0.6 FALSE -0.236363636363636 0 26.8 23 20.6666666666667 23.1666666666667
4177 2014 6 Arizona Cardinals Washington Redskins Arizona Cardinals Washington Redskins 30 20 46.5 1 0.59 TRUE 0.126363636363636 0 23.2 21.2 22 27.6666666666667
4180 2014 6 Oakland Raiders San Diego Chargers San Diego Chargers Oakland Raiders 31 28 44 1 0.68 TRUE 0.298181818181818 0 15.8 26.8 27.3333333333333 15.1666666666667
4183 2014 6 Minnesota Vikings Detroit Lions Detroit Lions Minnesota Vikings 17 3 43 1 0.67 FALSE -0.37 0 17.3333333333333 23.8333333333333 19.3333333333333 13.6666666666667
4186 2014 6 Tampa Bay Buccaneers Baltimore Ravens Baltimore Ravens Tampa Bay Buccaneers 48 17 44.5 1 0.69 TRUE 0.317272727272727 0 20 34 27.3333333333333 16.1666666666667
4189 2014 6 Seattle Seahawks Dallas Cowboys Dallas Cowboys Seattle Seahawks 30 23 47 1 0.72 TRUE 0.374545454545455 0 26.6 22.6 27.5 21
4192 2014 6 Philadelphia Eagles New York Giants Philadelphia Eagles New York Giants 27 0 51 1 0.79 FALSE -0.599090909090909 1 30.5 22 22.1666666666667 23
4195 2014 6 Tennessee Titans Jacksonville Jaguars Tennessee Titans Jacksonville Jaguars 16 14 42.5 1 0.71 FALSE -0.446363636363636 0 17.3333333333333 25.5 13.5 30.8333333333333
4198 2014 6 Miami Dolphins Green Bay Packers Green Bay Packers Miami Dolphins 27 24 47 1 0.65 TRUE 0.240909090909091 0 24 24.8 26.8333333333333 21.6666666666667
4201 2014 6 Cincinnati Bengals Carolina Panthers Cincinnati Bengals Carolina Panthers 37 37 44 1 0.55 TRUE 0.05 0 26.8 22.6 23.5 26.1666666666667
4204 2014 6 Buffalo Bills New England Patriots New England Patriots Buffalo Bills 37 22 44.5 1 0.66 TRUE 0.26 0 19.6666666666667 21 26.6666666666667 21.5
4207 2014 6 Atlanta Falcons Chicago Bears Chicago Bears Atlanta Falcons 27 13 56 1 0.78 FALSE -0.58 0 27.3333333333333 28.3333333333333 23.8333333333333 24
4210 2014 6 St. Louis Rams San Francisco 49ers San Francisco 49ers St. Louis Rams 31 17 44.5 1 0.67 TRUE 0.279090909090909 1 20.2 30 23.5 20.5
4213 2014 7 New England Patriots New York Jets New England Patriots New York Jets 27 25 44.5 1 0.64 TRUE 0.221818181818182 1 26.7142857142857 22 17.2857142857143 26.4285714285714
4216 2014 7 Jacksonville Jaguars Cleveland Browns Jacksonville Jaguars Cleveland Browns 24 6 45 1 0.59 FALSE -0.217272727272727 0 15 27.2857142857143 23.3333333333333 23.1666666666667
4219 2014 7 Oakland Raiders Arizona Cardinals Arizona Cardinals Oakland Raiders 24 13 46.5 1 0.71 FALSE -0.446363636363636 0 15.3333333333333 26.3333333333333 23.3333333333333 19.8333333333333
4222 2014 7 Indianapolis Colts Cincinnati Bengals Indianapolis Colts Cincinnati Bengals 27 0 50.5 1 0.78 FALSE -0.58 0 30.8571428571429 19.4285714285714 22.3333333333333 23.3333333333333
4225 2014 7 San Diego Chargers Kansas City Chiefs Kansas City Chiefs San Diego Chargers 23 20 46 1 0.8 FALSE -0.618181818181818 0 26.2857142857143 16.2857142857143 23.6666666666667 20.1666666666667
4228 2014 7 Denver Broncos San Francisco 49ers Denver Broncos San Francisco 49ers 42 17 48.5 1 0.73 TRUE 0.393636363636364 1 31.5 20.1666666666667 22.5714285714286 23.5714285714286
4231 2014 7 St. Louis Rams Seattle Seahawks St. Louis Rams Seattle Seahawks 28 26 43.5 1 0.67 TRUE 0.279090909090909 0 21.5 29.3333333333333 26.5 23.5
4234 2014 7 Detroit Lions New Orleans Saints Detroit Lions New Orleans Saints 24 23 46.5 1 0.64 TRUE 0.221818181818182 0 20 15 25.8333333333333 27.5
4237 2014 7 Baltimore Ravens Atlanta Falcons Baltimore Ravens Atlanta Falcons 29 7 50 1 0.72 FALSE -0.465454545454545 0 27.5714285714286 14.8571428571429 24.4285714285714 28.4285714285714
4240 2014 7 Chicago Bears Miami Dolphins Miami Dolphins Chicago Bears 27 14 48 1 0.64 FALSE -0.312727272727273 0 22.4285714285714 24.4285714285714 24.5 23
4243 2014 7 Dallas Cowboys New York Giants Dallas Cowboys New York Giants 31 21 47 1 0.76 TRUE 0.450909090909091 0 28 21 22 24.1428571428571
4246 2014 7 Washington Redskins Tennessee Titans Washington Redskins Tennessee Titans 19 17 46.5 1 0.57 FALSE -0.179090909090909 0 21.5714285714286 26.1428571428571 17.2857142857143 24.5714285714286
4249 2014 7 Buffalo Bills Minnesota Vikings Buffalo Bills Minnesota Vikings 17 16 43 0 0.55 TRUE 0.05 0 19.2857142857143 20.2857142857143 17.1428571428571 22.8571428571429
4252 2014 7 Green Bay Packers Carolina Panthers Green Bay Packers Carolina Panthers 38 17 49.5 1 0.79 TRUE 0.508181818181818 0 28.4285714285714 21 22.5714285714286 27.8571428571429
4255 2014 7 Pittsburgh Steelers Houston Texans Pittsburgh Steelers Houston Texans 30 23 44.5 1 0.55 TRUE 0.05 1 22 23.1428571428571 22.1428571428571 21.4285714285714
4258 2014 8 Denver Broncos San Diego Chargers Denver Broncos San Diego Chargers 35 21 51 1 0.77 TRUE 0.47 1 32 20.2857142857143 25.625 18.625
4261 2014 8 Arizona Cardinals Philadelphia Eagles Arizona Cardinals Philadelphia Eagles 24 20 48.5 1 0.78 FALSE -0.58 0 23.4285714285714 19.8571428571429 29 22.2857142857143
4264 2014 8 Cincinnati Bengals Baltimore Ravens Cincinnati Bengals Baltimore Ravens 27 24 44.5 1 0.65 TRUE 0.240909090909091 0 23 23.4285714285714 27.125 16.375
4267 2014 8 Kansas City Chiefs St. Louis Rams Kansas City Chiefs St. Louis Rams 34 7 44 1 0.74 FALSE -0.503636363636364 0 25.1428571428571 18.2857142857143 19.4285714285714 30
4270 2014 8 Cleveland Browns Oakland Raiders Cleveland Browns Oakland Raiders 23 13 44.5 1 0.63 FALSE -0.293636363636364 0 23.2857142857143 21.7142857142857 15 25.8571428571429
4273 2014 8 Pittsburgh Steelers Indianapolis Colts Pittsburgh Steelers Indianapolis Colts 51 34 48.5 1 0.74 TRUE 0.412727272727273 0 25.625 24.5 31.25 23.375
4276 2014 8 New England Patriots Chicago Bears New England Patriots Chicago Bears 51 23 52 1 0.79 TRUE 0.508181818181818 0 29.75 22.125 22.5 27.75
4279 2014 8 Atlanta Falcons Detroit Lions Detroit Lions Atlanta Falcons 22 21 45.5 1 0.68 FALSE -0.389090909090909 0 24 27.625 20.25 15.75
4282 2014 8 New Orleans Saints Green Bay Packers New Orleans Saints Green Bay Packers 44 23 55.5 1 0.79 TRUE 0.508181818181818 1 28.4285714285714 26.8571428571429 27.75 23.875
4285 2014 8 New York Jets Buffalo Bills Buffalo Bills New York Jets 43 23 40.5 1 0.66 TRUE 0.26 0 18 28.5 22.25 20.625
4288 2014 8 Carolina Panthers Seattle Seahawks Seattle Seahawks Carolina Panthers 13 9 45 1 0.7 FALSE -0.427272727272727 0 20.875 26 24.5714285714286 21.4285714285714
4291 2014 8 Jacksonville Jaguars Miami Dolphins Miami Dolphins Jacksonville Jaguars 27 13 42 0 0.54 TRUE 0.030909090909091 0 14.75 27.25 24.8571428571429 21.5714285714286
4294 2014 8 Tampa Bay Buccaneers Minnesota Vikings Minnesota Vikings Tampa Bay Buccaneers 19 13 43 1 0.63 FALSE -0.293636363636364 0 19 31.8571428571429 17.375 21.625
4297 2014 8 Tennessee Titans Houston Texans Houston Texans Tennessee Titans 30 16 43 1 0.54 TRUE 0.030909090909091 0 17.125 25.25 23.125 20.75
4300 2014 8 Dallas Cowboys Washington Redskins Washington Redskins Dallas Cowboys 20 17 49 1 0.61 FALSE -0.255454545454545 1 26.625 20.875 21.375 25
4303 2014 9 Carolina Panthers New Orleans Saints New Orleans Saints Carolina Panthers 28 10 49 1 0.61 FALSE -0.255454545454545 1 19.6666666666667 26.2222222222222 28.375 24.75
4306 2014 9 New England Patriots Denver Broncos New England Patriots Denver Broncos 43 21 53 1 0.62 TRUE 0.183636363636364 0 31.2222222222222 22 30.625 23.125
4309 2014 9 Dallas Cowboys Arizona Cardinals Arizona Cardinals Dallas Cowboys 28 17 45 1 0.68 FALSE -0.389090909090909 0 25.5555555555556 21.6666666666667 24 19.5
4312 2014 9 Cincinnati Bengals Jacksonville Jaguars Cincinnati Bengals Jacksonville Jaguars 33 23 43.5 1 0.66 TRUE 0.26 0 24.25 23.375 15.6666666666667 27.8888888888889
4315 2014 9 Cleveland Browns Tampa Bay Buccaneers Cleveland Browns Tampa Bay Buccaneers 22 17 44 1 0.53 FALSE -0.102727272727273 0 23.125 21.125 18.75 30.625
4318 2014 9 Kansas City Chiefs New York Jets Kansas City Chiefs New York Jets 24 10 41.5 1 0.71 FALSE -0.446363636363636 0 25 17.25 17.1111111111111 28
4321 2014 9 Miami Dolphins San Diego Chargers Miami Dolphins San Diego Chargers 37 0 45 1 0.74 FALSE -0.503636363636364 0 26.375 18.875 22.7777777777778 20.6666666666667
4324 2014 9 San Francisco 49ers St. Louis Rams St. Louis Rams San Francisco 49ers 13 10 44 1 0.73 FALSE -0.484545454545455 0 21 22.25 18.625 27.5
4327 2014 9 Seattle Seahawks Oakland Raiders Seattle Seahawks Oakland Raiders 30 24 44 1 0.65 TRUE 0.240909090909091 0 25.25 21.75 16.125 26.375
4330 2014 9 Pittsburgh Steelers Baltimore Ravens Pittsburgh Steelers Baltimore Ravens 43 23 48 1 0.57 TRUE 0.0881818181818181 1 27.5555555555556 24.3333333333333 26.6666666666667 19.3333333333333
4333 2014 9 Minnesota Vikings Washington Redskins Minnesota Vikings Washington Redskins 29 26 44 0 0.57 FALSE -0.179090909090909 0 18.6666666666667 22.1111111111111 21.8888888888889 25.4444444444444
4336 2014 9 Houston Texans Philadelphia Eagles Philadelphia Eagles Houston Texans 31 21 48.5 1 0.7 TRUE 0.336363636363636 0 22.8888888888889 21.8888888888889 29.25 22.125
4339 2014 9 New York Giants Indianapolis Colts Indianapolis Colts New York Giants 40 24 51.5 1 0.77 TRUE 0.47 1 22.25 26.125 32.2222222222222 23.4444444444444
4342 2014 10 Cincinnati Bengals Cleveland Browns Cleveland Browns Cincinnati Bengals 24 3 46 1 0.68 FALSE -0.389090909090909 1 21.8888888888889 23.4444444444444 23.2222222222222 19.1111111111111
4345 2014 10 Arizona Cardinals St. Louis Rams Arizona Cardinals St. Louis Rams 31 14 43.5 1 0.64 TRUE 0.221818181818182 0 24.7777777777778 18.8888888888889 18.1111111111111 27.8888888888889
4348 2014 10 Oakland Raiders Denver Broncos Denver Broncos Oakland Raiders 41 17 51 1 0.79 TRUE 0.508181818181818 0 16.2222222222222 28 31.7777777777778 22.4444444444444
4351 2014 10 Baltimore Ravens Tennessee Titans Baltimore Ravens Tennessee Titans 21 7 44 1 0.66 FALSE -0.350909090909091 0 26.1 18.1 16 24.7777777777778
4354 2014 10 Green Bay Packers Chicago Bears Green Bay Packers Chicago Bears 55 14 54 1 0.69 TRUE 0.317272727272727 1 30.7777777777778 22.7777777777778 21.5555555555556 30.7777777777778
4357 2014 10 Seattle Seahawks New York Giants Seattle Seahawks New York Giants 38 17 45 1 0.72 TRUE 0.374545454545455 0 26.6666666666667 21.2222222222222 21.6666666666667 27.4444444444444
4360 2014 10 Buffalo Bills Kansas City Chiefs Kansas City Chiefs Buffalo Bills 17 13 42 1 0.59 FALSE -0.217272727272727 0 21.2222222222222 20.2222222222222 24.1111111111111 16.7777777777778
4363 2014 10 New Orleans Saints San Francisco 49ers San Francisco 49ers New Orleans Saints 27 24 49.5 1 0.75 TRUE 0.431818181818182 0 27.8888888888889 25 21.6666666666667 22.4444444444444
4366 2014 10 Detroit Lions Miami Dolphins Detroit Lions Miami Dolphins 20 16 43 1 0.68 FALSE -0.389090909090909 0 20.2222222222222 15.7777777777778 25.2222222222222 19
4369 2014 10 Tampa Bay Buccaneers Atlanta Falcons Atlanta Falcons Tampa Bay Buccaneers 27 17 47 1 0.71 FALSE -0.446363636363636 0 18.5555555555556 30.2222222222222 24.3333333333333 26.4444444444444
4372 2014 10 Jacksonville Jaguars Dallas Cowboys Dallas Cowboys Jacksonville Jaguars 31 17 45 1 0.56 TRUE 0.0690909090909093 0 15.8 28.2 26.1 21.2
4375 2014 10 New York Jets Pittsburgh Steelers New York Jets Pittsburgh Steelers 20 13 47 1 0.78 FALSE -0.58 0 17.4 26.5 26.1 23.9
4378 2014 10 Philadelphia Eagles Carolina Panthers Philadelphia Eagles Carolina Panthers 45 21 48.5 1 0.63 TRUE 0.202727272727273 1 31 22 19.8 28.1
4381 2014 11 Miami Dolphins Buffalo Bills Miami Dolphins Buffalo Bills 22 9 41 1 0.57 FALSE -0.179090909090909 1 24.9 18 20 20.4
4384 2014 11 New Orleans Saints Cincinnati Bengals Cincinnati Bengals New Orleans Saints 27 10 51.5 1 0.82 FALSE -0.656363636363636 0 26.1 25.2 22.4 22.1
4387 2014 11 Carolina Panthers Atlanta Falcons Atlanta Falcons Carolina Panthers 19 17 47 1 0.66 FALSE -0.350909090909091 0 19.5454545454545 27.2727272727273 23.8 25.5
4390 2014 11 St. Louis Rams Denver Broncos St. Louis Rams Denver Broncos 22 7 50 1 0.76 FALSE -0.541818181818182 0 18.5 25.8 29.3 22.4
4393 2014 11 San Diego Chargers Oakland Raiders San Diego Chargers Oakland Raiders 13 6 45.5 1 0.7 FALSE -0.427272727272727 0 21.8 19.2 15.2 26.5
4396 2014 11 Green Bay Packers Philadelphia Eagles Green Bay Packers Philadelphia Eagles 53 20 55.5 1 0.79 TRUE 0.508181818181818 0 33 22.5 29.9 25.1
4399 2014 11 Cleveland Browns Houston Texans Houston Texans Cleveland Browns 23 7 42 0 0.55 TRUE 0.05 0 21.6 19.5 22.9 20.4
4402 2014 11 Kansas City Chiefs Seattle Seahawks Kansas City Chiefs Seattle Seahawks 24 20 43.5 0 0.53 FALSE -0.102727272727273 0 24.1 17.1 26 21.5
4405 2014 11 New York Giants San Francisco 49ers San Francisco 49ers New York Giants 16 10 45 1 0.75 FALSE -0.522727272727273 0 20.5 26.3 21.1 21.2
4408 2014 11 Indianapolis Colts New England Patriots New England Patriots Indianapolis Colts 42 20 59 1 0.75 TRUE 0.431818181818182 1 31 25.3 32.3 21.8
4411 2014 11 Chicago Bears Minnesota Vikings Chicago Bears Minnesota Vikings 21 13 46.5 1 0.56 FALSE -0.16 0 21.5 29 18.1 22
4414 2014 11 Washington Redskins Tampa Bay Buccaneers Tampa Bay Buccaneers Washington Redskins 27 7 46 1 0.6 FALSE -0.236363636363636 0 20.4 25.6 19.4 27.9
4417 2014 11 Arizona Cardinals Detroit Lions Arizona Cardinals Detroit Lions 14 6 41.5 1 0.6 FALSE -0.236363636363636 0 23.7 17.6 18.8 15.6
4420 2014 11 Tennessee Titans Pittsburgh Steelers Pittsburgh Steelers Tennessee Titans 27 24 46 1 0.52 TRUE -0.00727272727272721 1 16.8 25 26.1818181818182 23.9090909090909
4423 2014 12 Oakland Raiders Kansas City Chiefs Oakland Raiders Kansas City Chiefs 24 20 42 0 0.51 FALSE -0.0645454545454546 1 16 25.9090909090909 23.7272727272727 17.7272727272727
4426 2014 12 San Francisco 49ers Washington Redskins San Francisco 49ers Washington Redskins 17 13 44 1 0.64 FALSE -0.312727272727273 0 20.7272727272727 20.4545454545455 19.7272727272727 24.8181818181818
4429 2014 12 Seattle Seahawks Arizona Cardinals Seattle Seahawks Arizona Cardinals 19 3 41.5 0 0.5 TRUE -0.0454545454545454 0 25.3636363636364 19.8181818181818 21.8181818181818 17.7272727272727
4432 2014 12 San Diego Chargers St. Louis Rams San Diego Chargers St. Louis Rams 27 24 43.5 0 0.55 FALSE -0.140909090909091 0 22.2727272727273 19.6363636363636 19 25.9090909090909
4435 2014 12 Denver Broncos Miami Dolphins Denver Broncos Miami Dolphins 39 36 47.5 1 0.63 TRUE 0.202727272727273 0 30.1818181818182 23.6363636363636 25.9090909090909 19.9090909090909
4438 2014 12 Philadelphia Eagles Tennessee Titans Philadelphia Eagles Tennessee Titans 43 24 49 1 0.7 TRUE 0.336363636363636 0 31.0909090909091 25 17.4545454545455 26.6363636363636
4441 2014 12 Houston Texans Cincinnati Bengals Cincinnati Bengals Houston Texans 22 13 44.5 1 0.52 FALSE -0.0836363636363636 0 22 20.5454545454545 22.3636363636364 21.2727272727273
4444 2014 12 New York Giants Dallas Cowboys Dallas Cowboys New York Giants 31 28 49 1 0.78 TRUE 0.489090909090909 1 21.1818181818182 26.7272727272727 26.5454545454545 21.8181818181818
4447 2014 12 Indianapolis Colts Jacksonville Jaguars Indianapolis Colts Jacksonville Jaguars 23 3 49.5 1 0.63 FALSE -0.293636363636364 0 30.2727272727273 23.2727272727273 14.6363636363636 27.7272727272727
4450 2014 12 Chicago Bears Tampa Bay Buccaneers Chicago Bears Tampa Bay Buccaneers 21 13 46.5 1 0.64 FALSE -0.312727272727273 0 21.4545454545455 27.5454545454545 18.8181818181818 27.2727272727273
4453 2014 12 Atlanta Falcons Cleveland Browns Cleveland Browns Atlanta Falcons 26 24 48.5 1 0.63 TRUE 0.202727272727273 0 23.8181818181818 25.5454545454545 22 19.9090909090909
4456 2014 12 Minnesota Vikings Green Bay Packers Green Bay Packers Minnesota Vikings 24 21 49.5 1 0.78 FALSE -0.58 0 18.3636363636364 22.1818181818182 32.1818181818182 22.3636363636364
4459 2014 12 New England Patriots Detroit Lions New England Patriots Detroit Lions 34 9 47.5 1 0.68 FALSE -0.389090909090909 0 32.4545454545455 20.6363636363636 17.9090909090909 17.2727272727273
4462 2014 12 New Orleans Saints Baltimore Ravens Baltimore Ravens New Orleans Saints 34 27 50.5 1 0.76 TRUE 0.450909090909091 1 26.1818181818182 26 26.8181818181818 18.9090909090909
4465 2014 12 Buffalo Bills New York Jets Buffalo Bills New York Jets 38 3 42.5 1 0.61 FALSE -0.255454545454545 1 21.6363636363636 18.8181818181818 16.0909090909091 27.5454545454545
4468 2014 13 San Francisco 49ers Seattle Seahawks Seattle Seahawks San Francisco 49ers 19 3 40.5 1 0.57 FALSE -0.179090909090909 1 19.25 20.3333333333333 24.8333333333333 18.4166666666667
4471 2014 13 Detroit Lions Chicago Bears Detroit Lions Chicago Bears 34 17 46 1 0.64 TRUE 0.221818181818182 1 19.25 17.25 21.0833333333333 28.0833333333333
4474 2014 13 Dallas Cowboys Philadelphia Eagles Philadelphia Eagles Dallas Cowboys 33 10 57 1 0.76 FALSE -0.541818181818182 1 25.1666666666667 22.75 31.25 23.75
4477 2014 13 Kansas City Chiefs Denver Broncos Denver Broncos Kansas City Chiefs 29 16 49.5 1 0.7 FALSE -0.427272727272727 1 23.0833333333333 18.6666666666667 30.0833333333333 23
4480 2014 13 Tampa Bay Buccaneers Cincinnati Bengals Cincinnati Bengals Tampa Bay Buccaneers 14 13 43.5 1 0.52 FALSE -0.0836363636363636 0 18.3333333333333 26.1666666666667 21.6666666666667 20.5833333333333
4483 2014 13 Indianapolis Colts Washington Redskins Indianapolis Colts Washington Redskins 49 27 49 1 0.61 TRUE 0.164545454545455 0 31.8333333333333 23.5833333333333 20.3333333333333 26.8333333333333
4486 2014 13 Baltimore Ravens San Diego Chargers San Diego Chargers Baltimore Ravens 34 33 46 1 0.61 TRUE 0.164545454545455 0 27.3333333333333 20.1666666666667 23.25 20.75
4489 2014 13 Houston Texans Tennessee Titans Houston Texans Tennessee Titans 45 21 42.5 1 0.51 TRUE -0.0263636363636363 0 23.9166666666667 20.5833333333333 17.75 28.1666666666667
4492 2014 13 Jacksonville Jaguars New York Giants Jacksonville Jaguars New York Giants 25 24 44 1 0.58 TRUE 0.107272727272727 0 15.5 27.4166666666667 21.4166666666667 26.5833333333333
4495 2014 13 St. Louis Rams Oakland Raiders St. Louis Rams Oakland Raiders 52 0 43 0 0.51 FALSE -0.0645454545454546 0 21.75 23.75 14.6666666666667 28.0833333333333
4498 2014 13 Atlanta Falcons Arizona Cardinals Atlanta Falcons Arizona Cardinals 29 18 45 0 0.53 FALSE -0.102727272727273 0 24.25 24.9166666666667 21.5 18.6666666666667
4501 2014 13 Green Bay Packers New England Patriots Green Bay Packers New England Patriots 26 21 58 1 0.67 FALSE -0.37 0 31.6666666666667 22.25 31.5 21.0833333333333
4504 2014 13 Pittsburgh Steelers New Orleans Saints New Orleans Saints Pittsburgh Steelers 35 32 54.5 1 0.63 TRUE 0.202727272727273 0 26.6666666666667 24.8333333333333 26.9166666666667 26.5
4507 2014 13 Minnesota Vikings Carolina Panthers Minnesota Vikings Carolina Panthers 31 13 41.5 0 0.52 FALSE -0.0836363636363636 0 19.4166666666667 21.4166666666667 19 27.5833333333333
4510 2014 13 Buffalo Bills Cleveland Browns Buffalo Bills Cleveland Browns 26 10 42 0 0.52 TRUE -0.00727272727272721 0 22 18.0833333333333 21 20.4166666666667
4513 2014 13 New York Jets Miami Dolphins Miami Dolphins New York Jets 16 13 41.5 1 0.57 FALSE -0.179090909090909 1 15.8333333333333 26.5833333333333 25.0833333333333 19.3333333333333
4516 2014 14 Chicago Bears Dallas Cowboys Dallas Cowboys Chicago Bears 41 28 50 1 0.69 TRUE 0.317272727272727 1 21.6153846153846 29.0769230769231 26.3846153846154 23.1538461538462
4519 2014 14 Oakland Raiders San Francisco 49ers Oakland Raiders San Francisco 49ers 24 13 40.5 1 0.65 FALSE -0.331818181818182 0 15.3846153846154 26.9230769230769 18.7692307692308 20.6153846153846
4522 2014 14 New Orleans Saints Carolina Panthers Carolina Panthers New Orleans Saints 41 10 50.5 1 0.73 TRUE 0.393636363636364 0 25.6153846153846 27.6153846153846 20.6923076923077 26.2307692307692
4525 2014 14 Cleveland Browns Indianapolis Colts Indianapolis Colts Cleveland Browns 25 24 50 1 0.61 FALSE -0.255454545454545 0 21.2307692307692 20.7692307692308 31.3076923076923 23.6153846153846
4528 2014 14 Denver Broncos Buffalo Bills Denver Broncos Buffalo Bills 24 17 47 1 0.76 FALSE -0.541818181818182 0 29.6153846153846 22.5384615384615 21.6153846153846 18.5384615384615
4531 2014 14 San Diego Chargers New England Patriots New England Patriots San Diego Chargers 23 14 54 1 0.81 FALSE -0.637272727272727 1 22.5384615384615 20.9230769230769 30.8461538461538 20.5384615384615
4534 2014 14 Washington Redskins St. Louis Rams St. Louis Rams Washington Redskins 24 0 44.5 1 0.6 FALSE -0.236363636363636 0 18.7692307692308 26.6153846153846 21.9230769230769 21.9230769230769
4537 2014 14 Minnesota Vikings New York Jets Minnesota Vikings New York Jets 30 24 40 0 0.53 FALSE -0.102727272727273 0 20.2307692307692 21.6153846153846 16.4615384615385 26.8461538461538
4540 2014 14 Jacksonville Jaguars Houston Texans Houston Texans Jacksonville Jaguars 27 13 42 1 0.66 FALSE -0.350909090909091 0 15.3076923076923 27.3846153846154 24.1538461538462 20
4543 2014 14 Miami Dolphins Baltimore Ravens Baltimore Ravens Miami Dolphins 28 13 45 1 0.64 FALSE -0.312727272727273 0 24.1538461538462 20 27.3846153846154 19.6153846153846
4546 2014 14 Detroit Lions Tampa Bay Buccaneers Detroit Lions Tampa Bay Buccaneers 34 17 42 1 0.7 TRUE 0.336363636363636 0 20.3846153846154 17.2307692307692 18.2307692307692 26.7692307692308
4549 2014 14 Cincinnati Bengals Pittsburgh Steelers Pittsburgh Steelers Cincinnati Bengals 42 21 47.5 1 0.61 TRUE 0.164545454545455 0 21.6153846153846 22.2307692307692 27.8461538461538 24.5384615384615
4552 2014 14 Tennessee Titans New York Giants New York Giants Tennessee Titans 36 7 46.5 1 0.68 FALSE -0.389090909090909 0 16.9230769230769 28.7692307692308 22.5384615384615 25.0769230769231
4555 2014 14 Philadelphia Eagles Seattle Seahawks Seattle Seahawks Philadelphia Eagles 24 14 48 1 0.59 FALSE -0.217272727272727 0 29.9230769230769 23.7692307692308 24.7692307692308 18.0769230769231
4558 2014 14 Arizona Cardinals Kansas City Chiefs Arizona Cardinals Kansas City Chiefs 17 14 41 0 0.54 TRUE 0.030909090909091 0 21.1538461538462 18.3076923076923 22.3846153846154 18.5384615384615
4561 2014 14 Green Bay Packers Atlanta Falcons Green Bay Packers Atlanta Falcons 43 37 55 1 0.61 TRUE 0.164545454545455 1 32.5384615384615 23.3846153846154 25.2307692307692 26.3076923076923
4564 2014 15 St. Louis Rams Arizona Cardinals Arizona Cardinals St. Louis Rams 12 6 40.5 0 0.53 TRUE 0.0118181818181819 1 20.7857142857143 21.2142857142857 20.5 17.4285714285714
4567 2014 15 Cleveland Browns Cincinnati Bengals Cincinnati Bengals Cleveland Browns 30 0 43.5 1 0.52 FALSE -0.0836363636363636 0 19.7142857142857 21.4285714285714 22.2142857142857 20.6428571428571
4570 2014 15 Atlanta Falcons Pittsburgh Steelers Pittsburgh Steelers Atlanta Falcons 27 20 55.5 1 0.73 FALSE -0.484545454545455 0 24.8571428571429 26.3571428571429 27.7857142857143 24.2142857142857
4573 2014 15 New York Giants Washington Redskins New York Giants Washington Redskins 24 13 46.5 1 0.6 FALSE -0.236363636363636 0 22.6428571428571 24.2142857142857 18.3571428571429 26.4285714285714
4576 2014 15 Tennessee Titans New York Jets New York Jets Tennessee Titans 16 11 41.5 0 0.61 TRUE 0.164545454545455 0 16.5 27.8571428571429 16.4285714285714 25.7142857142857
4579 2014 15 Kansas City Chiefs Oakland Raiders Kansas City Chiefs Oakland Raiders 31 13 41.5 1 0.56 TRUE 0.0690909090909093 0 23 18.1428571428571 15.2142857142857 27.2142857142857
4582 2014 15 New England Patriots Miami Dolphins New England Patriots Miami Dolphins 41 13 48 1 0.65 TRUE 0.240909090909091 0 31.5714285714286 20 23.3571428571429 21.5
4585 2014 15 San Diego Chargers Denver Broncos Denver Broncos San Diego Chargers 22 10 49.5 1 0.77 FALSE -0.560909090909091 0 21.6428571428571 21 29.0714285714286 21.6428571428571
4588 2014 15 Philadelphia Eagles Dallas Cowboys Dallas Cowboys Philadelphia Eagles 38 27 55 1 0.67 TRUE 0.279090909090909 1 29.7142857142857 24.7857142857143 27.2142857142857 23.4285714285714
4591 2014 15 Baltimore Ravens Jacksonville Jaguars Baltimore Ravens Jacksonville Jaguars 20 12 44.5 1 0.55 FALSE -0.140909090909091 0 26.8571428571429 19.0714285714286 15.0714285714286 26.8571428571429
4594 2014 15 Seattle Seahawks San Francisco 49ers Seattle Seahawks San Francisco 49ers 17 7 38.5 1 0.66 FALSE -0.350909090909091 0 24.2142857142857 17.2857142857143 17.9285714285714 20.3571428571429
4597 2014 15 Buffalo Bills Green Bay Packers Buffalo Bills Green Bay Packers 21 13 50 0 0.57 TRUE 0.0881818181818181 0 21.5714285714286 18.1428571428571 31.1428571428571 23.2142857142857
4600 2014 15 Indianapolis Colts Houston Texans Indianapolis Colts Houston Texans 17 10 49 1 0.7 FALSE -0.427272727272727 0 30.2857142857143 22.6428571428571 23.1428571428571 19.7857142857143
4603 2014 15 Detroit Lions Minnesota Vikings Detroit Lions Minnesota Vikings 16 14 42 1 0.65 FALSE -0.331818181818182 0 20.0714285714286 17 19.7857142857143 21.2142857142857
4606 2014 15 Carolina Panthers Tampa Bay Buccaneers Carolina Panthers Tampa Bay Buccaneers 19 17 41.5 0 0.56 TRUE 0.0690909090909093 0 20.5714285714286 25.5714285714286 18.1428571428571 26.2142857142857
4609 2014 15 Chicago Bears New Orleans Saints New Orleans Saints Chicago Bears 31 15 53.5 1 0.6 FALSE -0.236363636363636 1 21.1428571428571 29.2142857142857 26 26.7142857142857
4612 2014 16 Jacksonville Jaguars Tennessee Titans Jacksonville Jaguars Tennessee Titans 21 13 39 0 0.57 TRUE 0.0881818181818181 1 15.4666666666667 25.9333333333333 16.2666666666667 27.4
4615 2014 16 Washington Redskins Philadelphia Eagles Washington Redskins Philadelphia Eagles 27 24 51 1 0.67 FALSE -0.37 1 18.9333333333333 26.2666666666667 29.3333333333333 24.9333333333333
4618 2014 16 San Francisco 49ers San Diego Chargers San Diego Chargers San Francisco 49ers 38 35 40.5 1 0.57 TRUE 0.0881818181818181 1 19.0666666666667 21.5333333333333 22.7333333333333 21.9333333333333
4621 2014 16 Dallas Cowboys Indianapolis Colts Dallas Cowboys Indianapolis Colts 42 7 53.5 1 0.78 FALSE -0.58 0 28.2 22.3333333333333 28.7333333333333 23.9333333333333
4624 2014 16 Arizona Cardinals Seattle Seahawks Seattle Seahawks Arizona Cardinals 35 6 36.5 0 0.55 FALSE -0.140909090909091 1 19.5333333333333 18.6 24.9333333333333 16.5333333333333
4627 2014 16 New York Jets New England Patriots New England Patriots New York Jets 17 16 47 1 0.58 FALSE -0.198181818181818 0 16.4 25.1333333333333 30.6 19.7333333333333
4630 2014 16 Carolina Panthers Cleveland Browns Carolina Panthers Cleveland Browns 17 13 40 0 0.58 TRUE 0.107272727272727 0 20.3333333333333 24.7333333333333 19.2666666666667 21.1333333333333
4633 2014 16 Houston Texans Baltimore Ravens Houston Texans Baltimore Ravens 25 13 41.5 1 0.52 FALSE -0.0836363636363636 0 23.2666666666667 19.3333333333333 25.9333333333333 19.4666666666667
4636 2014 16 St. Louis Rams New York Giants New York Giants St. Louis Rams 37 27 43.5 0 0.55 FALSE -0.140909090909091 0 21.2 22.2666666666667 23.6 24.4
4639 2014 16 Oakland Raiders Buffalo Bills Oakland Raiders Buffalo Bills 26 24 41.5 0 0.52 FALSE -0.0836363636363636 0 15.9333333333333 27 21.7333333333333 18.6666666666667
4642 2014 16 Pittsburgh Steelers Kansas City Chiefs Pittsburgh Steelers Kansas City Chiefs 20 12 49.5 1 0.53 FALSE -0.102727272727273 0 27.2666666666667 23.4 22.2666666666667 18.2666666666667
4645 2014 16 Chicago Bears Detroit Lions Detroit Lions Chicago Bears 20 14 44.5 1 0.55 FALSE -0.140909090909091 0 20.6666666666667 28.6 20.0666666666667 16.8
4648 2014 16 Tampa Bay Buccaneers Green Bay Packers Green Bay Packers Tampa Bay Buccaneers 20 3 49 1 0.75 FALSE -0.522727272727273 0 17.1333333333333 25.8 30.4 21.8666666666667
4651 2014 16 Miami Dolphins Minnesota Vikings Miami Dolphins Minnesota Vikings 37 35 42.5 0 0.55 FALSE -0.140909090909091 0 24.2666666666667 22.4 20.8 22.2666666666667
4654 2014 16 New Orleans Saints Atlanta Falcons Atlanta Falcons New Orleans Saints 30 14 56 1 0.75 FALSE -0.522727272727273 0 25.2 26.9333333333333 25.2 25.5333333333333
4657 2014 16 Cincinnati Bengals Denver Broncos Cincinnati Bengals Denver Broncos 37 28 47.5 1 0.66 TRUE 0.26 1 23.2 21.1333333333333 29 22.6666666666667
4660 2014 17 San Francisco 49ers Arizona Cardinals San Francisco 49ers Arizona Cardinals 20 17 37.5 0 0.5 TRUE -0.0454545454545454 0 19.125 21.25 19.375 18.6875
4663 2014 17 Washington Redskins Dallas Cowboys Dallas Cowboys Washington Redskins 44 17 47.5 1 0.55 TRUE 0.05 0 18.8125 27.375 29.1875 22
4666 2014 17 Tampa Bay Buccaneers New Orleans Saints New Orleans Saints Tampa Bay Buccaneers 23 20 46.5 0 0.51 TRUE -0.0263636363636363 0 17.3125 25.625 25.0625 26.5
4669 2014 17 Atlanta Falcons Carolina Panthers Carolina Panthers Atlanta Falcons 34 3 48 1 0.63 FALSE -0.293636363636364 0 23.8125 26.0625 21.1875 23.375
4672 2014 17 Pittsburgh Steelers Cincinnati Bengals Pittsburgh Steelers Cincinnati Bengals 27 17 48.5 1 0.56 FALSE -0.16 1 27.25 23 22.8125 21.5
4675 2014 17 New York Giants Philadelphia Eagles Philadelphia Eagles New York Giants 34 26 52 1 0.74 TRUE 0.412727272727273 0 23.75 25 29.625 25
4678 2014 17 Green Bay Packers Detroit Lions Green Bay Packers Detroit Lions 30 20 47 1 0.7 TRUE 0.336363636363636 0 30.375 21.75 20.0625 17.625
4681 2014 17 Houston Texans Jacksonville Jaguars Houston Texans Jacksonville Jaguars 23 17 38.5 1 0.52 TRUE -0.00727272727272721 0 23.25 19.1875 15.5625 25.75
4684 2014 17 Baltimore Ravens Cleveland Browns Baltimore Ravens Cleveland Browns 20 10 40 0 0.53 TRUE 0.0118181818181819 0 25.5625 18.875 18.6875 21.0625
4687 2014 17 Seattle Seahawks St. Louis Rams Seattle Seahawks St. Louis Rams 20 6 41.5 0 0.6 TRUE 0.145454545454546 0 24.625 15.875 20.25 22.125
4690 2014 17 Miami Dolphins New York Jets New York Jets Miami Dolphins 37 24 41 0 0.58 FALSE -0.198181818181818 0 24.25 23.3125 17.6875 25.0625
4693 2014 17 Minnesota Vikings Chicago Bears Minnesota Vikings Chicago Bears 13 9 47.5 1 0.7 FALSE -0.427272727272727 0 20.3125 21.4375 19.9375 27.625
4696 2014 17 Kansas City Chiefs San Diego Chargers Kansas City Chiefs San Diego Chargers 19 7 42 1 0.68 FALSE -0.389090909090909 0 22.0625 17.5625 21.75 21.75
4699 2014 17 Denver Broncos Oakland Raiders Denver Broncos Oakland Raiders 47 14 48.5 1 0.63 TRUE 0.202727272727273 0 30.125 22.125 15.8125 28.25
4702 2014 17 Tennessee Titans Indianapolis Colts Indianapolis Colts Tennessee Titans 27 10 46.5 0 0.62 TRUE 0.183636363636364 0 15.875 27.375 28.625 23.0625
4705 2014 17 New England Patriots Buffalo Bills Buffalo Bills New England Patriots 17 9 43.5 0 0.5 TRUE -0.0454545454545454 0 29.25 19.5625 21.4375 18.0625
4708 2015 1 New England Patriots Pittsburgh Steelers New England Patriots Pittsburgh Steelers 28 21 51 1 0.68 FALSE -0.389090909090909 1 28 21 21 28
4711 2015 1 San Diego Chargers Detroit Lions San Diego Chargers Detroit Lions 33 28 45.5 1 0.75 TRUE 0.431818181818182 0 33 28 28 33
4714 2015 1 Buffalo Bills Indianapolis Colts Buffalo Bills Indianapolis Colts 27 14 44.5 1 0.53 FALSE -0.102727272727273 0 27 14 14 27
4717 2015 1 New York Jets Cleveland Browns New York Jets Cleveland Browns 31 10 38.5 0 0.72 FALSE -0.465454545454545 0 31 10 10 31
4720 2015 1 Oakland Raiders Cincinnati Bengals Cincinnati Bengals Oakland Raiders 33 13 43 1 0.63 TRUE 0.202727272727273 0 13 33 33 13
4723 2015 1 Arizona Cardinals New Orleans Saints Arizona Cardinals New Orleans Saints 31 19 48.5 1 0.62 TRUE 0.183636363636364 0 31 19 19 31
4726 2015 1 Jacksonville Jaguars Carolina Panthers Carolina Panthers Jacksonville Jaguars 20 9 41 0 0.62 TRUE 0.183636363636364 0 9 20 20 9
4729 2015 1 Denver Broncos Baltimore Ravens Denver Broncos Baltimore Ravens 19 13 46.5 1 0.65 FALSE -0.331818181818182 0 19 13 13 19
4732 2015 1 Dallas Cowboys New York Giants Dallas Cowboys New York Giants 27 26 52.5 1 0.71 TRUE 0.355454545454545 1 27 26 26 27
4735 2015 1 St. Louis Rams Seattle Seahawks St. Louis Rams Seattle Seahawks 34 31 41 0 0.61 FALSE -0.255454545454545 0 34 31 31 34
4738 2015 1 Houston Texans Kansas City Chiefs Kansas City Chiefs Houston Texans 27 20 40.5 0 0.63 FALSE -0.293636363636364 0 20 27 27 20
4741 2015 1 Chicago Bears Green Bay Packers Green Bay Packers Chicago Bears 31 23 48.5 1 0.69 TRUE 0.317272727272727 0 23 31 31 23
4744 2015 1 Washington Redskins Miami Dolphins Miami Dolphins Washington Redskins 17 10 45.5 0 0.58 TRUE 0.107272727272727 0 10 17 17 10
4747 2015 1 Tampa Bay Buccaneers Tennessee Titans Tennessee Titans Tampa Bay Buccaneers 42 14 40.5 0 0.51 FALSE -0.0645454545454546 0 14 42 42 14
4750 2015 1 San Francisco 49ers Minnesota Vikings San Francisco 49ers Minnesota Vikings 20 3 42.5 1 0.65 FALSE -0.331818181818182 1 20 3 3 20
4753 2015 1 Atlanta Falcons Philadelphia Eagles Atlanta Falcons Philadelphia Eagles 26 24 56 1 0.73 FALSE -0.484545454545455 1 26 24 24 26
4756 2015 2 Kansas City Chiefs Denver Broncos Denver Broncos Kansas City Chiefs 31 24 42 1 0.68 TRUE 0.298181818181818 1 25.5 25.5 25 18.5
4759 2015 2 New York Giants Atlanta Falcons Atlanta Falcons New York Giants 24 20 50 1 0.66 FALSE -0.350909090909091 0 23 25.5 25 22
4762 2015 2 Buffalo Bills New England Patriots New England Patriots Buffalo Bills 40 32 44.5 1 0.65 TRUE 0.240909090909091 0 29.5 27 34 26.5
4765 2015 2 New Orleans Saints Tampa Bay Buccaneers Tampa Bay Buccaneers New Orleans Saints 26 19 47 1 0.73 FALSE -0.484545454545455 0 19 28.5 20 30.5
4768 2015 2 Washington Redskins St. Louis Rams Washington Redskins St. Louis Rams 24 10 41 0 0.51 TRUE -0.0263636363636363 0 17 13.5 22 27.5
4771 2015 2 Carolina Panthers Houston Texans Carolina Panthers Houston Texans 24 17 41 0 0.55 TRUE 0.05 0 22 13 18.5 25.5
4774 2015 2 Minnesota Vikings Detroit Lions Minnesota Vikings Detroit Lions 26 16 44 1 0.66 FALSE -0.350909090909091 0 14.5 18 22 29.5
4777 2015 2 Cincinnati Bengals San Diego Chargers Cincinnati Bengals San Diego Chargers 24 19 48 1 0.75 FALSE -0.522727272727273 0 28.5 16 26 26
4780 2015 2 Cleveland Browns Tennessee Titans Cleveland Browns Tennessee Titans 28 14 41 1 0.62 TRUE 0.183636363636364 0 19 22.5 28 21
4783 2015 2 Oakland Raiders Baltimore Ravens Oakland Raiders Baltimore Ravens 37 33 42 0 0.52 FALSE -0.0836363636363636 0 25 33 23 28
4786 2015 2 Green Bay Packers Seattle Seahawks Green Bay Packers Seattle Seahawks 27 17 49.5 1 0.69 FALSE -0.408181818181818 1 29 20 24 30.5
4789 2015 2 Chicago Bears Arizona Cardinals Arizona Cardinals Chicago Bears 48 23 46 1 0.66 TRUE 0.26 0 23 39.5 39.5 21
4792 2015 2 Pittsburgh Steelers San Francisco 49ers Pittsburgh Steelers San Francisco 49ers 43 18 46 1 0.65 TRUE 0.240909090909091 0 32 23 19 23
4795 2015 2 Philadelphia Eagles Dallas Cowboys Dallas Cowboys Philadelphia Eagles 20 10 54 1 0.54 FALSE -0.121818181818182 0 17 23 23.5 18
4798 2015 2 Jacksonville Jaguars Miami Dolphins Jacksonville Jaguars Miami Dolphins 23 20 42 0 0.67 FALSE -0.37 0 16 20 18.5 16.5
4801 2015 2 Indianapolis Colts New York Jets New York Jets Indianapolis Colts 20 7 46 1 0.66 FALSE -0.350909090909091 1 10.5 23.5 25.5 8.5
4804 2015 3 New York Giants Washington Redskins New York Giants Washington Redskins 32 21 45 1 0.6 TRUE 0.145454545454546 1 26 24 18.3333333333333 19.6666666666667
4807 2015 3 Houston Texans Tampa Bay Buccaneers Houston Texans Tampa Bay Buccaneers 19 9 41 1 0.6 FALSE -0.236363636363636 0 18.6666666666667 20 16.3333333333333 26.6666666666667
4810 2015 3 St. Louis Rams Pittsburgh Steelers Pittsburgh Steelers St. Louis Rams 12 6 48.5 1 0.71 FALSE -0.446363636363636 0 16.6666666666667 22.3333333333333 25.3333333333333 17.3333333333333
4813 2015 3 Carolina Panthers New Orleans Saints Carolina Panthers New Orleans Saints 27 22 43 0 0.55 FALSE -0.140909090909091 0 23.6666666666667 16 20 28
4816 2015 3 Miami Dolphins Buffalo Bills Buffalo Bills Miami Dolphins 41 14 43.5 1 0.54 TRUE 0.030909090909091 0 17 24.6666666666667 33.3333333333333 22.6666666666667
4819 2015 3 New York Jets Philadelphia Eagles Philadelphia Eagles New York Jets 24 17 47 0 0.63 TRUE 0.202727272727273 0 22.6666666666667 13.6666666666667 19.3333333333333 21
4822 2015 3 Arizona Cardinals San Francisco 49ers Arizona Cardinals San Francisco 49ers 47 7 45 1 0.65 TRUE 0.240909090909091 0 42 16.3333333333333 15 31
4825 2015 3 Dallas Cowboys Atlanta Falcons Atlanta Falcons Dallas Cowboys 39 28 43.5 1 0.53 TRUE 0.0118181818181819 0 25 25 29.6666666666667 24
4828 2015 3 New England Patriots Jacksonville Jaguars New England Patriots Jacksonville Jaguars 51 17 49 1 0.72 TRUE 0.374545454545455 0 39.6666666666667 23.3333333333333 16.3333333333333 30.3333333333333
4831 2015 3 Minnesota Vikings San Diego Chargers Minnesota Vikings San Diego Chargers 31 14 45.5 1 0.67 FALSE -0.37 0 20 16.6666666666667 22 27.6666666666667
4834 2015 3 Cleveland Browns Oakland Raiders Oakland Raiders Cleveland Browns 27 20 44 1 0.59 TRUE 0.126363636363636 0 19.3333333333333 24 25.6666666666667 28.6666666666667
4837 2015 3 Seattle Seahawks Chicago Bears Seattle Seahawks Chicago Bears 26 0 43.5 1 0.62 FALSE -0.274545454545455 0 24.6666666666667 20.3333333333333 15.3333333333333 35
4840 2015 3 Tennessee Titans Indianapolis Colts Indianapolis Colts Tennessee Titans 35 33 46.5 1 0.78 TRUE 0.489090909090909 0 29.6666666666667 25.6666666666667 18.6666666666667 26.6666666666667
4843 2015 3 Baltimore Ravens Cincinnati Bengals Cincinnati Bengals Baltimore Ravens 28 24 45.5 1 0.62 TRUE 0.183636363636364 0 23.3333333333333 28 28.3333333333333 18.6666666666667
4846 2015 3 Detroit Lions Denver Broncos Denver Broncos Detroit Lions 24 12 45 1 0.73 FALSE -0.484545454545455 1 18.6666666666667 27.6666666666667 24.6666666666667 16.3333333333333
4849 2015 3 Green Bay Packers Kansas City Chiefs Green Bay Packers Kansas City Chiefs 38 28 47.5 1 0.66 TRUE 0.26 1 32 22.6666666666667 26.3333333333333 29.6666666666667
4852 2015 4 Pittsburgh Steelers Baltimore Ravens Baltimore Ravens Pittsburgh Steelers 23 20 44 0 0.57 TRUE 0.0881818181818184 1 24 18.75 23.25 26
4855 2015 4 Indianapolis Colts Jacksonville Jaguars Indianapolis Colts Jacksonville Jaguars 16 13 43.5 1 0.53 FALSE -0.102727272727273 0 18 23.25 15.5 26.75
4858 2015 4 Cincinnati Bengals Kansas City Chiefs Cincinnati Bengals Kansas City Chiefs 36 21 45 1 0.72 TRUE 0.374545454545455 0 30.25 19.25 25 31.25
4861 2015 4 San Diego Chargers Cleveland Browns San Diego Chargers Cleveland Browns 30 27 44.5 1 0.53 TRUE 0.0118181818181819 0 24 27.5 21.25 25.5
4864 2015 4 Denver Broncos Minnesota Vikings Denver Broncos Minnesota Vikings 23 20 43.5 1 0.66 FALSE -0.350909090909091 0 24.25 17.25 20 18.25
4867 2015 4 New Orleans Saints Dallas Cowboys New Orleans Saints Dallas Cowboys 26 20 48.5 1 0.55 FALSE -0.140909090909091 1 21.5 26 23.75 25.25
4870 2015 4 Buffalo Bills New York Giants New York Giants Buffalo Bills 24 10 46.5 1 0.66 FALSE -0.350909090909091 0 27.5 23 25.5 20.5
4873 2015 4 Atlanta Falcons Houston Texans Atlanta Falcons Houston Texans 48 21 47.5 1 0.63 TRUE 0.202727272727273 0 34.25 23.25 19.25 27
4876 2015 4 Miami Dolphins New York Jets New York Jets Miami Dolphins 27 14 42.5 1 0.54 FALSE -0.121818181818182 0 16.25 25.25 23.75 13.75
4879 2015 4 Washington Redskins Philadelphia Eagles Washington Redskins Philadelphia Eagles 23 20 45.5 0 0.5 TRUE -0.0454545454545454 0 19.5 19.75 19.5 21.5
4882 2015 4 Arizona Cardinals St. Louis Rams St. Louis Rams Arizona Cardinals 24 22 43.5 1 0.63 TRUE 0.202727272727273 0 37 18.25 18.5 22.25
4885 2015 4 San Francisco 49ers Green Bay Packers Green Bay Packers San Francisco 49ers 17 3 48 1 0.69 FALSE -0.408181818181818 0 12 27.5 28.25 17.75
4888 2015 4 Tampa Bay Buccaneers Carolina Panthers Carolina Panthers Tampa Bay Buccaneers 37 23 40.5 1 0.66 TRUE 0.26 0 18 29.25 27 17.75
4891 2015 4 Chicago Bears Oakland Raiders Chicago Bears Oakland Raiders 22 20 44.5 1 0.58 FALSE -0.198181818181818 0 17 31.25 24.25 27
4894 2015 4 Seattle Seahawks Detroit Lions Seattle Seahawks Detroit Lions 13 10 43 1 0.63 FALSE -0.293636363636364 1 21.75 17.75 16.5 24
4897 2015 5 Houston Texans Indianapolis Colts Indianapolis Colts Houston Texans 27 20 41 0 0.61 FALSE -0.255454545454545 1 19.4 27 19.8 22.6
4900 2015 5 Baltimore Ravens Cleveland Browns Cleveland Browns Baltimore Ravens 33 30 43 0 0.52 FALSE -0.0836363636363636 0 24.6 27.4 23.6 26.4
4903 2015 5 Tennessee Titans Buffalo Bills Buffalo Bills Tennessee Titans 14 13 43 1 0.71 FALSE -0.446363636363636 0 25.5 22.75 24.8 21
4906 2015 5 Cincinnati Bengals Seattle Seahawks Cincinnati Bengals Seattle Seahawks 27 24 44.5 0 0.55 FALSE -0.140909090909091 0 29.6 20.2 22.2 19.6
4909 2015 5 Kansas City Chiefs Chicago Bears Chicago Bears Kansas City Chiefs 18 17 44.5 1 0.7 FALSE -0.427272727272727 0 23.4 28.6 17.2 28.4
4912 2015 5 New York Giants San Francisco 49ers New York Giants San Francisco 49ers 30 27 44 1 0.62 TRUE 0.183636363636364 1 26.4 21.8 15 28
4915 2015 5 Philadelphia Eagles New Orleans Saints Philadelphia Eagles New Orleans Saints 39 17 49.5 1 0.6 TRUE 0.145454545454546 0 23.4 20.6 20.6 28.6
4918 2015 5 Oakland Raiders Denver Broncos Denver Broncos Oakland Raiders 16 10 45 1 0.67 FALSE -0.37 0 21.4 24.8 22.6 15.8
4921 2015 5 Detroit Lions Arizona Cardinals Arizona Cardinals Detroit Lions 42 17 46 1 0.69 TRUE 0.317272727272727 0 16.6 27.6 38 18
4924 2015 5 Atlanta Falcons Washington Redskins Atlanta Falcons Washington Redskins 25 19 48.5 1 0.72 FALSE -0.465454545454545 0 32.4 22.4 19.4 20.8
4927 2015 5 Dallas Cowboys New England Patriots New England Patriots Dallas Cowboys 30 6 50.5 1 0.78 FALSE -0.58 0 20.2 26.2 37.25 19
4930 2015 5 Tampa Bay Buccaneers Jacksonville Jaguars Tampa Bay Buccaneers Jacksonville Jaguars 38 31 41.5 1 0.58 TRUE 0.107272727272727 0 22 29.6 18.6 29
4933 2015 5 Green Bay Packers St. Louis Rams Green Bay Packers St. Louis Rams 24 10 46 1 0.69 FALSE -0.408181818181818 0 27.4 16.2 16.8 22.6
4936 2015 5 San Diego Chargers Pittsburgh Steelers Pittsburgh Steelers San Diego Chargers 24 20 45.5 1 0.63 FALSE -0.293636363636364 1 23.2 26.8 24 19
4939 2015 6 New Orleans Saints Atlanta Falcons New Orleans Saints Atlanta Falcons 31 21 52.5 1 0.62 FALSE -0.274545454545455 1 22.3333333333333 27.3333333333333 30.5 23.8333333333333
4942 2015 6 New York Jets Washington Redskins New York Jets Washington Redskins 34 20 40 1 0.52 TRUE -0.00727272727272721 0 25.8 15 19.5 23
4945 2015 6 Tennessee Titans Miami Dolphins Miami Dolphins Tennessee Titans 38 10 43.5 1 0.53 TRUE 0.0118181818181819 0 22.4 25.8 20.6 22.2
4948 2015 6 Seattle Seahawks Carolina Panthers Carolina Panthers Seattle Seahawks 27 23 41 0 0.59 FALSE -0.217272727272727 0 22.3333333333333 20.8333333333333 27 18.8
4951 2015 6 Green Bay Packers San Diego Chargers Green Bay Packers San Diego Chargers 27 20 50.5 1 0.75 FALSE -0.522727272727273 0 27.3333333333333 16.8333333333333 22.6666666666667 26.8333333333333
4954 2015 6 San Francisco 49ers Baltimore Ravens San Francisco 49ers Baltimore Ravens 25 20 43.5 1 0.62 TRUE 0.183636363636364 0 16.6666666666667 26.6666666666667 23.8333333333333 27
4957 2015 6 Jacksonville Jaguars Houston Texans Houston Texans Jacksonville Jaguars 31 20 43 1 0.7 TRUE 0.336363636363636 0 18.8333333333333 29.3333333333333 21.3333333333333 25.8333333333333
4960 2015 6 Buffalo Bills Cincinnati Bengals Cincinnati Bengals Buffalo Bills 34 21 42 1 0.63 TRUE 0.202727272727273 0 24.1666666666667 23.1666666666667 30.3333333333333 20.3333333333333
4963 2015 6 Pittsburgh Steelers Arizona Cardinals Pittsburgh Steelers Arizona Cardinals 25 13 45 1 0.79 FALSE -0.599090909090909 0 24.1666666666667 18 33.8333333333333 19.1666666666667
4966 2015 6 Minnesota Vikings Kansas City Chiefs Minnesota Vikings Kansas City Chiefs 16 10 43 0 0.52 TRUE -0.00727272727272721 0 19.2 16.6 21.1666666666667 26.5
4969 2015 6 Indianapolis Colts New England Patriots New England Patriots Indianapolis Colts 34 27 54 1 0.77 TRUE 0.47 1 21 24.5 36.6 20.6
4972 2015 6 Detroit Lions Chicago Bears Detroit Lions Chicago Bears 37 34 45.5 1 0.79 TRUE 0.508181818181818 0 20 28.6666666666667 20 29.8333333333333
4975 2015 6 Cleveland Browns Denver Broncos Denver Broncos Cleveland Browns 26 23 42 1 0.54 TRUE 0.030909090909091 0 23.5 26.3333333333333 23.1666666666667 17
4978 2015 6 Philadelphia Eagles New York Giants Philadelphia Eagles New York Giants 27 7 50.5 1 0.7 FALSE -0.427272727272727 1 24 18.3333333333333 23.1666666666667 22.6666666666667
4981 2015 7 San Francisco 49ers Seattle Seahawks Seattle Seahawks San Francisco 49ers 20 3 42 1 0.57 FALSE -0.179090909090909 1 14.7142857142857 25.7142857142857 22 18.2857142857143
4984 2015 7 Carolina Panthers Philadelphia Eagles Carolina Panthers Philadelphia Eagles 27 16 46 1 0.51 FALSE -0.0645454545454546 1 27 18.3333333333333 22.8571428571429 19.5714285714286
4987 2015 7 New York Giants Dallas Cowboys New York Giants Dallas Cowboys 27 20 44.5 1 0.63 TRUE 0.202727272727273 0 23.7142857142857 22.2857142857143 20.1666666666667 26.3333333333333
4990 2015 7 Washington Redskins Tampa Bay Buccaneers Washington Redskins Tampa Bay Buccaneers 31 30 41.5 1 0.54 TRUE 0.030909090909091 0 21.1428571428571 24 23.3333333333333 29.8333333333333
4993 2015 7 New England Patriots New York Jets New England Patriots New York Jets 30 23 47.5 1 0.66 TRUE 0.26 0 35.5 21 25.3333333333333 17.5
4996 2015 7 San Diego Chargers Oakland Raiders Oakland Raiders San Diego Chargers 37 29 48.5 1 0.67 TRUE 0.279090909090909 0 23.5714285714286 28.2857142857143 24 25.5
4999 2015 7 Detroit Lions Minnesota Vikings Minnesota Vikings Detroit Lions 28 19 45 1 0.63 TRUE 0.202727272727273 0 19.8571428571429 28.5714285714286 20.6666666666667 17
5002 2015 7 Miami Dolphins Houston Texans Miami Dolphins Houston Texans 44 26 45.5 1 0.54 TRUE 0.030909090909091 0 24.5 22.8333333333333 22 28.4285714285714
5005 2015 7 St. Louis Rams Cleveland Browns St. Louis Rams Cleveland Browns 24 6 44 1 0.61 FALSE -0.255454545454545 0 18 19.8333333333333 21 26
5008 2015 7 Indianapolis Colts New Orleans Saints New Orleans Saints Indianapolis Colts 27 21 53 1 0.72 FALSE -0.465454545454545 0 21 24.8571428571429 23 26.4285714285714
5011 2015 7 Tennessee Titans Atlanta Falcons Atlanta Falcons Tennessee Titans 10 7 45.5 1 0.57 FALSE -0.179090909090909 0 19.8333333333333 23.1666666666667 27.5714285714286 21.4285714285714
5014 2015 7 Jacksonville Jaguars Buffalo Bills Jacksonville Jaguars Buffalo Bills 34 31 41.5 1 0.68 TRUE 0.298181818181818 0 21 29.5714285714286 25.1428571428571 24.7142857142857
5017 2015 7 Kansas City Chiefs Pittsburgh Steelers Kansas City Chiefs Pittsburgh Steelers 23 13 41.5 0 0.55 TRUE 0.05 0 21.4285714285714 24.5714285714286 22.5714285714286 18.7142857142857
5020 2015 7 Arizona Cardinals Baltimore Ravens Arizona Cardinals Baltimore Ravens 26 18 49.5 1 0.63 FALSE -0.293636363636364 1 32.7142857142857 19 23 26.8571428571429
5023 2015 8 New England Patriots Miami Dolphins New England Patriots Miami Dolphins 36 7 51.5 1 0.69 FALSE -0.408181818181818 1 35.5714285714286 19 22 24.7142857142857
5026 2015 8 Chicago Bears Minnesota Vikings Minnesota Vikings Chicago Bears 23 20 44 1 0.76 FALSE -0.541818181818182 0 20 28.8571428571429 21 17.4285714285714
5029 2015 8 Oakland Raiders New York Jets Oakland Raiders New York Jets 34 20 44 1 0.6 TRUE 0.145454545454546 0 25.4285714285714 24.7142857142857 24.5714285714286 19.8571428571429
5032 2015 8 Dallas Cowboys Seattle Seahawks Seattle Seahawks Dallas Cowboys 13 12 41.5 1 0.7 FALSE -0.427272727272727 0 19 24.4285714285714 20.875 17.5
5035 2015 8 St. Louis Rams San Francisco 49ers St. Louis Rams San Francisco 49ers 27 6 41 1 0.62 FALSE -0.274545454545455 0 19.2857142857143 17.8571428571429 13.625 25.875
5038 2015 8 Pittsburgh Steelers Cincinnati Bengals Cincinnati Bengals Pittsburgh Steelers 16 10 49.5 1 0.65 FALSE -0.331818181818182 0 21 18.375 28.2857142857143 18.8571428571429
5041 2015 8 Denver Broncos Green Bay Packers Denver Broncos Green Bay Packers 29 10 45.5 1 0.62 FALSE -0.274545454545455 1 24 16 24.8571428571429 18.5714285714286
5044 2015 8 Kansas City Chiefs Detroit Lions Kansas City Chiefs Detroit Lions 45 10 45 1 0.66 TRUE 0.26 0 24.375 22.75 18.625 30.625
5047 2015 8 Houston Texans Tennessee Titans Houston Texans Tennessee Titans 20 6 43 1 0.52 FALSE -0.0836363636363636 0 21.75 25.625 17.8571428571429 22.7142857142857
5050 2015 8 Baltimore Ravens San Diego Chargers Baltimore Ravens San Diego Chargers 29 26 50.5 1 0.65 TRUE 0.240909090909091 0 23.75 26.75 23.875 28.375
5053 2015 8 Cleveland Browns Arizona Cardinals Arizona Cardinals Cleveland Browns 34 20 46 1 0.61 TRUE 0.164545454545455 0 20.875 27 32.875 19.125
5056 2015 8 Atlanta Falcons Tampa Bay Buccaneers Tampa Bay Buccaneers Atlanta Falcons 23 20 47.5 1 0.57 FALSE -0.179090909090909 0 26.625 21.625 23.2857142857143 28.4285714285714
5059 2015 8 New Orleans Saints New York Giants New Orleans Saints New York Giants 52 49 52 1 0.77 TRUE 0.47 0 26.625 29.25 26.875 26
5062 2015 8 Carolina Panthers Indianapolis Colts Carolina Panthers Indianapolis Colts 29 26 45.5 1 0.59 TRUE 0.126363636363636 1 27.2857142857143 19.4285714285714 21.625 25.375
5065 2015 9 Cincinnati Bengals Cleveland Browns Cincinnati Bengals Cleveland Browns 31 10 46 1 0.66 FALSE -0.350909090909091 1 28.625 17.75 19.6666666666667 27.4444444444444
5068 2015 9 New York Jets Jacksonville Jaguars New York Jets Jacksonville Jaguars 28 23 42.5 1 0.57 TRUE 0.0881818181818181 0 25 20.25 21.25 29.375
5071 2015 9 Dallas Cowboys Philadelphia Eagles Philadelphia Eagles Dallas Cowboys 33 27 44 1 0.62 TRUE 0.183636363636364 1 20 25.5 24.125 20.5
5074 2015 9 Buffalo Bills Miami Dolphins Buffalo Bills Miami Dolphins 33 17 44 1 0.58 TRUE 0.107272727272727 0 26.125 23.75 21.375 25.75
5077 2015 9 Carolina Panthers Green Bay Packers Carolina Panthers Green Bay Packers 37 29 46 1 0.64 TRUE 0.221818181818182 0 28.5 20.625 25.375 20.875
5080 2015 9 New England Patriots Washington Redskins New England Patriots Washington Redskins 27 10 51.5 1 0.67 FALSE -0.37 0 34.5 17.875 19.75 24.375
5083 2015 9 Minnesota Vikings St. Louis Rams Minnesota Vikings St. Louis Rams 21 18 40 1 0.57 FALSE -0.179090909090909 0 21 17.5 19.125 18.25
5086 2015 9 Indianapolis Colts Denver Broncos Indianapolis Colts Denver Broncos 27 24 45.5 1 0.64 TRUE 0.221818181818182 0 22.2222222222222 25.2222222222222 24 17.375
5089 2015 9 New Orleans Saints Tennessee Titans Tennessee Titans New Orleans Saints 34 28 50 1 0.6 TRUE 0.145454545454546 0 26.7777777777778 29.7777777777778 19.875 23.375
5092 2015 9 Pittsburgh Steelers Oakland Raiders Pittsburgh Steelers Oakland Raiders 38 35 48 1 0.64 TRUE 0.221818181818182 0 22.8888888888889 20.2222222222222 26.625 26.375
5095 2015 9 San Francisco 49ers Atlanta Falcons San Francisco 49ers Atlanta Falcons 17 16 43.5 0 0.54 TRUE 0.030909090909091 0 14 24.7777777777778 25.4444444444444 21.1111111111111
5098 2015 9 Tampa Bay Buccaneers New York Giants New York Giants Tampa Bay Buccaneers 32 18 49 1 0.75 TRUE 0.431818181818182 0 22.625 28.875 27.4444444444444 25.1111111111111
5101 2015 9 San Diego Chargers Chicago Bears Chicago Bears San Diego Chargers 22 19 49.5 1 0.68 FALSE -0.389090909090909 1 23.3333333333333 27.6666666666667 20.25 27.625
5104 2015 10 New York Jets Buffalo Bills Buffalo Bills New York Jets 22 17 42 1 0.72 FALSE -0.465454545454545 1 24.1111111111111 20.4444444444444 25.6666666666667 23
5107 2015 10 St. Louis Rams Chicago Bears Chicago Bears St. Louis Rams 37 13 42.5 1 0.55 TRUE 0.05 0 18.4444444444444 20.3333333333333 22.1111111111111 26
5110 2015 10 Baltimore Ravens Jacksonville Jaguars Jacksonville Jaguars Baltimore Ravens 22 20 47 1 0.61 FALSE -0.255454545454545 0 23.3333333333333 26.2222222222222 21.3333333333333 28.3333333333333
5113 2015 10 Seattle Seahawks Arizona Cardinals Arizona Cardinals Seattle Seahawks 39 32 43.5 0 0.63 FALSE -0.293636363636364 1 22.1111111111111 19.8888888888889 33.5555555555556 20.5555555555556
5116 2015 10 New York Giants New England Patriots New England Patriots New York Giants 27 26 52.5 1 0.7 TRUE 0.336363636363636 0 27.3 25.3 33.6666666666667 18.7777777777778
5119 2015 10 Tennessee Titans Carolina Panthers Carolina Panthers Tennessee Titans 27 10 43 1 0.68 FALSE -0.389090909090909 0 18.7777777777778 23.7777777777778 28.3333333333333 19.4444444444444
5122 2015 10 Tampa Bay Buccaneers Dallas Cowboys Tampa Bay Buccaneers Dallas Cowboys 10 6 43.5 1 0.74 FALSE -0.503636363636364 0 21.2222222222222 26.3333333333333 18.4444444444444 23.7777777777778
5125 2015 10 Oakland Raiders Minnesota Vikings Minnesota Vikings Oakland Raiders 30 14 44 1 0.77 FALSE -0.560909090909091 0 25.2222222222222 26.7777777777778 22 17.1111111111111
5128 2015 10 Denver Broncos Kansas City Chiefs Kansas City Chiefs Denver Broncos 29 13 42 1 0.62 FALSE -0.274545454545455 0 22.7777777777778 18.6666666666667 24.8888888888889 21.6666666666667
5131 2015 10 Philadelphia Eagles Miami Dolphins Miami Dolphins Philadelphia Eagles 20 19 49.5 1 0.62 FALSE -0.274545454545455 0 23.5555555555556 20.4444444444444 21.2222222222222 25
5134 2015 10 Green Bay Packers Detroit Lions Detroit Lions Green Bay Packers 18 16 50 1 0.81 FALSE -0.637272727272727 0 24.3333333333333 20.5555555555556 18.5555555555556 29
5137 2015 10 Washington Redskins New Orleans Saints Washington Redskins New Orleans Saints 47 14 52 1 0.75 TRUE 0.431818181818182 0 22.7777777777778 23.2222222222222 25.5 31.5
5140 2015 10 Pittsburgh Steelers Cleveland Browns Pittsburgh Steelers Cleveland Browns 30 9 43 1 0.67 FALSE -0.37 0 23.6 19.1 18.6 27.7
5143 2015 10 Cincinnati Bengals Houston Texans Houston Texans Cincinnati Bengals 10 6 46.5 1 0.63 FALSE -0.293636363636364 1 26.1111111111111 16.8888888888889 20.4444444444444 23.4444444444444
5146 2015 11 Jacksonville Jaguars Tennessee Titans Jacksonville Jaguars Tennessee Titans 19 13 41.5 1 0.68 FALSE -0.389090909090909 1 21.1 26.8 18.2 23.3
5149 2015 11 Philadelphia Eagles Tampa Bay Buccaneers Tampa Bay Buccaneers Philadelphia Eagles 45 17 45.5 1 0.6 TRUE 0.145454545454546 0 22.9 22.9 23.6 25.4
5152 2015 11 Atlanta Falcons Indianapolis Colts Indianapolis Colts Atlanta Falcons 24 21 47.5 1 0.57 FALSE -0.179090909090909 0 25 21.4 22.4 24.8
5155 2015 11 Minnesota Vikings Green Bay Packers Green Bay Packers Minnesota Vikings 30 13 45 1 0.62 FALSE -0.274545454545455 0 21.1 18.4 24.9 19.8
5158 2015 11 Seattle Seahawks San Francisco 49ers Seattle Seahawks San Francisco 49ers 29 13 40 0 0.57 FALSE -0.179090909090909 0 22.8 19.2 13.9 25.2
5161 2015 11 Chicago Bears Denver Broncos Denver Broncos Chicago Bears 17 15 41.5 1 0.54 FALSE -0.121818181818182 0 21.4 25.1 22.2 18.3
5164 2015 11 Arizona Cardinals Cincinnati Bengals Arizona Cardinals Cincinnati Bengals 34 31 48 1 0.65 TRUE 0.240909090909091 1 33.6 21.6 26.6 18.6
5167 2015 11 San Diego Chargers Kansas City Chiefs Kansas City Chiefs San Diego Chargers 33 3 45.5 1 0.68 FALSE -0.389090909090909 0 21.3 28.2 25.7 19.8
5170 2015 11 Miami Dolphins Dallas Cowboys Dallas Cowboys Miami Dolphins 24 14 45 0 0.54 TRUE 0.030909090909091 0 20.5 24.9 19 22.8
5173 2015 11 Houston Texans New York Jets Houston Texans New York Jets 24 17 40 0 0.53 FALSE -0.102727272727273 0 20.8 22.8 23.4 20.8
5176 2015 11 Baltimore Ravens St. Louis Rams Baltimore Ravens St. Louis Rams 16 13 41.5 1 0.58 FALSE -0.198181818181818 0 22.6 24.9 17.9 19.9
5179 2015 11 Carolina Panthers Washington Redskins Carolina Panthers Washington Redskins 44 16 44.5 1 0.6 TRUE 0.145454545454546 0 29.9 19.1 22.1 25.3
5182 2015 11 Detroit Lions Oakland Raiders Detroit Lions Oakland Raiders 18 13 50 1 0.66 FALSE -0.350909090909091 0 18.5 27.4 24 25.9
5185 2015 11 New England Patriots Buffalo Bills New England Patriots Buffalo Bills 20 13 47.5 1 0.62 FALSE -0.274545454545455 1 32.3 18.2 24.4 22.7
5188 2015 12 Dallas Cowboys Carolina Panthers Carolina Panthers Dallas Cowboys 33 14 44.5 1 0.72 TRUE 0.374545454545455 1 18.5454545454545 23.7272727272727 30.1818181818182 18.6363636363636
5191 2015 12 Detroit Lions Philadelphia Eagles Detroit Lions Philadelphia Eagles 45 14 47 1 0.65 TRUE 0.240909090909091 1 20.9090909090909 26.1818181818182 22.0909090909091 24.9090909090909
5194 2015 12 Green Bay Packers Chicago Bears Chicago Bears Green Bay Packers 17 13 45 1 0.65 FALSE -0.331818181818182 1 23.8181818181818 19.5454545454545 21 24
5197 2015 12 Jacksonville Jaguars San Diego Chargers San Diego Chargers Jacksonville Jaguars 31 25 47 1 0.61 TRUE 0.164545454545455 0 21.4545454545455 27.1818181818182 22.1818181818182 27.9090909090909
5200 2015 12 Kansas City Chiefs Buffalo Bills Kansas City Chiefs Buffalo Bills 30 22 41 1 0.53 TRUE 0.0118181818181819 0 26.0909090909091 20 24.1818181818182 23.3636363636364
5203 2015 12 Atlanta Falcons Minnesota Vikings Minnesota Vikings Atlanta Falcons 20 10 45 1 0.52 FALSE -0.0836363636363636 0 23.6363636363636 21.2727272727273 21 17.6363636363636
5206 2015 12 New York Jets Miami Dolphins New York Jets Miami Dolphins 38 20 43.5 1 0.55 TRUE 0.05 0 24.7272727272727 20.7272727272727 20.4545454545455 26.0909090909091
5209 2015 12 Tennessee Titans Oakland Raiders Oakland Raiders Tennessee Titans 24 21 45 1 0.69 FALSE -0.408181818181818 0 18.4545454545455 23.3636363636364 24 25.4545454545455
5212 2015 12 Denver Broncos New England Patriots Denver Broncos New England Patriots 30 24 43 0 0.52 FALSE -0.0836363636363636 1 22.9090909090909 18.8181818181818 31.5454545454545 19.2727272727273
5215 2015 12 Houston Texans New Orleans Saints Houston Texans New Orleans Saints 24 6 51 1 0.67 FALSE -0.37 0 21.0909090909091 21.2727272727273 23.7272727272727 30.8181818181818
5218 2015 12 Washington Redskins New York Giants Washington Redskins New York Giants 20 14 48 1 0.79 FALSE -0.599090909090909 0 21.9090909090909 24.2727272727273 26.0909090909091 24.8181818181818
5221 2015 12 Cincinnati Bengals St. Louis Rams Cincinnati Bengals St. Louis Rams 31 7 42 1 0.55 FALSE -0.140909090909091 0 27 17.5454545454545 16.9090909090909 20.9090909090909
5224 2015 12 Seattle Seahawks Pittsburgh Steelers Seattle Seahawks Pittsburgh Steelers 39 30 46.5 1 0.57 TRUE 0.0881818181818181 0 24.2727272727273 20.1818181818182 24.1818181818182 20.9090909090909
5227 2015 12 Indianapolis Colts Tampa Bay Buccaneers Indianapolis Colts Tampa Bay Buccaneers 25 12 46.5 1 0.7 FALSE -0.427272727272727 0 22.6363636363636 23.6363636363636 22.5454545454545 25.3636363636364
5230 2015 12 San Francisco 49ers Arizona Cardinals Arizona Cardinals San Francisco 49ers 19 13 45 1 0.58 FALSE -0.198181818181818 0 13.8181818181818 24.6363636363636 32.2727272727273 20.8181818181818
5233 2015 12 Cleveland Browns Baltimore Ravens Baltimore Ravens Cleveland Browns 33 27 41 1 0.52 TRUE -0.00727272727272721 1 19.3636363636364 28.1818181818182 23.5454545454545 25.0909090909091
5236 2015 13 Detroit Lions Green Bay Packers Green Bay Packers Detroit Lions 27 23 46.5 1 0.69 TRUE 0.317272727272727 1 21.0833333333333 26.25 24.0833333333333 19.8333333333333
5239 2015 13 Tampa Bay Buccaneers Atlanta Falcons Tampa Bay Buccaneers Atlanta Falcons 23 19 46.5 1 0.57 FALSE -0.179090909090909 0 22.5833333333333 24.8333333333333 23.25 21.4166666666667
5242 2015 13 Cleveland Browns Cincinnati Bengals Cincinnati Bengals Cleveland Browns 37 3 44 1 0.66 FALSE -0.350909090909091 0 18 28.9166666666667 27.8333333333333 16.3333333333333
5245 2015 13 New Orleans Saints Carolina Panthers Carolina Panthers New Orleans Saints 41 38 50.5 1 0.65 TRUE 0.240909090909091 0 24.9166666666667 31.6666666666667 31.0833333333333 20.25
5248 2015 13 St. Louis Rams Arizona Cardinals Arizona Cardinals St. Louis Rams 27 3 43 1 0.65 FALSE -0.331818181818182 0 15.75 21.4166666666667 31.8333333333333 19.3333333333333
5251 2015 13 Tennessee Titans Jacksonville Jaguars Tennessee Titans Jacksonville Jaguars 42 39 43.5 1 0.52 TRUE -0.00727272727272721 0 20.4166666666667 24.6666666666667 22.9166666666667 28.4166666666667
5254 2015 13 Minnesota Vikings Seattle Seahawks Seattle Seahawks Minnesota Vikings 38 7 43 1 0.57 TRUE 0.0881818181818181 0 19.8333333333333 19.3333333333333 25.4166666666667 19.0833333333333
5257 2015 13 Oakland Raiders Kansas City Chiefs Kansas City Chiefs Oakland Raiders 34 20 45.5 1 0.73 TRUE 0.393636363636364 0 23.6666666666667 26.1666666666667 26.75 20
5260 2015 13 Miami Dolphins Baltimore Ravens Miami Dolphins Baltimore Ravens 15 13 43 1 0.62 FALSE -0.274545454545455 0 20 25 22.6666666666667 24.25
5263 2015 13 New York Giants New York Jets New York Jets New York Giants 23 20 46 1 0.64 FALSE -0.312727272727273 0 25.5833333333333 24.6666666666667 24.5833333333333 20.6666666666667
5266 2015 13 San Diego Chargers Denver Broncos Denver Broncos San Diego Chargers 17 3 45 1 0.56 FALSE -0.16 0 20.5833333333333 27 22.4166666666667 17.5
5269 2015 13 Pittsburgh Steelers Indianapolis Colts Pittsburgh Steelers Indianapolis Colts 45 10 50.5 1 0.69 TRUE 0.317272727272727 1 25.9166666666667 20 21.5833333333333 25.4166666666667
5272 2015 13 Buffalo Bills Houston Texans Buffalo Bills Houston Texans 30 21 42 1 0.57 TRUE 0.0881818181818181 0 24.6666666666667 23.1666666666667 21.0833333333333 22
5275 2015 13 New England Patriots Philadelphia Eagles Philadelphia Eagles New England Patriots 35 28 49 0 0.54 FALSE -0.121818181818182 0 31.25 20.5833333333333 23.1666666666667 25.1666666666667
5278 2015 13 Chicago Bears San Francisco 49ers San Francisco 49ers Chicago Bears 26 20 43 0 0.53 FALSE -0.102727272727273 0 20.9166666666667 24.1666666666667 14.8333333333333 24.25
5281 2015 13 Washington Redskins Dallas Cowboys Dallas Cowboys Washington Redskins 19 16 43.5 1 0.62 FALSE -0.274545454545455 1 21.4166666666667 23.8333333333333 18.5833333333333 23.0833333333333
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment