Skip to content

Instantly share code, notes, and snippets.

@wetherc
Last active August 29, 2015 14:04
Show Gist options
  • Save wetherc/5a6d4a4e17dae00a4e28 to your computer and use it in GitHub Desktop.
Save wetherc/5a6d4a4e17dae00a4e28 to your computer and use it in GitHub Desktop.
############################################################
# Hosmer-Lemeshow test
############################################################
hosmerlem = function(observed, predicted, g = 10) {
cutyhat = cut(predicted,
breaks = quantile(predicted,
probs=seq(0, 1, 1/g)),
include.lowest=TRUE)
obs = xtabs(cbind(1 - observed, observed) ~ cutyhat)
expect = xtabs(cbind(1 - predicted, predicted) ~ cutyhat)
chisq = sum((obs - expect)^2/expect)
P = 1 - pchisq(chisq, g - 2)
return(list(cHat = chisq, p.value = P))
}
############################################################
# Pigeon-Heyse test
############################################################
pigeonheyse <- function(observed, predicted, g = 10) {
cutyhat <- as.character(cut(predicted,
breaks = quantile(predicted,
probs=seq(0, 1, 1/g)),
include.lowest=TRUE))
data$cutyhat <- cutyhat
unq <- unique(cutyhat)
for(i in 1:g) {
data[data$cutyhat == unq[i],4] <- i
}
Phi = NULL
for(i in 1:g) {
Phi <- rbind(Phi, (sum(data[data$observed==1 & data$cutyhat==i, 2] *
(1 - data[data$observed==1 & data$cutyhat==i, 2]))) /
(length(data[data$observed==1 & data$cutyhat==i, 2]) *
mean(data[data$observed==1 & data$cutyhat==i, 2]) *
(1 - mean(data[data$observed==1 & data$cutyhat==i, 2])))
)
}
Phi <- cbind(Phi, Phi)
cutyhat = cut(predicted,
breaks = quantile(predicted,
probs=seq(0, 1, 1/g)),
include.lowest=TRUE)
obs = xtabs(cbind(1 - observed, observed) ~ cutyhat)
expect = xtabs(cbind(1 - predicted, predicted) ~ cutyhat)
chisq = sum((obs - expect)^2/(Phi*expect))
P = 1 - pchisq(chisq, g - 2)
return(list(J2 = chisq, p.value = P))
}
############################################################
# Basic data manipulation
############################################################
year <- c(as.character(nflprobdata$YEAR.WEEK))
year <- strsplit(year, "-")
year <- as.numeric(lapply(year, "[[",1))
data <- data.frame(year = year,
predicted = nflprobdata$Home.Team.Probability,
observed = nflprobdata$Did.Home.Team.Win.)
data <- data[order(data[ ,2]), ]
rm(year)
############################################################
# Find our C-hat and J^2!
############################################################
# Overall
with(data,
hosmerlem(observed,
predicted, g = 10))
with(data,
pigeonheyse(observed,
predicted, g = 10))
years <- c(unique(data$year))
for(i in 1:length(years)) {
print(years[i])
with(data[data$year == years[i], ],
print(hosmerlem(observed,
predicted, g = 10)))
with(data[data$year == years[i], ],
print(pigeonheyse(observed,
predicted, g = 10)))
}
YEAR-WEEK Away Team Home Team Home Team Probability Did Home Team Win? Away Team Probability Home x Away
2009-04 Giants Chiefs 0.32 0 0.68 0.2176
2009-04 Bengals Browns 0.39 0 0.61 0.2379
2009-04 Ravens Patriots 0.41 1 0.59 0.2419
2009-04 Bills Dolphins 0.5 1 0.5 0.25
2009-04 Titans Jaguars 0.51 1 0.49 0.2499
2009-04 Chargers Steelers 0.53 1 0.47 0.2491
2009-04 Packers Vikings 0.58 1 0.42 0.2436
2009-04 Raiders Texans 0.68 1 0.32 0.2176
2009-04 Cowboys Broncos 0.72 1 0.28 0.2016
2009-04 Jets Saints 0.73 1 0.27 0.1971
2009-04 Rams 49ers 0.77 1 0.23 0.1771
2009-04 Lions Bears 0.8 1 0.2 0.16
2009-04 Buccaneers Redskins 0.8 1 0.2 0.16
2009-04 Seahawks Colts 0.87 1 0.13 0.1131
2009-05 Steelers Lions 0.27 0 0.73 0.1971
2009-05 Colts Titans 0.29 0 0.71 0.2059
2009-05 Vikings Rams 0.35 0 0.65 0.2275
2009-05 Jaguars Seahawks 0.35 1 0.65 0.2275
2009-05 Cowboys Chiefs 0.36 0 0.64 0.2304
2009-05 Jets Dolphins 0.43 1 0.57 0.2451
2009-05 Redskins Panthers 0.53 1 0.47 0.2491
2009-05 Falcons 49ers 0.63 0 0.37 0.2331
2009-05 Texans Cardinals 0.63 1 0.37 0.2331
2009-05 Bengals Ravens 0.66 0 0.34 0.2244
2009-05 Browns Bills 0.71 0 0.29 0.2059
2009-05 Patriots Broncos 0.74 1 0.26 0.1924
2009-05 Buccaneers Eagles 0.87 1 0.13 0.1131
2009-05 Raiders Giants 0.89 1 0.11 0.0979
2009-06 Eagles Raiders 0.13 1 0.87 0.1131
2009-06 Broncos Chargers 0.37 0 0.63 0.2331
2009-06 Panthers Buccaneers 0.43 0 0.57 0.2451
2009-06 Cardinals Seahawks 0.54 0 0.46 0.2484
2009-06 Titans Patriots 0.58 1 0.42 0.2436
2009-06 Ravens Vikings 0.6 1 0.4 0.24
2009-06 Bears Falcons 0.61 1 0.39 0.2379
2009-06 Texans Bengals 0.62 0 0.38 0.2356
2009-06 Giants Saints 0.62 1 0.38 0.2356
2009-06 Chiefs Redskins 0.75 0 0.25 0.1875
2009-06 Bills Jets 0.77 0 0.23 0.1771
2009-06 Lions Packers 0.79 1 0.21 0.1659
2009-06 Rams Jaguars 0.86 1 0.14 0.1204
2009-06 Browns Steelers 0.91 1 0.09 0.0819
2009-07 Colts Rams 0.05 0 0.95 0.0475
2009-07 Patriots Buccaneers 0.14 0 0.86 0.1204
2009-07 Saints Dolphins 0.14 0 0.86 0.1204
2009-07 Packers Browns 0.16 0 0.84 0.1344
2009-07 Chargers Chiefs 0.19 0 0.81 0.1539
2009-07 Eagles Redskins 0.36 0 0.64 0.2304
2009-07 Jets Raiders 0.37 0 0.63 0.2331
2009-07 Bills Panthers 0.44 0 0.56 0.2464
2009-07 Bears Bengals 0.53 1 0.47 0.2491
2009-07 49ers Texans 0.69 1 0.31 0.2139
2009-07 Falcons Cowboys 0.69 1 0.31 0.2139
2009-07 Vikings Steelers 0.77 1 0.23 0.1771
2009-07 Cardinals Giants 0.78 0 0.22 0.1716
2009-08 Broncos Ravens 0.27 1 0.73 0.1971
2009-08 Texans Bills 0.35 0 0.65 0.2275
2009-08 Giants Eagles 0.42 1 0.58 0.2436
2009-08 Jaguars Titans 0.46 1 0.54 0.2484
2009-08 Rams Lions 0.59 0 0.41 0.2419
2009-08 Dolphins Jets 0.6 0 0.4 0.24
2009-08 Vikings Packers 0.74 0 0.26 0.1924
2009-08 Seahawks Cowboys 0.83 1 0.17 0.1411
2009-08 Panthers Cardinals 0.84 0 0.16 0.1344
2009-08 Falcons Saints 0.88 1 0.12 0.1056
2009-08 Browns Bears 0.9 1 0.1 0.09
2009-08 Raiders Chargers 0.92 1 0.08 0.0736
2009-08 49ers Colts 0.93 1 0.07 0.0651
2009-09 Packers Buccaneers 0.12 1 0.88 0.1056
2009-09 Chargers Giants 0.49 0 0.51 0.2499
2009-09 Cowboys Eagles 0.54 0 0.46 0.2484
2009-09 Ravens Bengals 0.59 1 0.41 0.2419
2009-09 Steelers Broncos 0.62 0 0.38 0.2356
2009-09 Cardinals Bears 0.66 0 0.34 0.2244
2009-09 Titans 49ers 0.67 0 0.33 0.2211
2009-09 Redskins Falcons 0.74 1 0.26 0.1924
2009-09 Lions Seahawks 0.81 1 0.19 0.1539
2009-09 Dolphins Patriots 0.83 1 0.17 0.1411
2009-09 Chiefs Jaguars 0.83 1 0.17 0.1411
2009-09 Texans Colts 0.86 1 0.14 0.1204
2009-09 Panthers Saints 0.92 1 0.08 0.0736
2009-10 Saints Rams 0.08 0 0.92 0.0736
2009-10 Ravens Browns 0.14 0 0.86 0.1204
2009-10 Broncos Redskins 0.17 1 0.83 0.1411
2009-10 Cowboys Packers 0.46 1 0.54 0.2484
2009-10 Falcons Panthers 0.49 1 0.51 0.2499
2009-10 Bears 49ers 0.54 1 0.46 0.2484
2009-10 Eagles Chargers 0.62 1 0.38 0.2356
2009-10 Seahawks Cardinals 0.63 1 0.37 0.2331
2009-10 Chiefs Raiders 0.65 0 0.35 0.2275
2009-10 Bills Titans 0.68 1 0.32 0.2176
2009-10 Patriots Colts 0.69 1 0.31 0.2139
2009-10 Jaguars Jets 0.72 0 0.28 0.2016
2009-10 Bengals Steelers 0.74 0 0.26 0.1924
2009-10 Buccaneers Dolphins 0.79 1 0.21 0.1659
2009-10 Lions Vikings 0.92 1 0.08 0.0736
2009-11 Saints Buccaneers 0.09 0 0.91 0.0819
2009-11 Steelers Chiefs 0.1 1 0.9 0.09
2009-11 Bengals Raiders 0.13 1 0.87 0.1131
2009-11 Eagles Bears 0.32 0 0.68 0.2176
2009-11 Colts Ravens 0.34 0 0.66 0.2244
2009-11 Cardinals Rams 0.38 0 0.62 0.2356
2009-11 Chargers Broncos 0.59 0 0.41 0.2419
2009-11 Dolphins Panthers 0.65 0 0.35 0.2275
2009-11 Browns Lions 0.67 1 0.33 0.2211
2009-11 Titans Texans 0.7 0 0.3 0.21
2009-11 Bills Jaguars 0.74 1 0.26 0.1924
2009-11 Falcons Giants 0.76 1 0.24 0.1824
2009-11 Jets Patriots 0.76 1 0.24 0.1824
2009-11 49ers Packers 0.77 1 0.23 0.1771
2009-11 Redskins Cowboys 0.8 1 0.2 0.16
2009-11 Seahawks Vikings 0.8 1 0.2 0.16
2009-12 Packers Lions 0.15 0 0.85 0.1275
2009-12 Colts Texans 0.3 0 0.7 0.21
2009-12 Steelers Ravens 0.44 1 0.56 0.2464
2009-12 Seahawks Rams 0.46 0 0.54 0.2484
2009-12 Cardinals Titans 0.53 1 0.47 0.2491
2009-12 Dolphins Bills 0.54 1 0.46 0.2484
2009-12 Giants Broncos 0.55 1 0.45 0.2475
2009-12 Jaguars 49ers 0.57 1 0.43 0.2451
2009-12 Patriots Saints 0.66 1 0.34 0.2244
2009-12 Panthers Jets 0.69 1 0.31 0.2139
2009-12 Redskins Eagles 0.78 1 0.22 0.1716
2009-12 Buccaneers Falcons 0.8 1 0.2 0.16
2009-12 Bears Vikings 0.81 1 0.19 0.1539
2009-12 Raiders Cowboys 0.92 1 0.08 0.0736
2009-12 Chiefs Chargers 0.93 1 0.07 0.0651
2009-12 Browns Bengals 0.95 1 0.05 0.0475
2009-13 Chargers Browns 0.07 0 0.93 0.0651
2009-13 Broncos Chiefs 0.16 0 0.84 0.1344
2009-13 Saints Redskins 0.2 0 0.8 0.16
2009-13 Patriots Dolphins 0.26 1 0.74 0.1924
2009-13 Eagles Falcons 0.27 0 0.73 0.1971
2009-13 Vikings Cardinals 0.36 1 0.64 0.2304
2009-13 Jets Bills 0.42 0 0.58 0.2436
2009-13 Texans Jaguars 0.51 1 0.49 0.2499
2009-13 49ers Seahawks 0.54 1 0.46 0.2484
2009-13 Cowboys Giants 0.56 1 0.44 0.2464
2009-13 Ravens Packers 0.62 1 0.38 0.2356
2009-13 Buccaneers Panthers 0.69 1 0.31 0.2139
2009-13 Rams Bears 0.7 1 0.3 0.21
2009-13 Titans Colts 0.84 1 0.16 0.1344
2009-13 Lions Bengals 0.91 1 0.09 0.0819
2009-13 Raiders Steelers 0.94 0 0.06 0.0564
2009-14 Steelers Browns 0.09 1 0.91 0.0819
2009-14 Saints Falcons 0.15 0 0.85 0.1275
2009-14 Redskins Raiders 0.25 0 0.75 0.1875
2009-14 Jets Buccaneers 0.28 0 0.72 0.2016
2009-14 Packers Bears 0.32 0 0.68 0.2176
2009-14 Bills Chiefs 0.38 0 0.62 0.2356
2009-14 Chargers Cowboys 0.48 0 0.52 0.2496
2009-14 Cardinals 49ers 0.5 1 0.5 0.25
2009-14 Eagles Giants 0.55 0 0.45 0.2475
2009-14 Bengals Vikings 0.66 1 0.34 0.2244
2009-14 Broncos Colts 0.69 1 0.31 0.2139
2009-14 Dolphins Jaguars 0.72 0 0.28 0.2016
2009-14 Seahawks Texans 0.76 1 0.24 0.1824
2009-14 Rams Titans 0.83 1 0.17 0.1411
2009-14 Panthers Patriots 0.86 1 0.14 0.1204
2009-14 Lions Ravens 0.89 1 0.11 0.0979
2009-15 Cardinals Lions 0.17 0 0.83 0.1411
2009-15 Texans Rams 0.18 0 0.82 0.1476
2009-15 Colts Jaguars 0.28 0 0.72 0.2016
2009-15 Patriots Bills 0.29 0 0.71 0.2059
2009-15 Vikings Panthers 0.4 1 0.6 0.24
2009-15 Giants Redskins 0.42 0 0.58 0.2436
2009-15 Packers Steelers 0.58 1 0.42 0.2436
2009-15 Buccaneers Seahawks 0.65 0 0.35 0.2275
2009-15 Browns Chiefs 0.69 0 0.31 0.2139
2009-15 Cowboys Saints 0.71 0 0.29 0.2059
2009-15 Dolphins Titans 0.76 1 0.24 0.1824
2009-15 Falcons Jets 0.77 0 0.23 0.1771
2009-15 Bears Ravens 0.81 1 0.19 0.1539
2009-15 Bengals Chargers 0.83 1 0.17 0.1411
2009-15 49ers Eagles 0.85 1 0.15 0.1275
2009-15 Raiders Broncos 0.94 0 0.06 0.0564
2009-16 Vikings Bears 0.34 1 0.66 0.2244
2009-16 Chargers Titans 0.37 1 0.63 0.2331
2009-16 Cowboys Redskins 0.37 0 0.63 0.2331
2009-16 Texans Dolphins 0.4 0 0.6 0.24
2009-16 Raiders Browns 0.48 1 0.52 0.2496
2009-16 Bills Falcons 0.61 1 0.39 0.2379
2009-16 Ravens Steelers 0.61 1 0.39 0.2379
2009-16 Broncos Eagles 0.64 1 0.36 0.2304
2009-16 Jets Colts 0.78 0 0.22 0.1716
2009-16 Jaguars Patriots 0.79 1 0.21 0.1659
2009-16 Chiefs Bengals 0.85 1 0.15 0.1275
2009-16 Panthers Giants 0.85 0 0.15 0.1275
2009-16 Seahawks Packers 0.86 1 0.14 0.1204
2009-16 Lions 49ers 0.86 1 0.14 0.1204
2009-16 Rams Cardinals 0.87 1 0.13 0.1131
2009-16 Buccaneers Saints 0.93 0 0.07 0.0651
2009-17 Ravens Raiders 0.18 0 0.82 0.1476
2009-17 Colts Bills 0.2 1 0.8 0.16
2009-17 Jaguars Browns 0.23 1 0.77 0.1771
2009-17 49ers Rams 0.29 0 0.71 0.2059
2009-17 Titans Seahawks 0.29 0 0.71 0.2059
2009-17 Saints Panthers 0.3 1 0.7 0.21
2009-17 Bears Lions 0.31 0 0.69 0.2139
2009-17 Steelers Dolphins 0.35 0 0.65 0.2275
2009-17 Packers Cardinals 0.42 0 0.58 0.2436
2009-17 Giants Vikings 0.46 1 0.54 0.2484
2009-17 Falcons Buccaneers 0.46 0 0.54 0.2484
2009-17 Patriots Texans 0.46 1 0.54 0.2484
2009-17 Eagles Cowboys 0.58 1 0.42 0.2436
2009-17 Bengals Jets 0.66 1 0.34 0.2244
2009-17 Redskins Chargers 0.82 1 0.18 0.1476
2009-17 Chiefs Broncos 0.91 0 0.09 0.0819
2009-18(WC) Packers Cardinals 0.43 1 0.57 0.2451
2009-18(WC) Jets Bengals 0.51 0 0.49 0.2499
2009-18(WC) Eagles Cowboys 0.58 1 0.42 0.2436
2009-18(WC) Ravens Patriots 0.7 0 0.3 0.21
2009-19(DV) Cowboys Vikings 0.43 1 0.57 0.2451
2009-19(DV) Jets Chargers 0.72 0 0.28 0.2016
2009-19(DV) Ravens Colts 0.76 1 0.24 0.1824
2009-19(DV) Cardinals Saints 0.81 1 0.19 0.1539
2009-20(CF) Jets Colts 0.72 1 0.28 0.2016
2009-20(CF) Vikings Saints 0.79 1 0.21 0.1659
2009-21(SB) Saints Colts 0.52 0 0.48 0.2496
2010-04 Seahawks Rams 0.35 1 0.65 0.2275
2010-04 Texans Raiders 0.36 0 0.64 0.2304
2010-04 Colts Jaguars 0.39 1 0.61 0.2379
2010-04 Bears Giants 0.4 1 0.6 0.24
2010-04 Jets Bills 0.43 0 0.57 0.2451
2010-04 Redskins Eagles 0.54 0 0.46 0.2484
2010-04 Patriots Dolphins 0.56 0 0.44 0.2464
2010-04 Broncos Titans 0.57 0 0.43 0.2451
2010-04 Bengals Browns 0.63 1 0.37 0.2331
2010-04 49ers Falcons 0.64 1 0.36 0.2304
2010-04 Ravens Steelers 0.67 0 0.33 0.2211
2010-04 Panthers Saints 0.69 1 0.31 0.2139
2010-04 Lions Packers 0.72 1 0.28 0.2016
2010-04 Cardinals Chargers 0.82 1 0.18 0.1476
2010-05 Chargers Raiders 0.18 1 0.82 0.1476
2010-05 Bears Panthers 0.42 0 0.58 0.2436
2010-05 Eagles 49ers 0.43 0 0.57 0.2451
2010-05 Chiefs Colts 0.51 1 0.49 0.2499
2010-05 Giants Texans 0.52 0 0.48 0.2496
2010-05 Saints Cardinals 0.52 1 0.48 0.2496
2010-05 Jaguars Bills 0.62 0 0.38 0.2356
2010-05 Rams Lions 0.63 1 0.37 0.2331
2010-05 Packers Redskins 0.67 1 0.33 0.2211
2010-05 Titans Cowboys 0.7 0 0.3 0.21
2010-05 Buccaneers Bengals 0.72 0 0.28 0.2016
2010-05 Falcons Browns 0.72 0 0.28 0.2016
2010-05 Broncos Ravens 0.72 1 0.28 0.2016
2010-05 Vikings Jets 0.76 1 0.24 0.1824
2010-06 Chargers Rams 0.11 1 0.89 0.0979
2010-06 Titans Jaguars 0.43 0 0.57 0.2451
2010-06 Chiefs Texans 0.51 1 0.49 0.2499
2010-06 Cowboys Vikings 0.52 1 0.48 0.2496
2010-06 Jets Broncos 0.58 0 0.42 0.2436
2010-06 Colts Redskins 0.59 0 0.41 0.2419
2010-06 Ravens Patriots 0.6 1 0.4 0.24
2010-06 Dolphins Packers 0.61 0 0.39 0.2379
2010-06 Saints Buccaneers 0.62 0 0.38 0.2356
2010-06 Seahawks Bears 0.68 0 0.32 0.2176
2010-06 Falcons Eagles 0.73 1 0.27 0.1971
2010-06 Raiders 49ers 0.73 1 0.27 0.1971
2010-06 Browns Steelers 0.8 1 0.2 0.16
2010-06 Lions Giants 0.89 1 0.11 0.0979
2010-07 Giants Cowboys 0.47 0 0.53 0.2491
2010-07 Steelers Dolphins 0.48 0 0.52 0.2496
2010-07 49ers Panthers 0.51 1 0.49 0.2499
2010-07 Bengals Falcons 0.55 1 0.45 0.2475
2010-07 Eagles Titans 0.55 1 0.45 0.2475
2010-07 Rams Buccaneers 0.6 1 0.4 0.24
2010-07 Redskins Bears 0.63 0 0.37 0.2331
2010-07 Browns Saints 0.72 0 0.28 0.2016
2010-07 Vikings Packers 0.74 1 0.26 0.1924
2010-07 Bills Ravens 0.81 1 0.19 0.1539
2010-07 Raiders Broncos 0.81 0 0.19 0.1539
2010-07 Patriots Chargers 0.85 0 0.15 0.1275
2010-07 Jaguars Chiefs 0.86 1 0.14 0.1204
2010-07 Cardinals Seahawks 0.87 1 0.13 0.1131
2010-08 Steelers Saints 0.25 1 0.75 0.1875
2010-08 Packers Jets 0.41 0 0.59 0.2419
2010-08 Redskins Lions 0.43 1 0.57 0.2451
2010-08 Dolphins Bengals 0.44 0 0.56 0.2464
2010-08 Broncos 49ers 0.46 1 0.54 0.2484
2010-08 Buccaneers Cardinals 0.46 0 0.54 0.2484
2010-08 Seahawks Raiders 0.46 1 0.54 0.2484
2010-08 Panthers Rams 0.51 1 0.49 0.2499
2010-08 Vikings Patriots 0.65 1 0.35 0.2275
2010-08 Texans Colts 0.69 1 0.31 0.2139
2010-08 Titans Chargers 0.77 1 0.23 0.1771
2010-08 Jaguars Cowboys 0.83 0 0.17 0.1411
2010-08 Bills Chiefs 0.86 1 0.14 0.1204
2010-09 Giants Seahawks 0.11 0 0.89 0.0979
2010-09 Steelers Bengals 0.23 0 0.77 0.1771
2010-09 Chiefs Raiders 0.33 1 0.67 0.2211
2010-09 Chargers Texans 0.37 0 0.63 0.2331
2010-09 Bears Bills 0.4 0 0.6 0.24
2010-09 Saints Panthers 0.4 0 0.6 0.24
2010-09 Jets Lions 0.42 0 0.58 0.2436
2010-09 Patriots Browns 0.45 1 0.55 0.2475
2010-09 Dolphins Ravens 0.5 1 0.5 0.25
2010-09 Colts Eagles 0.5 1 0.5 0.25
2010-09 Buccaneers Falcons 0.7 1 0.3 0.21
2010-09 Cowboys Packers 0.73 1 0.27 0.1971
2010-09 Cardinals Vikings 0.85 1 0.15 0.1275
2010-10 Texans Jaguars 0.34 1 0.66 0.2244
2010-10 Chiefs Broncos 0.35 1 0.65 0.2275
2010-10 Eagles Redskins 0.42 0 0.58 0.2436
2010-10 Ravens Falcons 0.46 1 0.54 0.2484
2010-10 Titans Dolphins 0.48 1 0.52 0.2496
2010-10 Jets Browns 0.53 0 0.47 0.2491
2010-10 Vikings Bears 0.57 1 0.43 0.2451
2010-10 Seahawks Cardinals 0.57 0 0.43 0.2451
2010-10 Lions Bills 0.59 1 0.41 0.2419
2010-10 rams 49ers 0.67 1 0.33 0.2211
2010-10 Panthers Buccaneers 0.71 1 0.29 0.2059
2010-10 Bengals Colts 0.73 1 0.27 0.1971
2010-10 Patriots Steelers 0.85 0 0.15 0.1275
2010-10 Cowboys Giants 0.88 0 0.12 0.1056
2010-11 Ravens Panthers 0.22 0 0.78 0.1716
2010-11 Falcons Rams 0.33 0 0.67 0.2211
2010-11 Browns Jaguars 0.42 1 0.58 0.2436
2010-11 Packers Vikings 0.44 0 0.56 0.2464
2010-11 Giants Eagles 0.57 1 0.43 0.2451
2010-11 Buccaneers 49ers 0.59 0 0.41 0.2419
2010-11 Colts Patriots 0.59 1 0.41 0.2419
2010-11 Texans Jets 0.67 1 0.33 0.2211
2010-11 Bills Bengals 0.74 0 0.26 0.1924
2010-11 Bears Dolphins 0.76 0 0.24 0.1824
2010-11 Lions Cowboys 0.76 1 0.24 0.1824
2010-11 Redskins Titans 0.78 0 0.22 0.1716
2010-11 Seahawks Saints 0.84 1 0.16 0.1344
2010-11 Raiders Steelers 0.88 1 0.12 0.1056
2010-11 Broncos Chargers 0.89 1 0.11 0.0979
2010-11 Cardinals Chiefs 0.91 1 0.09 0.0819
2010-12 Steelers Bills 0.24 0 0.76 0.1824
2010-12 Dolphins Raiders 0.25 0 0.75 0.1875
2010-12 Chiefs Seahawks 0.29 0 0.71 0.2059
2010-12 Chargers Colts 0.31 0 0.69 0.2139
2010-12 Packers Falcons 0.32 1 0.68 0.2176
2010-12 Patriots Lions 0.35 1 0.65 0.2275
2010-12 49ers Cardinals 0.38 0 0.62 0.2356
2010-12 Eagles Bears 0.41 1 0.59 0.2419
2010-12 Titans Texans 0.49 1 0.51 0.2499
2010-12 Vikings Redskins 0.51 0 0.49 0.2499
2010-12 Saints Cowboys 0.6 0 0.4 0.24
2010-12 Bengals Jets 0.72 1 0.28 0.2016
2010-12 Rams Broncos 0.75 0 0.25 0.1875
2010-12 Buccaneers Ravens 0.75 1 0.25 0.1875
2010-12 Panthers Browns 0.84 1 0.16 0.1344
2010-12 Jaguars Giants 0.84 1 0.16 0.1344
2010-13 Bears Lions 0.34 0 0.66 0.2244
2010-13 Steelers Ravens 0.46 0 0.54 0.2484
2010-13 Saints Bengals 0.5 0 0.5 0.25
2010-13 Rams Cardinals 0.51 0 0.49 0.2499
2010-13 Falcons Buccaneers 0.57 0 0.43 0.2451
2010-13 Jets Patriots 0.62 1 0.38 0.2356
2010-13 Panthers Seahawks 0.66 1 0.34 0.2244
2010-13 Cowboys Colts 0.66 0 0.34 0.2244
2010-13 Bills Vikings 0.71 1 0.29 0.2059
2010-13 Texans Eagles 0.72 1 0.28 0.2016
2010-13 Broncos Chiefs 0.78 1 0.22 0.1716
2010-13 Browns Dolphins 0.78 0 0.22 0.1716
2010-13 Jaguars Titans 0.82 0 0.18 0.1476
2010-13 Redskins Giants 0.83 1 0.17 0.1411
2010-13 49ers Packers 0.89 1 0.11 0.0979
2010-13 Raiders Chargers 0.93 0 0.07 0.0651
2010-14 Packers Lions 0.2 1 0.8 0.16
2010-14 Broncos Cardinals 0.34 1 0.66 0.2244
2010-14 Falcons Panthers 0.36 0 0.64 0.2304
2010-14 Giants Vikings 0.46 0 0.54 0.2484
2010-14 Patriots Bears 0.47 0 0.53 0.2491
2010-14 Eagles Cowboys 0.47 0 0.53 0.2491
2010-14 Dolphins Jets 0.53 0 0.47 0.2491
2010-14 Ravens Texans 0.53 0 0.47 0.2491
2010-14 Colts Titans 0.54 0 0.46 0.2484
2010-14 Browns Bills 0.56 1 0.44 0.2464
2010-14 Raiders Jaguars 0.6 1 0.4 0.24
2010-14 Buccaneers Redskins 0.64 0 0.36 0.2304
2010-14 Seahawks 49ers 0.67 1 0.33 0.2211
2010-14 Chiefs Chargers 0.81 1 0.19 0.1539
2010-14 Rams Saints 0.85 1 0.15 0.1275
2010-14 Bengals Steelers 0.86 1 0.14 0.1204
2010-15 Chiefs Rams 0.33 0 0.67 0.2211
2010-15 Falcons Seahawks 0.46 0 0.54 0.2484
2010-15 Browns Bengals 0.51 1 0.49 0.2499
2010-15 Texans Titans 0.57 1 0.43 0.2451
2010-15 Packers Patriots 0.6 1 0.4 0.24
2010-15 Bears Vikings 0.6 0 0.4 0.24
2010-15 Cardinals Panthers 0.64 1 0.36 0.2304
2010-15 Eagles Giants 0.65 0 0.35 0.2275
2010-15 Broncos Raiders 0.65 1 0.35 0.2275
2010-15 Lions Buccaneers 0.67 0 0.33 0.2211
2010-15 Redskins Cowboys 0.69 1 0.31 0.2139
2010-15 Saints Ravens 0.7 1 0.3 0.21
2010-15 Jets Steelers 0.75 0 0.25 0.1875
2010-15 Bills Dolphins 0.76 0 0.24 0.1824
2010-15 Jaguars Colts 0.82 1 0.18 0.1476
2010-15 49ers Chargers 0.92 1 0.08 0.0736
2010-16 Chargers Bengals 0.14 1 0.86 0.1204
2010-16 Cowboys Cardinals 0.24 1 0.76 0.1824
2010-16 Patriots Bills 0.35 0 0.65 0.2275
2010-16 Texans Broncos 0.38 1 0.62 0.2356
2010-16 Colts Raiders 0.43 0 0.57 0.2451
2010-16 Ravens Browns 0.44 0 0.56 0.2464
2010-16 49ers Rams 0.46 1 0.54 0.2484
2010-16 Saints Falcons 0.54 0 0.46 0.2484
2010-16 Redskins Jaguars 0.55 0 0.45 0.2475
2010-16 Titans Chiefs 0.57 1 0.43 0.2451
2010-16 Jets Bears 0.58 1 0.42 0.2436
2010-16 Giants Packers 0.6 1 0.4 0.24
2010-16 Seahawks Buccaneers 0.71 1 0.29 0.2059
2010-16 Vikings Eagles 0.78 0 0.22 0.1716
2010-16 Lions Dolphins 0.81 0 0.19 0.1539
2010-16 Panthers Steelers 0.93 1 0.07 0.0651
2010-17 Chargers Broncos 0.15 0 0.85 0.1275
2010-17 Giants Redskins 0.3 0 0.7 0.21
2010-17 Steelers Browns 0.34 0 0.66 0.2244
2010-17 Vikings Lions 0.46 1 0.54 0.2484
2010-17 Rams Seahawks 0.6 1 0.4 0.24
2010-17 Buccaneers Saints 0.62 0 0.38 0.2356
2010-17 Titans Colts 0.64 1 0.36 0.2304
2010-17 Bills Jets 0.67 1 0.33 0.2211
2010-17 Dolphins Patriots 0.72 1 0.28 0.2016
2010-17 Jaguars Texans 0.73 1 0.27 0.1971
2010-17 Cardinals 49ers 0.75 1 0.25 0.1875
2010-17 Raiders Chiefs 0.76 0 0.24 0.1824
2010-17 Bengals Ravens 0.76 1 0.24 0.1824
2010-17 Cowboys Eagles 0.76 0 0.24 0.1824
2010-17 Bears Packers 0.77 1 0.23 0.1771
2010-17 Panthers Falcons 0.81 1 0.19 0.1539
2010-18(WC) Saints Seahawks 0.41 1 0.59 0.2419
2010-18(WC) Packers Eagles 0.45 0 0.55 0.2475
2010-18(WC) Ravens Chiefs 0.49 0 0.51 0.2499
2010-18(WC) Jets Colts 0.56 0 0.44 0.2464
2010-19(DV) Packers Falcons 0.33 0 0.67 0.2211
2010-19(DV) Jets Patriots 0.71 0 0.29 0.2059
2010-19(DV) Ravens Steelers 0.73 1 0.27 0.1971
2010-19(DV) Seahawks Bears 0.8 1 0.2 0.16
2010-20(CF) Packers Bears 0.36 0 0.64 0.2304
2010-20(CF) Jets Steelers 0.74 1 0.26 0.1924
2010-21(SB) Steelers Packers 0.49 1 0.51 0.2499
2011-04 Saints Jaguars 0.39 0 0.61 0.2379
2011-04 Titans Browns 0.43 0 0.57 0.2451
2011-04 Redskins Rams 0.45 0 0.55 0.2475
2011-04 Bills Bengals 0.49 1 0.51 0.2499
2011-04 Giants Cardinals 0.52 0 0.48 0.2496
2011-04 Vikings Chiefs 0.54 1 0.46 0.2484
2011-04 Patriots Raiders 0.56 0 0.44 0.2464
2011-04 Dolphins Chargers 0.58 1 0.42 0.2436
2011-04 Falcons Seahawks 0.59 0 0.41 0.2419
2011-04 Colts Buccaneers 0.59 1 0.41 0.2419
2011-04 Panthers Bears 0.63 1 0.37 0.2331
2011-04 Jets Ravens 0.64 1 0.36 0.2304
2011-04 Steelers Texans 0.66 1 0.34 0.2244
2011-04 49ers Eagles 0.68 0 0.32 0.2176
2011-04 Lions Cowboys 0.69 0 0.31 0.2139
2011-04 Broncos Packers 0.75 1 0.25 0.1875
2011-05 Packers Falcons 0.33 0 0.67 0.2211
2011-05 Saints Panthers 0.41 0 0.59 0.2419
2011-05 Cardinals Vikings 0.51 1 0.49 0.2499
2011-05 Bengals Jaguars 0.53 0 0.47 0.2491
2011-05 Titans Steelers 0.57 1 0.43 0.2451
2011-05 Chargers Broncos 0.58 0 0.42 0.2436
2011-05 Chiefs Colts 0.64 0 0.36 0.2304
2011-05 Jets Patriots 0.65 1 0.35 0.2275
2011-05 Raiders Texans 0.68 0 0.32 0.2176
2011-05 Eagles Bills 0.68 1 0.32 0.2176
2011-05 Buccaneers 49ers 0.7 1 0.3 0.21
2011-05 Bears Lions 0.74 1 0.26 0.1924
2011-05 Seahawks Giants 0.81 0 0.19 0.1539
2011-06 Saints Buccaneers 0.32 1 0.68 0.2176
2011-06 Panthers Falcons 0.44 1 0.56 0.2464
2011-06 Cowboys Patriots 0.52 1 0.48 0.2496
2011-06 Texans Ravens 0.57 1 0.43 0.2451
2011-06 Bills Giants 0.59 1 0.41 0.2419
2011-06 Vikings Bears 0.62 1 0.38 0.2356
2011-06 Eagles Redskins 0.64 0 0.36 0.2304
2011-06 49ers Lions 0.65 0 0.35 0.2275
2011-06 Colts Bengals 0.7 1 0.3 0.21
2011-06 Browns Raiders 0.7 1 0.3 0.21
2011-06 Dolphins Jets 0.71 1 0.29 0.2059
2011-06 Jaguars Steelers 0.75 1 0.25 0.1875
2011-06 Rams Packers 0.79 1 0.21 0.1659
2011-07 Steelers Cardinals 0.38 0 0.62 0.2356
2011-07 Packers Vikings 0.41 0 0.59 0.2419
2011-07 Ravens Jaguars 0.41 1 0.59 0.2419
2011-07 Bears Buccaneers 0.51 0 0.49 0.2499
2011-07 Redskins Panthers 0.53 1 0.47 0.2491
2011-07 Broncos Dolphins 0.53 0 0.47 0.2491
2011-07 Texans Titans 0.58 0 0.42 0.2436
2011-07 Chargers Jets 0.59 1 0.41 0.2419
2011-07 Seahawks Browns 0.66 1 0.34 0.2244
2011-07 Chiefs Raiders 0.73 0 0.27 0.1971
2011-07 Falcons Lions 0.77 0 0.23 0.1771
2011-07 Colts Saints 0.78 1 0.22 0.1716
2011-07 Rams Cowboys 0.79 1 0.21 0.1659
2011-08 Saints Rams 0.41 1 0.59 0.2419
2011-08 Bengals Seahawks 0.48 0 0.52 0.2496
2011-08 Chargers Chiefs 0.48 1 0.52 0.2496
2011-08 Lions Broncos 0.49 0 0.51 0.2499
2011-08 Cowboys Eagles 0.53 1 0.47 0.2491
2011-08 Redskins Bills 0.62 1 0.38 0.2356
2011-08 Patriots Steelers 0.63 1 0.37 0.2331
2011-08 Vikings Panthers 0.68 0 0.32 0.2176
2011-08 Colts Titans 0.7 1 0.3 0.21
2011-08 Browns 49ers 0.72 1 0.28 0.2016
2011-08 Dolphins Giants 0.74 1 0.26 0.1924
2011-08 Cardinals Ravens 0.76 1 0.24 0.1824
2011-08 Jaguars Texans 0.78 1 0.22 0.1716
2011-09 Packers Chargers 0.48 0 0.52 0.2496
2011-09 Rams Cardinals 0.54 1 0.46 0.2484
2011-09 Falcons Colts 0.55 0 0.45 0.2475
2011-09 49ers Redskins 0.56 0 0.44 0.2464
2011-09 Giants Patriots 0.63 0 0.37 0.2331
2011-09 Dolphins Chiefs 0.64 0 0.36 0.2304
2011-09 Bengals Titans 0.66 0 0.34 0.2244
2011-09 Ravens Steelers 0.66 0 0.34 0.2244
2011-09 Jets Bills 0.68 0 0.32 0.2176
2011-09 Broncos Raiders 0.71 0 0.29 0.2059
2011-09 Bears Eagles 0.72 0 0.28 0.2016
2011-09 Seahawks Cowboys 0.81 1 0.19 0.1539
2011-09 Buccaneers Saints 0.83 1 0.17 0.1411
2011-09 Browns Texans 0.85 1 0.15 0.1275
2011-10 Texans Buccaneers 0.25 0 0.75 0.1875
2011-10 Steelers Bengals 0.34 0 0.66 0.2244
2011-10 Ravens Seahawks 0.38 1 0.62 0.2356
2011-10 Jaguars Colts 0.43 0 0.57 0.2451
2011-10 Saints Falcons 0.45 0 0.55 0.2475
2011-10 Patriots Jets 0.51 0 0.49 0.2499
2011-10 Giants 49ers 0.55 1 0.45 0.2475
2011-10 Lions Bears 0.55 1 0.45 0.2475
2011-10 Redskins Dolphins 0.57 1 0.43 0.2451
2011-10 Rams Browns 0.57 0 0.43 0.2451
2011-10 Broncos Chiefs 0.61 0 0.39 0.2379
2011-10 Titans Panthers 0.62 0 0.38 0.2356
2011-10 Bills Cowboys 0.69 1 0.31 0.2139
2011-10 Raiders Chargers 0.71 0 0.29 0.2059
2011-10 Cardinals Eagles 0.84 0 0.16 0.1344
2011-10 Vikings Packers 0.86 1 0.14 0.1204
2011-11 Cowboys Redskins 0.32 0 0.68 0.2176
2011-11 Raiders Vikings 0.38 0 0.62 0.2356
2011-11 Jets Broncos 0.42 1 0.58 0.2436
2011-11 Bills Dolphins 0.49 1 0.51 0.2499
2011-11 Titans Falcons 0.56 1 0.44 0.2464
2011-11 Jaguars Browns 0.59 1 0.41 0.2419
2011-11 Seahawks Rams 0.63 0 0.37 0.2331
2011-11 Eagles Giants 0.63 0 0.37 0.2331
2011-11 Chargers Bears 0.69 1 0.31 0.2139
2011-11 Bengals Ravens 0.72 1 0.28 0.2016
2011-11 Panthers Lions 0.79 1 0.21 0.1659
2011-11 Cardinals 49ers 0.79 0 0.21 0.1659
2011-11 Buccaneers Packers 0.92 1 0.08 0.0736
2011-11 Chiefs Patriots 0.92 1 0.08 0.0736
2011-12 Steelers Chiefs 0.15 0 0.85 0.1275
2011-12 Texans Jaguars 0.16 0 0.84 0.1344
2011-12 Panthers Colts 0.39 0 0.61 0.2379
2011-12 Packers Lions 0.51 0 0.49 0.2499
2011-12 Bears Raiders 0.56 1 0.44 0.2464
2011-12 Redskins Seahawks 0.56 0 0.44 0.2464
2011-12 49ers Ravens 0.58 1 0.42 0.2436
2011-12 Patriots Eagles 0.58 0 0.42 0.2436
2011-12 Cardinals Rams 0.62 0 0.38 0.2356
2011-12 Giants Saints 0.65 1 0.35 0.2275
2011-12 Bills Jets 0.66 1 0.34 0.2244
2011-12 Browns Bengals 0.67 1 0.33 0.2211
2011-12 Buccaneers Titans 0.73 1 0.27 0.1971
2011-12 Broncos Chargers 0.75 0 0.25 0.1875
2011-12 Vikings Falcons 0.77 1 0.23 0.1771
2011-12 Dolphins Cowboys 0.82 1 0.18 0.1476
2011-13 Cowboys Cardinals 0.27 1 0.73 0.1971
2011-13 Eagles Seahawks 0.3 1 0.7 0.21
2011-13 Ravens Browns 0.36 0 0.64 0.2304
2011-13 Packers Giants 0.43 0 0.57 0.2451
2011-13 Jets Redskins 0.49 0 0.51 0.2499
2011-13 Raiders Dolphins 0.51 1 0.49 0.2499
2011-13 Broncos Vikings 0.52 0 0.48 0.2496
2011-13 Chargers Jaguars 0.52 0 0.48 0.2496
2011-13 Panthers Buccaneers 0.56 0 0.44 0.2464
2011-13 Titans Bills 0.61 0 0.39 0.2379
2011-13 Lions Saints 0.66 1 0.34 0.2244
2011-13 Rams 49ers 0.74 1 0.26 0.1924
2011-13 Bengals Steelers 0.78 1 0.22 0.1716
2011-13 Chiefs Bears 0.83 0 0.17 0.1411
2011-13 Falcons Texans 0.84 1 0.16 0.1344
2011-13 Colts Patriots 0.91 1 0.09 0.0819
2011-14 Texans Bengals 0.24 0 0.76 0.1824
2011-14 Saints Titans 0.33 0 0.67 0.2211
2011-14 Patriots Redskins 0.34 0 0.66 0.2244
2011-14 49ers Cardinals 0.4 1 0.6 0.24
2011-14 Falcons Panthers 0.43 0 0.57 0.2451
2011-14 Bears Broncos 0.43 1 0.57 0.2451
2011-14 Eagles Dolphins 0.48 0 0.52 0.2496
2011-14 Giants Cowboys 0.54 0 0.46 0.2484
2011-14 Bills Chargers 0.6 1 0.4 0.24
2011-14 Buccaneers Jaguars 0.61 1 0.39 0.2379
2011-14 Rams Seahawks 0.63 0 0.37 0.2331
2011-14 Raiders Packers 0.75 1 0.25 0.1875
2011-14 Chiefs Jets 0.78 1 0.22 0.1716
2011-14 Vikings Lions 0.81 1 0.19 0.1539
2011-14 Colts Ravens 0.86 1 0.14 0.1204
2011-14 Browns Steelers 0.87 1 0.13 0.1131
2011-15 Packers Chiefs 0.17 1 0.83 0.1411
2011-15 Cowboys Buccaneers 0.26 0 0.74 0.1924
2011-15 Saints Vikings 0.26 0 0.74 0.1924
2011-15 Patriots Broncos 0.3 0 0.7 0.21
2011-15 Steelers 49ers 0.3 1 0.7 0.21
2011-15 Titans Colts 0.34 1 0.66 0.2244
2011-15 Bengals Rams 0.36 0 0.64 0.2304
2011-15 Ravens Chargers 0.45 1 0.55 0.2475
2011-15 Lions Raiders 0.47 0 0.53 0.2491
2011-15 Dolphins Bills 0.6 0 0.4 0.24
2011-15 Jets Eagles 0.64 1 0.36 0.2304
2011-15 Browns Cardinals 0.66 1 0.34 0.2244
2011-15 Seahawks Bears 0.7 0 0.3 0.21
2011-15 Jaguars Falcons 0.74 1 0.26 0.1924
2011-15 Redskins Giants 0.76 0 0.24 0.1824
2011-15 Panthers Texans 0.87 0 0.13 0.1131
2011-16 Texans Colts 0.15 1 0.85 0.1275
2011-16 Raiders Chiefs 0.39 0 0.61 0.2379
2011-16 Giants Jets 0.44 0 0.56 0.2464
2011-16 49ers Seahawks 0.47 0 0.53 0.2491
2011-16 Eagles Cowboys 0.56 0 0.44 0.2464
2011-16 Chargers Lions 0.58 1 0.42 0.2436
2011-16 Broncos Bills 0.64 1 0.36 0.2304
2011-16 Cardinals Bengals 0.65 1 0.35 0.2275
2011-16 Jaguars Titans 0.69 1 0.31 0.2139
2011-16 Falcons Saints 0.69 1 0.31 0.2139
2011-16 Buccaneers Panthers 0.7 1 0.3 0.21
2011-16 Bears Packers 0.75 1 0.25 0.1875
2011-16 Dolphins Patriots 0.76 1 0.24 0.1824
2011-16 Vikings Redskins 0.76 0 0.24 0.1824
2011-16 Browns Ravens 0.79 1 0.21 0.1659
2011-16 Rams Steelers 0.89 1 0.11 0.0979
2011-17 Steelers Browns 0.19 0 0.81 0.1539
2011-17 Bears Vikings 0.36 0 0.64 0.2304
2011-17 49ers Rams 0.36 0 0.64 0.2304
2011-17 Ravens Bengals 0.48 0 0.52 0.2496
2011-17 Chargers Raiders 0.53 0 0.47 0.2491
2011-17 Colts Jaguars 0.59 1 0.41 0.2419
2011-17 Seahawks Cardinals 0.59 1 0.41 0.2419
2011-17 Chiefs Broncos 0.59 0 0.41 0.2419
2011-17 Jets Dolphins 0.61 1 0.39 0.2379
2011-17 Cowboys Giants 0.63 1 0.37 0.2331
2011-17 Lions Packers 0.64 1 0.36 0.2304
2011-17 Bills Patriots 0.75 1 0.25 0.1875
2011-17 Redskins Eagles 0.78 1 0.22 0.1716
2011-17 Panthers Saints 0.79 1 0.21 0.1659
2011-17 Titans Texans 0.8 0 0.2 0.16
2011-17 Buccaneers Falcons 0.82 1 0.18 0.1476
2011-18(WC) Steelers Broncos 0.19 0 0.81 0.1539
2011-18(WC) Falcons Giants 0.65 1 0.35 0.2275
2011-18(WC) Lions Saints 0.68 1 0.32 0.2176
2011-18(WC) Bengals Texans 0.78 1 0.22 0.1716
2011-19(DV) Saints 49ers 0.37 1 0.63 0.2331
2011-19(DV) Texans Ravens 0.43 1 0.57 0.2451
2011-19(DV) Giants Packers 0.58 0 0.42 0.2436
2011-19(DV) Broncos Patriots 0.84 1 0.16 0.1344
2011-20(CF) Giants 49ers 0.41 0 0.59 0.2419
2011-20(CF) Ravens Patriots 0.64 1 0.36 0.2304
2011-21(SB) Giants Patriots 0.49 0 0.51 0.2499
2012-04 49ers Jets 0.42 0 0.58 0.2436
2012-04 Seahawks Rams 0.44 1 0.56 0.2464
2012-04 Vikings Lions 0.47 0 0.53 0.2491
2012-04 Chargers Chiefs 0.47 0 0.53 0.2491
2012-04 Bengals Jaguars 0.55 0 0.45 0.2475
2012-04 Patriots Bills 0.58 0 0.42 0.2436
2012-04 Panthers Falcons 0.62 1 0.38 0.2356
2012-04 Bears Cowboys 0.64 0 0.36 0.2304
2012-04 Giants Eagles 0.67 1 0.33 0.2211
2012-04 Dolphins Cardinals 0.69 1 0.31 0.2139
2012-04 Browns Ravens 0.74 1 0.26 0.1924
2012-04 Redskins Buccaneers 0.74 0 0.26 0.1924
2012-04 Raiders Broncos 0.78 1 0.22 0.1716
2012-04 Saints Packers 0.81 1 0.19 0.1539
2012-04 Titans Texans 0.84 1 0.16 0.1344
2012-05 Falcons Redskins 0.24 0 0.76 0.1824
2012-05 Texans Jets 0.24 0 0.76 0.1824
2012-05 Ravens Chiefs 0.32 0 0.68 0.2176
2012-05 Eagles Steelers 0.34 1 0.66 0.2244
2012-05 Bears Jaguars 0.37 0 0.63 0.2331
2012-05 Chargers Saints 0.39 1 0.61 0.2379
2012-05 Packers Colts 0.43 1 0.57 0.2451
2012-05 Broncos Patriots 0.48 1 0.52 0.2496
2012-05 Cardinals Rams 0.49 1 0.51 0.2499
2012-05 Dolphins Bengals 0.53 0 0.47 0.2491
2012-05 Titans Vikings 0.6 1 0.4 0.24
2012-05 Browns Giants 0.66 1 0.34 0.2244
2012-05 Bills 49ers 0.71 1 0.29 0.2059
2012-05 Seahawks Panthers 0.79 0 0.21 0.1659
2012-06 Broncos Chargers 0.35 0 0.65 0.2275
2012-06 Vikings Redskins 0.47 1 0.53 0.2491
2012-06 Patriots Seahawks 0.49 1 0.51 0.2499
2012-06 Bengals Browns 0.52 1 0.48 0.2496
2012-06 Chiefs Buccaneers 0.52 1 0.48 0.2496
2012-06 Steelers Titans 0.56 1 0.44 0.2464
2012-06 Cowboys Ravens 0.59 1 0.41 0.2419
2012-06 Colts Jets 0.62 1 0.38 0.2356
2012-06 Lions Eagles 0.62 0 0.38 0.2356
2012-06 Bills Cardinals 0.63 0 0.37 0.2331
2012-06 Rams Dolphins 0.67 1 0.33 0.2211
2012-06 Raiders Falcons 0.76 1 0.24 0.1824
2012-06 Packers Texans 0.76 0 0.24 0.1824
2012-06 Giants 49ers 0.78 0 0.22 0.1716
2012-07 Browns Colts 0.52 1 0.48 0.2496
2012-07 Packers Rams 0.56 0 0.44 0.2464
2012-07 Steelers Bengals 0.57 0 0.43 0.2451
2012-07 Cowboys Panthers 0.6 0 0.4 0.24
2012-07 Titans Bills 0.61 0 0.39 0.2379
2012-07 Jets Patriots 0.64 1 0.36 0.2304
2012-07 Redskins Giants 0.65 1 0.35 0.2275
2012-07 Lions Bears 0.65 1 0.35 0.2275
2012-07 Ravens Texans 0.67 1 0.33 0.2211
2012-07 Cardinals Vikings 0.68 1 0.32 0.2176
2012-07 Seahawks 49ers 0.71 1 0.29 0.2059
2012-07 Saints Buccaneers 0.72 0 0.28 0.2016
2012-07 Jaguars Raiders 0.76 1 0.24 0.1824
2012-08 49ers Cardinals 0.34 0 0.66 0.2244
2012-08 Raiders Chiefs 0.36 0 0.64 0.2304
2012-08 Dolphins Jets 0.48 0 0.52 0.2496
2012-08 Giants Cowboys 0.54 0 0.46 0.2484
2012-08 Patriots Rams 0.55 0 0.45 0.2475
2012-08 Redskins Steelers 0.55 1 0.45 0.2475
2012-08 Colts Titans 0.55 0 0.45 0.2475
2012-08 Seahawks Lions 0.56 1 0.44 0.2464
2012-08 Falcons Eagles 0.56 0 0.44 0.2464
2012-08 Panthers Bears 0.59 1 0.41 0.2419
2012-08 Chargers Browns 0.59 1 0.41 0.2419
2012-08 Buccaneers Vikings 0.6 0 0.4 0.24
2012-08 Jaguars Packers 0.83 1 0.17 0.1411
2012-08 Saints Broncos 0.87 1 0.13 0.1131
2012-09 Broncos Bengals 0.27 0 0.73 0.1971
2012-09 Lions Jaguars 0.33 0 0.67 0.2211
2012-09 Dolphins Colts 0.39 1 0.61 0.2379
2012-09 Eagles Saints 0.39 1 0.61 0.2379
2012-09 Bears Titans 0.42 0 0.58 0.2436
2012-09 Panthers Redskins 0.49 0 0.51 0.2499
2012-09 Ravens Browns 0.52 0 0.48 0.2496
2012-09 Buccaneers Raiders 0.59 0 0.41 0.2419
2012-09 Cowboys Falcons 0.61 1 0.39 0.2379
2012-09 Steelers Giants 0.66 0 0.34 0.2244
2012-09 Cardinals Packers 0.67 1 0.33 0.2211
2012-09 Vikings Seahawks 0.67 1 0.33 0.2211
2012-09 Chiefs Chargers 0.72 1 0.28 0.2016
2012-09 Bills Texans 0.81 1 0.19 0.1539
2012-10 Falcons Saints 0.38 1 0.62 0.2356
2012-10 Texans Bears 0.43 1 0.57 0.2451
2012-10 Broncos Panthers 0.44 0 0.56 0.2464
2012-10 Colts Jaguars 0.46 0 0.54 0.2484
2012-10 Giants Bengals 0.46 1 0.54 0.2484
2012-10 Lions Vikings 0.47 1 0.53 0.2491
2012-10 Cowboys Eagles 0.47 0 0.53 0.2491
2012-10 Raiders Ravens 0.57 1 0.43 0.2451
2012-10 Chargers Buccaneers 0.64 1 0.36 0.2304
2012-10 Bills Patriots 0.7 1 0.3 0.21
2012-10 Jets Seahawks 0.71 1 0.29 0.2059
2012-10 Titans Dolphins 0.72 0 0.28 0.2016
2012-10 Rams 49ers 0.74 0 0.26 0.1924
2012-10 Chiefs Steelers 0.79 1 0.21 0.1659
2012-11 Bengals Chiefs 0.37 0 0.63 0.2331
2012-11 Dolphins Bills 0.52 1 0.48 0.2496
2012-11 Packers Lions 0.56 0 0.44 0.2464
2012-11 Saints Raiders 0.56 0 0.44 0.2464
2012-11 Eagles Redskins 0.58 1 0.42 0.2436
2012-11 Ravens Steelers 0.58 0 0.42 0.2436
2012-11 Buccaneers Panthers 0.65 0 0.35 0.2275
2012-11 Jets Rams 0.65 0 0.35 0.2275
2012-11 Colts Patriots 0.66 1 0.34 0.2244
2012-11 Bears 49ers 0.67 1 0.33 0.2211
2012-11 Browns Cowboys 0.69 1 0.31 0.2139
2012-11 Cardinals Falcons 0.7 1 0.3 0.21
2012-11 Chargers Broncos 0.83 1 0.17 0.1411
2012-11 Jaguars Texans 0.86 1 0.14 0.1204
2012-12 Broncos Chiefs 0.17 0 0.83 0.1411
2012-12 49ers Saints 0.31 0 0.69 0.2139
2012-12 Panthers Eagles 0.38 0 0.62 0.2356
2012-12 Seahawks Dolphins 0.39 1 0.61 0.2379
2012-12 Texans Lions 0.46 0 0.54 0.2484
2012-12 Titans Jaguars 0.48 1 0.52 0.2496
2012-12 Rams Cardinals 0.49 0 0.51 0.2499
2012-12 Steelers Browns 0.5 1 0.5 0.25
2012-12 Falcons Buccaneers 0.5 0 0.5 0.25
2012-12 Patriots Jets 0.51 0 0.49 0.2499
2012-12 Bills Colts 0.54 1 0.46 0.2484
2012-12 Redskins Cowboys 0.55 0 0.45 0.2475
2012-12 Ravens Chargers 0.56 0 0.44 0.2464
2012-12 Packers Giants 0.56 1 0.44 0.2464
2012-12 Vikings Bears 0.62 1 0.38 0.2356
2012-12 Raiders Bengals 0.68 1 0.32 0.2176
2012-13 Panthers Chiefs 0.29 1 0.71 0.2059
2012-13 Texans Titans 0.34 0 0.66 0.2244
2012-13 49ers Rams 0.38 1 0.62 0.2356
2012-13 Seahawks Bears 0.48 0 0.52 0.2496
2012-13 Bengals Chargers 0.48 0 0.52 0.2496
2012-13 Patriots Dolphins 0.49 0 0.51 0.2499
2012-13 Giants Redskins 0.55 1 0.45 0.2475
2012-13 Browns Raiders 0.56 0 0.44 0.2464
2012-13 Steelers Ravens 0.57 0 0.43 0.2451
2012-13 Cardinals Jets 0.65 1 0.35 0.2275
2012-13 Eagles Cowboys 0.66 1 0.34 0.2244
2012-13 Vikings Packers 0.67 1 0.33 0.2211
2012-13 Colts Lions 0.69 0 0.31 0.2139
2012-13 Saints Falcons 0.7 1 0.3 0.21
2012-13 Jaguars Bills 0.7 1 0.3 0.21
2012-13 Buccaneers Broncos 0.79 1 0.21 0.1659
2012-14 Broncos Raiders 0.24 0 0.76 0.1824
2012-14 Jets Jaguars 0.39 0 0.61 0.2379
2012-14 Bears Vikings 0.48 1 0.52 0.2496
2012-14 Rams Bills 0.51 0 0.49 0.2499
2012-14 Texans Patriots 0.52 1 0.48 0.2496
2012-14 Lions Packers 0.59 1 0.41 0.2419
2012-14 Chargers Steelers 0.61 0 0.39 0.2379
2012-14 Falcons Panthers 0.62 1 0.38 0.2356
2012-14 Cowboys Bengals 0.63 0 0.37 0.2331
2012-14 Titans Colts 0.63 1 0.37 0.2331
2012-14 Ravens Redskins 0.65 1 0.35 0.2275
2012-14 Chiefs Browns 0.67 1 0.33 0.2211
2012-14 Eagles Buccaneers 0.67 0 0.33 0.2211
2012-14 Saints Giants 0.69 1 0.31 0.2139
2012-14 Dolphins 49ers 0.75 1 0.25 0.1875
2012-14 Cardinals Seahawks 0.77 1 0.23 0.1771
2012-15 Broncos Ravens 0.33 0 0.67 0.2211
2012-15 Lions Cardinals 0.39 1 0.61 0.2379
2012-15 Panthers Chargers 0.39 0 0.61 0.2379
2012-15 Seahawks Bills 0.42 0 0.58 0.2436
2012-15 Bengals Eagles 0.45 0 0.55 0.2475
2012-15 49ers Patriots 0.46 0 0.54 0.2484
2012-15 Redskins Browns 0.47 0 0.53 0.2491
2012-15 Jets Titans 0.49 1 0.51 0.2499
2012-15 Packers Bears 0.54 0 0.46 0.2484
2012-15 Buccaneers Saints 0.55 1 0.45 0.2475
2012-15 Steelers Cowboys 0.56 1 0.44 0.2464
2012-15 Giants Falcons 0.57 1 0.43 0.2451
2012-15 Chiefs Raiders 0.62 1 0.38 0.2356
2012-15 Vikings Rams 0.67 0 0.33 0.2211
2012-15 Colts Texans 0.72 1 0.28 0.2016
2012-15 Jaguars Dolphins 0.76 1 0.24 0.1824
2012-16 Patriots Jaguars 0.28 0 0.72 0.2016
2012-16 Redskins Eagles 0.44 0 0.56 0.2464
2012-16 Bears Cardinals 0.44 0 0.56 0.2464
2012-16 Colts Chiefs 0.46 0 0.54 0.2484
2012-16 Falcons Lions 0.49 0 0.51 0.2499
2012-16 Giants Ravens 0.5 1 0.5 0.25
2012-16 Rams Buccaneers 0.52 0 0.48 0.2496
2012-16 49ers Seahawks 0.53 1 0.47 0.2491
2012-16 Saints Cowboys 0.57 0 0.43 0.2451
2012-16 Bengals Steelers 0.57 0 0.43 0.2451
2012-16 Bills Dolphins 0.6 1 0.4 0.24
2012-16 Chargers Jets 0.61 0 0.39 0.2379
2012-16 Titans Packers 0.71 1 0.29 0.2059
2012-16 Vikings Texans 0.74 0 0.26 0.1924
2012-16 Raiders Panthers 0.77 1 0.23 0.1771
2012-16 Browns Broncos 0.81 1 0.19 0.1539
2012-17 Texans Colts 0.42 1 0.58 0.2436
2012-17 Packers Vikings 0.43 1 0.57 0.2451
2012-17 Panthers Saints 0.45 0 0.55 0.2475
2012-17 Jets Bills 0.57 1 0.43 0.2451
2012-17 Bears Lions 0.57 0 0.43 0.2451
2012-17 Ravens Bengals 0.59 1 0.41 0.2419
2012-17 Raiders Chargers 0.6 1 0.4 0.24
2012-17 Cowboys Redskins 0.63 1 0.37 0.2331
2012-17 Jaguars Titans 0.64 1 0.36 0.2304
2012-17 Dolphins Patriots 0.64 1 0.36 0.2304
2012-17 Browns Steelers 0.65 1 0.35 0.2275
2012-17 Eagles Giants 0.66 1 0.34 0.2244
2012-17 Buccaneers Falcons 0.68 0 0.32 0.2176
2012-17 Rams Seahawks 0.7 1 0.3 0.21
2012-17 Cardinals 49ers 0.84 1 0.16 0.1344
2012-17 Chiefs Broncos 0.87 1 0.13 0.1131
2012-18(WC) Seahawks Redskins 0.48 0 0.52 0.2496
2012-18(WC) Colts Ravens 0.61 1 0.39 0.2379
2012-18(WC) Bengals Texans 0.63 1 0.37 0.2331
2012-18(WC) Vikings Packers 0.7 1 0.3 0.21
2012-19(DV) Seahawks Falcons 0.49 1 0.51 0.2499
2012-19(DV) Texans Patriots 0.58 1 0.42 0.2436
2012-19(DV) Packers 49ers 0.66 1 0.34 0.2244
2012-19(DV) Ravens Broncos 0.78 0 0.22 0.1716
2012-20(CF) 49ers Falcons 0.45 0 0.55 0.2475
2012-20(CF) Ravens Patriots 0.67 0 0.33 0.2211
2012-21(SB) Ravens 49ers 0.62 0 0.38 0.2356
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment