Skip to content

Instantly share code, notes, and snippets.

@vpascual
Last active May 7, 2018 16:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vpascual/49b4dd1e5915478008c8171ef26b2da5 to your computer and use it in GitHub Desktop.
Save vpascual/49b4dd1e5915478008c8171ef26b2da5 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Series Visualization by @vpascual</title>
<link rel="stylesheet" href="//rawgithub.com/Caged/d3-tip/master/examples/example-styles.css">
<style type="text/css">
body {
font-family: "Avenir" !important;
font-size: 12px;
color: #333;
}
#buttons {
margin: 20px;
text-align: center;
}
#viz {
margin: auto;
text-align: center;
}
.seriesname {
font-size: 16px !important;
}
.d3-tip {
line-height: 1.5;
font-weight: normal;
padding: 12px;
background: rgba(255, 255, 255, 0.9);
color: black;
border-radius: 2px;
pointer-events: none;
font-family: "Avenir" !important;
border: 1px solid #ccc;
}
.d3-tip:after {
color: rgba(255, 255, 255, 0.9);
}
</style>
</head>
<body>
<div id="buttons">
<h1>Explore IMDB series ratings</h1>
<button id="alphabetically" style="border-style:inset;">Sort alphabetically</button>
<button id="rating">Sort by avg rating</button>
<button id="votes">Sort by avg votes</button>
</div>
<div id="viz"></div>
<script src="https://d3js.org/d3.v4.min.js"></script>
<script src="https://github.com/Caged/d3-tip/blob/master/index.js"></script>
<script>
/* Initialize tooltip */
var tip = d3.tip().attr('class', 'd3-tip').html(d => {
// console.log(d)
return d.Serie
+ "<br>" + d.Season + "x" + d.Episode + ". " + d["Episode name"]
+ "<br>User rating: " + d["User Rating"]
+ "<br>User votes: " + d["User Votes"]
});
d3.csv("series_2017.csv", (error, data) => {
// console.log(data);
data.forEach(d => {
d.Deviation = +d.Deviation;
d.Episode = +d.Episode;
d.Season = +d.Season;
d["User Rating"] = +d["User Rating"];
d["User Votes"] = +d["User Votes"];
});
var deviation_range = d3.extent(data, d => { return d.Deviation; })
color = d3.scaleLinear()
.domain([deviation_range[0], 0, deviation_range[1]])
//.range(["#9E3D22", "white", "#2B5C8A"]);
//.range(["red", "#eee", "green"])
//.range(["#fc8d59", "#f7f7f7", "#91bfdb"])
//.range(["#B9262A", "#F7F7F7", "#306FAB"])
.range(["#A13E22", "white", "#588CBA"])
// console.log(deviation_range);
//data = data.sort((a, b) => { return d3.ascending(a.Serie, b.Serie)});
var nested_data_by_series = d3.nest()
.key(function(d) { return d.Serie; })
//.key(function(d) { return d.Episode; })
.rollup((leaves) => {
return {
avg_rating: d3.mean(leaves, p => { return p["User Rating"]; }),
avg_votes: d3.mean(leaves, p => { return p["User Votes"]; })
}
})
.entries(data);
// console.log(nested_data_by_series)
var nested_data = d3.nest()
.key(function(d) { return d.Serie; })
.key(function(d) { return d.Season; })
//.key(function(d) { return d.Episode; })
.rollup(function(leaves) {
return {
avg_rating: d3.mean(leaves, p => { return p["User Rating"]; }),
avg_votes: d3.mean(leaves, p => { return p["User Votes"]; }),
episodes: leaves
}})
.entries(data);
nested_data.forEach((d, i) => {
nested_data[i].avg_rating = nested_data_by_series[i].value.avg_rating;
nested_data[i].avg_votes = nested_data_by_series[i].value.avg_votes;
});
var total_seasons = d3.sum(nested_data, d => { return d.values.length; }) + 1;
const width = 800,
height = 1100,
margin = {top: 20, right: 10, bottom: 10, left: 10}
series_name_margin = 170;
var vizWidth = width - margin.left - margin.right,
vizHeight = height - margin.top - margin.bottom,
squareSize = (vizHeight) / total_seasons;
// console.log(squareSize)
var currentSeriesY = 0;
var viz = d3.select("#viz").append("svg")
.attr("width", vizWidth)
.attr("height", vizHeight)
.append("g")
.attr("transform", "translate(" + margin.left + "," + margin.top + ")");
console.log(d3.max(data, d => { return d.Episode; }))
viz.selectAll("text")
.data(d3.range(1, d3.max(data, d => { return d.Episode; }) + 1))
.enter()
.append("text")
.attr("text-anchor", "middle")
.attr("x", (d, i) => { return squareSize * i + series_name_margin + squareSize/2; })
.attr("y", -5)
.text(d => { return d; })
var series = viz.selectAll("g")
//.data(nested_data)
.data(nested_data.sort((a, b) => { return d3.ascending(a.key, b.key) }), d => { return d.key; })
.enter()
.append("g")
.attr("class", "serie")
.attr("transform", (d, i) => {
// console.log(d);
translate = "translate(0, " + currentSeriesY + ")";
currentSeriesY += squareSize * d.values.length;
return translate;
});
currentSeriesY = 0;
series
//.data(nested_data.sort((a, b) => { return d3.ascending(a.key, b.key) }), d => { return d.key; })
//.enter()
.append("text")
.attr("class", "seriesname")
.attr("x", 0)
.attr("y", (d, i) => {
// console.log(d)
return d.values.length * squareSize / 2;
})
.text(d => { return d.key; })
var seasons = series.selectAll("g")
.data(d => { return d.values; })
.enter()
.append("g")
.attr("class", "season")
.attr("transform", (d, i) => {
translate = "translate(" + series_name_margin + ", " + squareSize * i + ")";
return translate;
});
seasons
.append("text")
.attr("x", -5)
.attr("y", squareSize - 5)
.attr("text-anchor", "end")
.text(d => {
// console.log(d)
return d.key; })
/* Invoke the tip in the context of your visualization */
seasons.call(tip)
seasons.selectAll("rect")
.data(d => { return d.value.episodes; })
.enter()
.append("rect")
.attr("width", squareSize)
.attr("height", squareSize)
.attr("x", 0)
.attr("y", 0)
.attr("fill", d => { return color(d.Deviation); })
.style("stroke", "white")
.style("stroke-width", "1")
.on('mouseover', tip.show)
.on('mouseout', tip.hide)
.transition()
.duration(500)
//.style("stroke-width", "1")
.attr("x", (d, i) => {
return i * squareSize;
});
d3.selectAll("button")
.on("click", d => {
d3.selectAll("button")
.style("border-style", null);
d3.select(d3.event.target)
.style("border-style", "inset");
sortByAvgRating(d3.event.target.id);
})
function sortByAvgRating(type) {
var currentSeriesY = 0;
// console.log("Update!")
let sorted_data = nested_data.sort((a, b) => {
if (type == "alphabetically")
return d3.ascending(a.key, b.key);
else if (type == "rating")
return d3.descending(a.avg_rating, b.avg_rating)
else if (type == "votes")
return d3.descending(a.avg_votes, b.avg_votes)
});
viz.selectAll("g")
.data(sorted_data, d => { return d.key; })
.transition()
.duration(1000)
.ease(d3.easeQuadInOut)
.attr("transform", (d, i) => {
translate = "translate(0, " + currentSeriesY + ")";
currentSeriesY += squareSize * d.values.length;
return translate;
});
}
});
</script>
</body>
</html>
Serie # Episode name User Rating User Votes Season Episode Deviation Z-score
Game of thrones 1.1  Winter Is Coming 9 20316 1 0.700127551 1.297080293
Game of thrones 1.2  The Kingsroad 8.8 15476 1 0.500127551 0.9265534395
Game of thrones 1.3  Lord Snow 8.7 14632 1 0.400127551 0.7412900127
Game of thrones 1.4  Cripples, Bastards, and Broken Things 8.8 13916 1 0.500127551 0.9265534395
Game of thrones 1.5  The Wolf and the Lion 9.1 14813 1 0.800127551 1.48234372
Game of thrones 1.6  A Golden Crown 9.2 14530 1 0.900127551 1.667607147
Game of thrones 1.7  You Win or You Die 9.2 14882 1 0.900127551 1.667607147
Game of thrones 1.8  The Pointy End 9 13527 1 0.700127551 1.297080293
Game of thrones 1.9  Baelor 9.6 19285 1 1.300127551 2.408660854
Game of thrones 1.10  Fire and Blood 9.4 17107 1 10  1.100127551 2.038134
Game of thrones 2.1  The North Remembers 8.8 13698 2 0.500127551 0.9265534395
Game of thrones 2.2  The Night Lands 8.5 12703 2 0.200127551 0.370763159
Game of thrones 2.3  What Is Dead May Never Die 8.8 12560 2 0.500127551 0.9265534395
Game of thrones 2.4  Garden of Bones 8.8 11930 2 0.500127551 0.9265534395
Game of thrones 2.5  The Ghost of Harrenhal 8.8 12113 2 0.500127551 0.9265534395
Game of thrones 2.6  The Old Gods and the New 9 12949 2 0.700127551 1.297080293
Game of thrones 2.7  A Man Without Honor 8.9 12477 2 0.600127551 1.111816866
Game of thrones 2.8  The Prince of Winterfell 8.8 12274 2 0.500127551 0.9265534395
Game of thrones 2.9  Blackwater 9.7 22917 2 1.400127551 2.593924281
Game of thrones 2.10  Valar Morghulis 9.4 16158 2 10  1.100127551 2.038134
Game of thrones 3.1  Valar Dohaeris 8.8 14323 3 0.500127551 0.9265534395
Game of thrones 3.2  Dark Wings, Dark Words 8.6 12492 3 0.300127551 0.5560265858
Game of thrones 3.3  Walk of Punishment 8.9 12551 3 0.600127551 1.111816866
Game of thrones 3.4  And Now His Watch Is Ended 9.5 18118 3 1.200127551 2.223397427
Game of thrones 3.5  Kissed by Fire 9 12530 3 0.700127551 1.297080293
Game of thrones 3.6  The Climb 8.8 12485 3 0.500127551 0.9265534395
Game of thrones 3.7  The Bear and the Maiden Fair 8.7 12151 3 0.400127551 0.7412900127
Game of thrones 3.8  Second Sons 9 12463 3 0.700127551 1.297080293
Game of thrones 3.9  The Rains of Castamere 9.9 54475 3 1.600127551 2.964451134
Game of thrones 3.10  Mhysa 9.1 14607 3 10  0.800127551 1.48234372
Game of thrones 4.1  Two Swords 9.1 18570 4 0.800127551 1.48234372
Game of thrones 4.2  The Lion and the Rose 9.7 30938 4 1.400127551 2.593924281
Game of thrones 4.3  Breaker of Chains 8.9 14563 4 0.600127551 1.111816866
Game of thrones 4.4  Oathkeeper 8.8 13719 4 0.500127551 0.9265534395
Game of thrones 4.5  First of His Name 8.7 13128 4 0.400127551 0.7412900127
Game of thrones 4.6  The Laws of Gods and Men 9.7 26114 4 1.400127551 2.593924281
Game of thrones 4.7  Mockingbird 9.2 14911 4 0.900127551 1.667607147
Game of thrones 4.8  The Mountain and the Viper 9.7 29270 4 1.400127551 2.593924281
Game of thrones 4.9  The Watchers on the Wall 9.5 23085 4 1.200127551 2.223397427
Game of thrones 4.10  The Children 9.6 23426 4 10  1.300127551 2.408660854
Game of thrones 5.1  The Wars to Come 8.5 15759 5 0.200127551 0.370763159
Game of thrones 5.2  The House of Black and White 8.6 12746 5 0.300127551 0.5560265858
Game of thrones 5.3  High Sparrow 8.6 12094 5 0.300127551 0.5560265858
Game of thrones 5.4  Sons of the Harpy 8.8 12680 5 0.500127551 0.9265534395
Game of thrones 5.5  Kill the Boy 8.7 12929 5 0.400127551 0.7412900127
Game of thrones 5.6  Unbowed, Unbent, Unbroken 8 14904 5 -0.299872449 -0.5555539751
Game of thrones 5.7  The Gift 9 14856 5 0.700127551 1.297080293
Game of thrones 5.8  Hardhome 9.9 58867 5 1.600127551 2.964451134
Game of thrones 5.9  The Dance of Dragons 9.5 24739 5 1.200127551 2.223397427
Game of thrones 5.10  Mother's Mercy 8.9 24423 5 10  0.600127551 1.111816866
Game of thrones 6.1  The Red Woman 8.5 24127 6 0.200127551 0.370763159
Game of thrones 6.2  Home 9.5 29544 6 1.200127551 2.223397427
Game of thrones 6.3  Oathbreaker 8.7 18480 6 0.400127551 0.7412900127
Game of thrones 6.4  Book of the Stranger 9.2 20396 6 0.900127551 1.667607147
Game of thrones 6.5  The Door 9.7 42189 6 1.400127551 2.593924281
Game of thrones 6.6  Blood of My Blood 8.4 18193 6 0.100127551 0.1854997322
Game of thrones 6.7  The Broken Man 8.6 17649 6 0.300127551 0.5560265858
Game of thrones 6.8  No One 8.3 20488 6 0.0001275510204 0.0002363053913
Game of thrones 6.9  Battle of the Bastards 9.9 137120 6 1.600127551 2.964451134
Game of thrones 6.10  The Winds of Winter 9.9 92737 6 10  1.600127551 2.964451134
Homeland 1.1  Pilot 8.4 3150 1 0.100127551 0.1854997322
Homeland 1.2  Grace 8.1 2488 1 -0.199872449 -0.3702905482
Homeland 1.3  Clean Skin 8 2269 1 -0.299872449 -0.5555539751
Homeland 1.4  Semper I 7.9 2132 1 -0.399872449 -0.7408174019
Homeland 1.5  Blind Spot 8.4 2092 1 0.100127551 0.1854997322
Homeland 1.6  The Good Soldier 8.5 2087 1 0.200127551 0.370763159
Homeland 1.7  The Weekend 8.9 2388 1 0.600127551 1.111816866
Homeland 1.8  Achilles Heel 8.4 2030 1 0.100127551 0.1854997322
Homeland 1.9  Crossfire 8.2 2001 1 -0.09987244898 -0.1850271214
Homeland 1.10  Representative Brody 8.3 2004 1 10  0.0001275510204 0.0002363053913
Homeland 1.11  The Vest 8.7 2130 1 11  0.400127551 0.7412900127
Homeland 1.12  Marine One 9.1 2871 1 12  0.800127551 1.48234372
Homeland 2.1  The Smile 8.5 2478 2 0.200127551 0.370763159
Homeland 2.2  Beirut Is Back 9 2450 2 0.700127551 1.297080293
Homeland 2.3  State of Independence 8.3 2096 2 0.0001275510204 0.0002363053913
Homeland 2.4  New Car Smell 8.8 2206 2 0.500127551 0.9265534395
Homeland 2.5  Q&A 9.1 2527 2 0.800127551 1.48234372
Homeland 2.6  A Gettysburg Address 8.4 1933 2 0.100127551 0.1854997322
Homeland 2.7  The Clearing 7.9 1835 2 -0.399872449 -0.7408174019
Homeland 2.8  I'll Fly Away 8.3 1862 2 0.0001275510204 0.0002363053913
Homeland 2.9  Two Hats 8.6 1926 2 0.300127551 0.5560265858
Homeland 2.10  Broken Hearts 8.7 1982 2 10  0.400127551 0.7412900127
Homeland 2.11  In Memoriam 8.7 2003 2 11  0.400127551 0.7412900127
Homeland 2.12  The Choice 9.3 3261 2 12  1.000127551 1.852870574
Homeland 3.1  Tin Man Is Down 8 2493 3 -0.299872449 -0.5555539751
Homeland 3.2  Uh... Oh... Ah... 7.3 2205 3 -0.999872449 -1.852397963
Homeland 3.3  Tower of David 7.4 2213 3 -0.899872449 -1.667134536
Homeland 3.4  Game On 8.3 2121 3 0.0001275510204 0.0002363053913
Homeland 3.5  The Yoga Play 8.1 1876 3 -0.199872449 -0.3702905482
Homeland 3.6  Still Positive 8.1 1814 3 -0.199872449 -0.3702905482
Homeland 3.7  Gerontion 8.3 1781 3 0.0001275510204 0.0002363053913
Homeland 3.8  A Red Wheelbarrow 8.5 1875 3 0.200127551 0.370763159
Homeland 3.9  One Last Thing 8.6 1963 3 0.300127551 0.5560265858
Homeland 3.10  Good Night 8.9 2100 3 10  0.600127551 1.111816866
Homeland 3.11  Big Man in Tehran 9.3 2874 3 11  1.000127551 1.852870574
Homeland 3.12  The Star 8.4 2970 3 12  0.100127551 0.1854997322
Homeland 4.1  The Drone Queen 8.4 2341 4 0.100127551 0.1854997322
Homeland 4.2  Trylon and Perisphere 7.7 1946 4 -0.599872449 -1.111344256
Homeland 4.3  Shalwar Kameez 8.1 1829 4 -0.199872449 -0.3702905482
Homeland 4.4  Iron in the Fire 8 1713 4 -0.299872449 -0.5555539751
Homeland 4.5  About a Boy 7.7 1681 4 -0.599872449 -1.111344256
Homeland 4.6  From A to B and Back Again 9 2261 4 0.700127551 1.297080293
Homeland 4.7  Redux 8.8 2236 4 0.500127551 0.9265534395
Homeland 4.8  Halfway to a Donut 9.2 2471 4 0.900127551 1.667607147
Homeland 4.9  There's Something Else Going On 9.7 5053 4 1.400127551 2.593924281
Homeland 4.10  13 Hours in Islamabad 9.4 3332 4 10  1.100127551 2.038134
Homeland 4.11  Krieg Nicht Lieb 8.9 2424 4 11  0.600127551 1.111816866
Homeland 4.12  Long Time Coming 5.6 4131 4 12  -2.699872449 -5.001876219
Homeland 5.1  Separation Anxiety 8 1952 5 -0.299872449 -0.5555539751
Homeland 5.2  The Tradition of Hospitality 8.5 1716 5 0.200127551 0.370763159
Homeland 5.3  Super Powers 8.5 1611 5 0.200127551 0.370763159
Homeland 5.4  Why Is This Night Different? 8.9 1676 5 0.600127551 1.111816866
Homeland 5.5  Better Call Saul 8.2 1387 5 -0.09987244898 -0.1850271214
Homeland 5.6  Parabiosis 8.3 1338 5 0.0001275510204 0.0002363053913
Homeland 5.7  Oriole 8.2 1294 5 -0.09987244898 -0.1850271214
Homeland 5.8  All About Allison 8.2 1318 5 -0.09987244898 -0.1850271214
Homeland 5.9  The Litvinov Ruse 9.1 1765 5 0.800127551 1.48234372
Homeland 5.10  New Normal 8.5 1393 5 10  0.200127551 0.370763159
Homeland 5.11  Our Man in Damascus 9.2 2019 5 11  0.900127551 1.667607147
Homeland 5.12  A False Glimmer 7.9 1734 5 12  -0.399872449 -0.7408174019
Homeland 6.1  Fair Game 7.3 1187 6 -0.999872449 -1.852397963
Homeland 6.2  The Man in the Basement 7.5 939 6 -0.799872449 -1.481871109
Homeland 6.3  The Covenant 7.6 836 6 -0.699872449 -1.296607682
Homeland 6.4  A Flash of Light 8.1 833 6 -0.199872449 -0.3702905482
Homeland 6.5  Casus Belli 9 1227 6 0.700127551 1.297080293
Homeland 6.6  The Return 8.4 810 6 0.100127551 0.1854997322
Homeland 6.7  Imminent Risk 8.1 737 6 -0.199872449 -0.3702905482
Homeland 6.8  Alt.truth 8.6 863 6 0.300127551 0.5560265858
Homeland 6.9  Sock Puppets 8.6 785 6 0.300127551 0.5560265858
Homeland 6.10  The Flag House 8.7 809 6 10  0.400127551 0.7412900127
Homeland 6.11  R Is for Romeo 9 901 6 11  0.700127551 1.297080293
Homeland 6.12  America First 8.3 1064 6 12  0.0001275510204 0.0002363053913
The Wire 1.1  The Target 8 2938 1 -0.299872449 -0.5555539751
The Wire 1.2  The Detail 8.4 2295 1 0.100127551 0.1854997322
The Wire 1.3  The Buys 8.3 2170 1 0.0001275510204 0.0002363053913
The Wire 1.4  Old Cases 8.3 2076 1 0.0001275510204 0.0002363053913
The Wire 1.5  The Pager 8.4 1972 1 0.100127551 0.1854997322
The Wire 1.6  The Wire 8.5 2095 1 0.200127551 0.370763159
The Wire 1.7  One Arrest 8.5 1914 1 0.200127551 0.370763159
The Wire 1.8  Lessons 8.5 1908 1 0.200127551 0.370763159
The Wire 1.9  Game Day 8.5 1995 1 0.200127551 0.370763159
The Wire 1.10  The Cost 8.8 2217 1 10  0.500127551 0.9265534395
The Wire 1.11  The Hunt 8.5 2012 1 11  0.200127551 0.370763159
The Wire 1.12  Cleaning Up 8.7 2135 1 12  0.400127551 0.7412900127
The Wire 1.13  Sentencing 8.6 2126 1 13  0.300127551 0.5560265858
The Wire 2.1  Ebb Tide 7.9 1840 2 -0.399872449 -0.7408174019
The Wire 2.2  Collateral Damage 8.2 1723 2 -0.09987244898 -0.1850271214
The Wire 2.3  Hot Shots 8.2 1654 2 -0.09987244898 -0.1850271214
The Wire 2.4  Hard Cases 8.1 1635 2 -0.199872449 -0.3702905482
The Wire 2.5  Undertow 8.3 1601 2 0.0001275510204 0.0002363053913
The Wire 2.6  All Prologue 8.5 1816 2 0.200127551 0.370763159
The Wire 2.7  Backwash 8.4 1583 2 0.100127551 0.1854997322
The Wire 2.8  Duck and Cover 8.5 1603 2 0.200127551 0.370763159
The Wire 2.9  Stray Rounds 8.5 1642 2 0.200127551 0.370763159
The Wire 2.10  Storm Warnings 8.6 1818 2 10  0.300127551 0.5560265858
The Wire 2.11  Bad Dreams 8.8 1992 2 11  0.500127551 0.9265534395
The Wire 2.12  Port in a Storm 8.6 1903 2 12  0.300127551 0.5560265858
The Wire 3.1  Time After Time 8.1 1634 3 -0.199872449 -0.3702905482
The Wire 3.2  All Due Respect 8.5 1562 3 0.200127551 0.370763159
The Wire 3.3  Dead Soldiers 8.5 1555 3 0.200127551 0.370763159
The Wire 3.4  Hamsterdam 8.5 1546 3 0.200127551 0.370763159
The Wire 3.5  Straight and True 8.5 1559 3 0.200127551 0.370763159
The Wire 3.6  Homecoming 8.5 1557 3 0.200127551 0.370763159
The Wire 3.7  Back Burners 8.5 1512 3 0.200127551 0.370763159
The Wire 3.8  Moral Midgetry 8.5 1632 3 0.200127551 0.370763159
The Wire 3.9  Slapstick 8.5 1557 3 0.200127551 0.370763159
The Wire 3.10  Reformation 8.5 1574 3 10  0.200127551 0.370763159
The Wire 3.11  Middle Ground 9.2 2331 3 11  0.900127551 1.667607147
The Wire 3.12  Mission Accomplished 8.9 1932 3 12  0.600127551 1.111816866
The Wire 4.1  Boys of Summer 8.4 1570 4 0.100127551 0.1854997322
The Wire 4.2  Soft Eyes 8.5 1447 4 0.200127551 0.370763159
The Wire 4.3  Home Rooms 8.5 1485 4 0.200127551 0.370763159
The Wire 4.4  Refugees 8.4 1444 4 0.100127551 0.1854997322
The Wire 4.5  Alliances 8.5 1432 4 0.200127551 0.370763159
The Wire 4.6  Margin of Error 8.5 1489 4 0.200127551 0.370763159
The Wire 4.7  Unto Others 8.5 1411 4 0.200127551 0.370763159
The Wire 4.8  Corner Boys 8.5 1431 4 0.200127551 0.370763159
The Wire 4.9  Know Your Place 8.5 1397 4 0.200127551 0.370763159
The Wire 4.10  Misgivings 8.5 1523 4 10  0.200127551 0.370763159
The Wire 4.11  A New Day 8.5 1579 4 11  0.200127551 0.370763159
The Wire 4.12  That's Got His Own 8.8 1724 4 12  0.500127551 0.9265534395
The Wire 4.13  Final Grades 9.1 2225 4 13  0.800127551 1.48234372
The Wire 5.1  More with Less 8.1 1520 5 -0.199872449 -0.3702905482
The Wire 5.2  Unconfirmed Reports 8.2 1429 5 -0.09987244898 -0.1850271214
The Wire 5.3  Not for Attribution 8.5 1400 5 0.200127551 0.370763159
The Wire 5.4  Transitions 8.5 1463 5 0.200127551 0.370763159
The Wire 5.5  React Quotes 8.5 1398 5 0.200127551 0.370763159
The Wire 5.6  The Dickensian Aspect 8.4 1370 5 0.100127551 0.1854997322
The Wire 5.7  Took 8.5 1389 5 0.200127551 0.370763159
The Wire 5.8  Clarifications 8.5 1514 5 0.200127551 0.370763159
The Wire 5.9  Late Editions 8.8 1700 5 0.500127551 0.9265534395
The Wire 5.10  -30- 9.2 2541 5 10  0.900127551 1.667607147
Mad Men 1.1  Smoke Gets in Your Eyes 8.2 2390 1 -0.09987244898 -0.1850271214
Mad Men 1.2  Ladies Room 7.6 1723 1 -0.699872449 -1.296607682
Mad Men 1.3  Marriage of Figaro 7.7 1593 1 -0.599872449 -1.111344256
Mad Men 1.4  New Amsterdam 8 1486 1 -0.299872449 -0.5555539751
Mad Men 1.5  5G 8.2 1449 1 -0.09987244898 -0.1850271214
Mad Men 1.6  Babylon 8 1447 1 -0.299872449 -0.5555539751
Mad Men 1.7  Red in the Face 8.1 1373 1 -0.199872449 -0.3702905482
Mad Men 1.8  The Hobo Code 8.4 1447 1 0.100127551 0.1854997322
Mad Men 1.9  Shoot 8.3 1348 1 0.0001275510204 0.0002363053913
Mad Men 1.10  Long Weekend 8.3 1306 1 10  0.0001275510204 0.0002363053913
Mad Men 1.11  Indian Summer 8.2 1264 1 11  -0.09987244898 -0.1850271214
Mad Men 1.12  Nixon vs. Kennedy 9 1518 1 12  0.700127551 1.297080293
Mad Men 1.13  The Wheel 9.1 1646 1 13  0.800127551 1.48234372
Mad Men 2.1  For Those Who Think Young 7.8 1188 2 -0.499872449 -0.9260808287
Mad Men 2.2  Flight 1 8 1138 2 -0.299872449 -0.5555539751
Mad Men 2.3  The Benefactor 8 1135 2 -0.299872449 -0.5555539751
Mad Men 2.4  Three Sundays 8.2 1124 2 -0.09987244898 -0.1850271214
Mad Men 2.5  The New Girl 8.4 1140 2 0.100127551 0.1854997322
Mad Men 2.6  Maidenform 8.1 1087 2 -0.199872449 -0.3702905482
Mad Men 2.7  The Gold Violin 8.5 1119 2 0.200127551 0.370763159
Mad Men 2.8  A Night to Remember 8.4 1104 2 0.100127551 0.1854997322
Mad Men 2.9  Six Month Leave 8.5 1105 2 0.200127551 0.370763159
Mad Men 2.10  The Inheritance 8.1 1066 2 10  -0.199872449 -0.3702905482
Mad Men 2.11  The Jet Set 8.4 1215 2 11  0.100127551 0.1854997322
Mad Men 2.12  The Mountain King 8.6 1142 2 12  0.300127551 0.5560265858
Mad Men 2.13  Meditations in an Emergency 9 1264 2 13  0.700127551 1.297080293
Mad Men 3.1  Out of Town 8.3 1113 3 0.0001275510204 0.0002363053913
Mad Men 3.2  Love Among the Ruins 8 1010 3 -0.299872449 -0.5555539751
Mad Men 3.3  My Old Kentucky Home 8.2 1081 3 -0.09987244898 -0.1850271214
Mad Men 3.4  The Arrangements 8.2 1006 3 -0.09987244898 -0.1850271214
Mad Men 3.5  The Fog 8.1 1015 3 -0.199872449 -0.3702905482
Mad Men 3.6  Guy Walks Into an Advertising Agency 9.1 1374 3 0.800127551 1.48234372
Mad Men 3.7  Seven Twenty Three 8.5 1057 3 0.200127551 0.370763159
Mad Men 3.8  Souvenir 8.1 1000 3 -0.199872449 -0.3702905482
Mad Men 3.9  Wee Small Hours 8.2 973 3 -0.09987244898 -0.1850271214
Mad Men 3.10  The Color Blue 8.4 1009 3 10  0.100127551 0.1854997322
Mad Men 3.11  The Gypsy and the Hobo 9.2 1339 3 11  0.900127551 1.667607147
Mad Men 3.12  The Grown-Ups 8.9 1191 3 12  0.600127551 1.111816866
Mad Men 3.13  Shut the Door. Have a Seat 9.6 2160 3 13  1.300127551 2.408660854
Mad Men 4.1  Public Relations 8.7 1185 4 0.400127551 0.7412900127
Mad Men 4.2  Christmas Comes But Once a Year 8.3 1023 4 0.0001275510204 0.0002363053913
Mad Men 4.3  The Good News 8.7 1088 4 0.400127551 0.7412900127
Mad Men 4.4  The Rejected 8.4 1006 4 0.100127551 0.1854997322
Mad Men 4.5  The Chrysanthemum and the Sword 8.7 1048 4 0.400127551 0.7412900127
Mad Men 4.6  Waldorf Stories 8.6 1062 4 0.300127551 0.5560265858
Mad Men 4.7  The Suitcase 9.7 2712 4 1.400127551 2.593924281
Mad Men 4.8  The Summer Man 8.7 1082 4 0.400127551 0.7412900127
Mad Men 4.9  The Beautiful Girls 8.8 1086 4 0.500127551 0.9265534395
Mad Men 4.10  Hands and Knees 8.8 1002 4 10  0.500127551 0.9265534395
Mad Men 4.11  Chinese Wall 8.5 931 4 11  0.200127551 0.370763159
Mad Men 4.12  Blowing Smoke 8.9 1030 4 12  0.600127551 1.111816866
Mad Men 4.13  Tomorrowland 9 1249 4 13  0.700127551 1.297080293
Mad Men 5.1  A Little Kiss, Part 1 8.6 1288 5 0.300127551 0.5560265858
Mad Men 5.2  A Little Kiss, Part 2 8.6 1076 5 0.300127551 0.5560265858
Mad Men 5.3  Tea Leaves 8 1021 5 -0.299872449 -0.5555539751
Mad Men 5.4  Mystery Date 8.7 1107 5 0.400127551 0.7412900127
Mad Men 5.5  Signal 30 9 1319 5 0.700127551 1.297080293
Mad Men 5.6  Far Away Places 9.1 1445 5 0.800127551 1.48234372
Mad Men 5.7  At the Codfish Ball 8.7 1086 5 0.400127551 0.7412900127
Mad Men 5.8  Lady Lazarus 8.4 1008 5 0.100127551 0.1854997322
Mad Men 5.9  Dark Shadows 8.2 934 5 -0.09987244898 -0.1850271214
Mad Men 5.10  Christmas Waltz 8.3 984 5 10  0.0001275510204 0.0002363053913
Mad Men 5.11  The Other Woman 9.4 1589 5 11  1.100127551 2.038134
Mad Men 5.12  Commissions and Fees 9.3 1446 5 12  1.000127551 1.852870574
Mad Men 5.13  The Phantom 8.6 1129 5 13  0.300127551 0.5560265858
Mad Men 6.1  The Doorway, Part 1 7.8 1162 6 -0.499872449 -0.9260808287
Mad Men 6.2  The Doorway, Part 2 7.9 1034 6 -0.399872449 -0.7408174019
Mad Men 6.3  Collaborators 8 994 6 -0.299872449 -0.5555539751
Mad Men 6.4  To Have and to Hold 8.2 950 6 -0.09987244898 -0.1850271214
Mad Men 6.5  The Flood 8.3 979 6 0.0001275510204 0.0002363053913
Mad Men 6.6  For Immediate Release 8.9 1143 6 0.600127551 1.111816866
Mad Men 6.7  Man with a Plan 8.1 931 6 -0.199872449 -0.3702905482
Mad Men 6.8  The Crash 8.7 1162 6 0.400127551 0.7412900127
Mad Men 6.9  The Better Half 8.5 991 6 0.200127551 0.370763159
Mad Men 6.10  A Tale of Two Cities 8.2 892 6 10  -0.09987244898 -0.1850271214
Mad Men 6.11  Favors 8.8 987 6 11  0.500127551 0.9265534395
Mad Men 6.12  The Quality of Mercy 8.6 909 6 12  0.300127551 0.5560265858
Mad Men 6.13  In Care Of 9.2 1235 6 13  0.900127551 1.667607147
Mad Men 7.1  Time Zones 8.1 1107 7 -0.199872449 -0.3702905482
Mad Men 7.2  A Day's Work 8.5 997 7 0.200127551 0.370763159
Mad Men 7.3  Field Trip 8.7 1036 7 0.400127551 0.7412900127
Mad Men 7.4  The Monolith 8.6 937 7 0.300127551 0.5560265858
Mad Men 7.5  The Runaways 8.7 998 7 0.400127551 0.7412900127
Mad Men 7.6  The Strategy 9 1115 7 0.700127551 1.297080293
Mad Men 7.7  Waterloo 9.5 1649 7 1.200127551 2.223397427
Mad Men 7.8  Severance 8.4 1112 7 0.100127551 0.1854997322
Mad Men 7.9  New Business 8.1 960 7 -0.199872449 -0.3702905482
Mad Men 7.10  The Forecast 8.5 995 7 10  0.200127551 0.370763159
Mad Men 7.11  Time & Life 9 1070 7 11  0.700127551 1.297080293
Mad Men 7.12  Lost Horizon 9.1 1141 7 12  0.800127551 1.48234372
Mad Men 7.13  The Milk and Honey Route 9.2 1271 7 13  0.900127551 1.667607147
Mad Men 7.14  Person to Person 9.3 2176 7 14  1.000127551 1.852870574
The Sopranos 1.1  Pilot 8.7 3071 1 0.400127551 0.7412900127
The Sopranos 1.2  46 Long 8.7 2394 1 0.400127551 0.7412900127
The Sopranos 1.3  Denial, Anger, Acceptance 8.9 2320 1 0.600127551 1.111816866
The Sopranos 1.4  Meadowlands 8.8 2193 1 0.500127551 0.9265534395
The Sopranos 1.5  College 8.9 2475 1 0.600127551 1.111816866
The Sopranos 1.6  Pax Soprana 8.7 2037 1 0.400127551 0.7412900127
The Sopranos 1.7  Down Neck 8.6 1969 1 0.300127551 0.5560265858
The Sopranos 1.8  The Legend of Tennessee Moltisanti 8.8 2023 1 0.500127551 0.9265534395
The Sopranos 1.9  Boca 8.7 1968 1 0.400127551 0.7412900127
The Sopranos 1.10  A Hit Is a Hit 8.4 1944 1 10  0.100127551 0.1854997322
The Sopranos 1.11  Nobody Knows Anything 8.8 1914 1 11  0.500127551 0.9265534395
The Sopranos 1.12  Isabella 9 2111 1 12  0.700127551 1.297080293
The Sopranos 1.13  I Dream of Jeannie Cusamano 9.1 2074 1 13  0.800127551 1.48234372
The Sopranos 2.1  Guy Walks Into a Psychiatrist's Office 8.5 1845 2 0.200127551 0.370763159
The Sopranos 2.2  Do Not Resuscitate 8.4 1732 2 0.100127551 0.1854997322
The Sopranos 2.3  Toodle-Fucking-Oo 8.6 1724 2 0.300127551 0.5560265858
The Sopranos 2.4  Commendatori 8.7 1872 2 0.400127551 0.7412900127
The Sopranos 2.5  Big Girls Don't Cry 8.7 1713 2 0.400127551 0.7412900127
The Sopranos 2.6  The Happy Wanderer 8.7 1725 2 0.400127551 0.7412900127
The Sopranos 2.7  D-Girl 8.7 1822 2 0.400127551 0.7412900127
The Sopranos 2.8  Full Leather Jacket 8.9 1745 2 0.600127551 1.111816866
The Sopranos 2.9  From Where to Eternity 8.8 1727 2 0.500127551 0.9265534395
The Sopranos 2.10  Bust-Out 8.7 1623 2 10  0.400127551 0.7412900127
The Sopranos 2.11  House Arrest 8.5 1599 2 11  0.200127551 0.370763159
The Sopranos 2.12  The Knight in White Satin Armor 9.1 1908 2 12  0.800127551 1.48234372
The Sopranos 2.13  Funhouse 9.2 2179 2 13  0.900127551 1.667607147
The Sopranos 3.1  Mr. Ruggerio's Neighborhood 8.7 1757 3 0.400127551 0.7412900127
The Sopranos 3.2  Proshai, Livushka 8.7 1671 3 0.400127551 0.7412900127
The Sopranos 3.3  Fortunate Son 8.6 1576 3 0.300127551 0.5560265858
The Sopranos 3.4  Employee of the Month 8.9 1840 3 0.600127551 1.111816866
The Sopranos 3.5  Another Toothpick 8.7 1618 3 0.400127551 0.7412900127
The Sopranos 3.6  University 8.7 1738 3 0.400127551 0.7412900127
The Sopranos 3.7  Second Opinion 8.6 1551 3 0.300127551 0.5560265858
The Sopranos 3.8  He Is Risen 8.5 1528 3 0.200127551 0.370763159
The Sopranos 3.9  The Telltale Moozadell 8.4 1503 3 0.100127551 0.1854997322
The Sopranos 3.10  To Save Us All from Satan's Power 8.6 1536 3 10  0.300127551 0.5560265858
The Sopranos 3.11  Pine Barrens 9.6 3763 3 11  1.300127551 2.408660854
The Sopranos 3.12  Amour Fou 9.1 1709 3 12  0.800127551 1.48234372
The Sopranos 3.13  Army of One 8.9 1687 3 13  0.600127551 1.111816866
The Sopranos 4.1  For All Debts Public and Private 8.2 1539 4 -0.09987244898 -0.1850271214
The Sopranos 4.2  No Show 8.3 1497 4 0.0001275510204 0.0002363053913
The Sopranos 4.3  Christopher 8 1552 4 -0.299872449 -0.5555539751
The Sopranos 4.4  The Weight 8.3 1529 4 0.0001275510204 0.0002363053913
The Sopranos 4.5  Pie-o-My 8.2 1485 4 -0.09987244898 -0.1850271214
The Sopranos 4.6  Everybody Hurts 8.3 1507 4 0.0001275510204 0.0002363053913
The Sopranos 4.7  Watching Too Much Television 8.2 1469 4 -0.09987244898 -0.1850271214
The Sopranos 4.8  Mergers and Acquisitions 8.2 1445 4 -0.09987244898 -0.1850271214
The Sopranos 4.9  Whoever Did This 8.9 1834 4 0.600127551 1.111816866
The Sopranos 4.10  The Strong, Silent Type 8.6 1557 4 10  0.300127551 0.5560265858
The Sopranos 4.11  Calling All Cars 8.1 1430 4 11  -0.199872449 -0.3702905482
The Sopranos 4.12  Eloise 8.2 1426 4 12  -0.09987244898 -0.1850271214
The Sopranos 4.13  Whitecaps 8.8 1944 4 13  0.500127551 0.9265534395
The Sopranos 5.1  Two Tonys 8.7 1480 5 0.400127551 0.7412900127
The Sopranos 5.2  Rat Pack 8.6 1418 5 0.300127551 0.5560265858
The Sopranos 5.3  Where's Johnny? 8.7 1436 5 0.400127551 0.7412900127
The Sopranos 5.4  All Happy Families 8.5 1404 5 0.200127551 0.370763159
The Sopranos 5.5  Irregular Around the Margins 9 1640 5 0.700127551 1.297080293
The Sopranos 5.6  Sentimental Education 8.4 1378 5 0.100127551 0.1854997322
The Sopranos 5.7  In Camelot 8.3 1439 5 0.0001275510204 0.0002363053913
The Sopranos 5.8  Marco Polo 8.7 1455 5 0.400127551 0.7412900127
The Sopranos 5.9  Unidentified Black Males 8.7 1450 5 0.400127551 0.7412900127
The Sopranos 5.10  Cold Cuts 8.7 1438 5 10  0.400127551 0.7412900127
The Sopranos 5.11  The Test Dream 8.6 1881 5 11  0.300127551 0.5560265858
The Sopranos 5.12  Long Term Parking 9.4 2157 5 12  1.100127551 2.038134
The Sopranos 5.13  All Due Respect 9 1624 5 13  0.700127551 1.297080293
The Sopranos 6.1  Members Only 9 1705 6 0.700127551 1.297080293
The Sopranos 6.2  Join the Club 8.6 1633 6 0.300127551 0.5560265858
The Sopranos 6.3  Mayham 8.6 1512 6 0.300127551 0.5560265858
The Sopranos 6.4  The Fleshy Part of the Thigh 8.5 1445 6 0.200127551 0.370763159
The Sopranos 6.5  Mr. & Mrs. John Sacrimoni Request 8.7 1497 6 0.400127551 0.7412900127
The Sopranos 6.6  Live Free or Die 8.6 1405 6 0.300127551 0.5560265858
The Sopranos 6.7  Luxury Lounge 8.4 1458 6 0.100127551 0.1854997322
The Sopranos 6.8  Johnny Cakes 8.4 1439 6 0.100127551 0.1854997322
The Sopranos 6.9  The Ride 8.4 1443 6 0.100127551 0.1854997322
The Sopranos 6.10  Moe n' Joe 8.4 1371 6 10  0.100127551 0.1854997322
The Sopranos 6.11  Cold Stones 8.7 1462 6 11  0.400127551 0.7412900127
The Sopranos 6.12  Kaisha 8.4 1494 6 12  0.100127551 0.1854997322
The Sopranos 6.13  Soprano Home Movies 8.8 1789 6 13  0.500127551 0.9265534395
The Sopranos 6.14  Stage 5 8.7 1618 6 14  0.400127551 0.7412900127
The Sopranos 6.15  Remember When 8.5 1532 6 15  0.200127551 0.370763159
The Sopranos 6.16  Chasing It 8.2 1488 6 16  -0.09987244898 -0.1850271214
The Sopranos 6.17  Walk Like a Man 8.7 1572 6 17  0.400127551 0.7412900127
The Sopranos 6.18  Kennedy and Heidi 9 1939 6 18  0.700127551 1.297080293
The Sopranos 6.19  The Second Coming 9.1 1782 6 19  0.800127551 1.48234372
The Sopranos 6.20  The Blue Comet 9.4 2298 6 20  1.100127551 2.038134
The Sopranos 6.21  Made in America 9 4325 6 21  0.700127551 1.297080293
Big Bang Theory 1.0  Unaired Pilot 6.9 1241 1 -1.399872449 -2.59345167
Big Bang Theory 1.1  Pilot 8.4 3661 1 0.100127551 0.1854997322
Big Bang Theory 1.2  The Big Bran Hypothesis 8.5 2803 1 0.200127551 0.370763159
Big Bang Theory 1.3  The Fuzzy Boots Corollary 7.9 2413 1 -0.399872449 -0.7408174019
Big Bang Theory 1.4  The Luminous Fish Effect 8.3 2454 1 0.0001275510204 0.0002363053913
Big Bang Theory 1.5  The Hamburger Postulate 8.1 2305 1 -0.199872449 -0.3702905482
Big Bang Theory 1.6  The Middle Earth Paradigm 8.6 2441 1 0.300127551 0.5560265858
Big Bang Theory 1.7  The Dumpling Paradox 8.3 2263 1 0.0001275510204 0.0002363053913
Big Bang Theory 1.8  The Grasshopper Experiment 8.4 2301 1 0.100127551 0.1854997322
Big Bang Theory 1.9  The Cooper-Hofstadter Polarization 8.2 2198 1 -0.09987244898 -0.1850271214
Big Bang Theory 1.10  The Loobenfeld Decay 8.2 2262 1 10  -0.09987244898 -0.1850271214
Big Bang Theory 1.11  The Pancake Batter Anomaly 8.3 2240 1 11  0.0001275510204 0.0002363053913
Big Bang Theory 1.12  The Jerusalem Duality 8.1 2135 1 12  -0.199872449 -0.3702905482
Big Bang Theory 1.13  The Bat Jar Conjecture 8.5 2193 1 13  0.200127551 0.370763159
Big Bang Theory 1.14  The Nerdvana Annihilation 8.3 2165 1 14  0.0001275510204 0.0002363053913
Big Bang Theory 1.15  The Pork Chop Indeterminacy 8.4 2338 1 15  0.100127551 0.1854997322
Big Bang Theory 1.16  The Peanut Reaction 8.5 2170 1 16  0.200127551 0.370763159
Big Bang Theory 1.17  The Tangerine Factor 8.7 2295 1 17  0.400127551 0.7412900127
Big Bang Theory 2.1  The Bad Fish Paradigm 8.4 2235 2 0.100127551 0.1854997322
Big Bang Theory 2.2  The Codpiece Topology 8.3 2015 2 0.0001275510204 0.0002363053913
Big Bang Theory 2.3  The Barbarian Sublimation 8.9 2364 2 0.600127551 1.111816866
Big Bang Theory 2.4  The Griffin Equivalency 8.1 2051 2 -0.199872449 -0.3702905482
Big Bang Theory 2.5  The Euclid Alternative 8.5 2103 2 0.200127551 0.370763159
Big Bang Theory 2.6  The Cooper-Nowitzki Theorem 8.4 2128 2 0.100127551 0.1854997322
Big Bang Theory 2.7  The Panty Piñata Polarization 8.8 2280 2 0.500127551 0.9265534395
Big Bang Theory 2.8  The Lizard-Spock Expansion 8.3 2029 2 0.0001275510204 0.0002363053913
Big Bang Theory 2.9  The White Asparagus Triangulation 8.3 1993 2 0.0001275510204 0.0002363053913
Big Bang Theory 2.10  The Vartabedian Conundrum 7.9 1949 2 10  -0.399872449 -0.7408174019
Big Bang Theory 2.11  The Bath Item Gift Hypothesis 9.2 3580 2 11  0.900127551 1.667607147
Big Bang Theory 2.12  The Killer Robot Instability 8.1 1956 2 12  -0.199872449 -0.3702905482
Big Bang Theory 2.13  The Friendship Algorithm 8.2 1972 2 13  -0.09987244898 -0.1850271214
Big Bang Theory 2.14  The Financial Permeability 8.2 1936 2 14  -0.09987244898 -0.1850271214
Big Bang Theory 2.15  The Maternal Capacitance 9 2459 2 15  0.700127551 1.297080293
Big Bang Theory 2.16  The Cushion Saturation 8.3 1967 2 16  0.0001275510204 0.0002363053913
Big Bang Theory 2.17  The Terminator Decoupling 8.4 2165 2 17  0.100127551 0.1854997322
Big Bang Theory 2.18  The Work Song Nanocluster 8.3 1975 2 18  0.0001275510204 0.0002363053913
Big Bang Theory 2.19  The Dead Hooker Juxtaposition 8.4 2019 2 19  0.100127551 0.1854997322
Big Bang Theory 2.20  The Hofstadter Isotope 8.2 1920 2 20  -0.09987244898 -0.1850271214
Big Bang Theory 2.21  The Vegas Renormalization 8.7 2102 2 21  0.400127551 0.7412900127
Big Bang Theory 2.22  The Classified Materials Turbulence 8.4 1888 2 22  0.100127551 0.1854997322
Big Bang Theory 2.23  The Monopolar Expedition 8.4 1942 2 23  0.100127551 0.1854997322
Big Bang Theory 3.1  The Electric Can Opener Fluctuation 8.5 2184 3 0.200127551 0.370763159
Big Bang Theory 3.2  The Jiminy Conjecture 8 1911 3 -0.299872449 -0.5555539751
Big Bang Theory 3.3  The Gothowitz Deviation 8.4 1980 3 0.100127551 0.1854997322
Big Bang Theory 3.4  The Pirate Solution 8.2 1927 3 -0.09987244898 -0.1850271214
Big Bang Theory 3.5  The Creepy Candy Coating Corollary 8.4 1950 3 0.100127551 0.1854997322
Big Bang Theory 3.6  The Cornhusker Vortex 7.7 1831 3 -0.599872449 -1.111344256
Big Bang Theory 3.7  The Guitarist Amplification 8 1818 3 -0.299872449 -0.5555539751
Big Bang Theory 3.8  The Adhesive Duck Deficiency 9 2807 3 0.700127551 1.297080293
Big Bang Theory 3.9  The Vengeance Formulation 8.5 1986 3 0.200127551 0.370763159
Big Bang Theory 3.10  The Gorilla Experiment 8.6 2006 3 10  0.300127551 0.5560265858
Big Bang Theory 3.11  The Maternal Congruence 8.4 1913 3 11  0.100127551 0.1854997322
Big Bang Theory 3.12  The Psychic Vortex 8.5 1934 3 12  0.200127551 0.370763159
Big Bang Theory 3.13  The Bozeman Reaction 8.2 1849 3 13  -0.09987244898 -0.1850271214
Big Bang Theory 3.14  The Einstein Approximation 8.6 2038 3 14  0.300127551 0.5560265858
Big Bang Theory 3.15  The Large Hadron Collision 8.2 1783 3 15  -0.09987244898 -0.1850271214
Big Bang Theory 3.16  The Excelsior Acquisition 8.4 1867 3 16  0.100127551 0.1854997322
Big Bang Theory 3.17  The Precious Fragmentation 8.6 2009 3 17  0.300127551 0.5560265858
Big Bang Theory 3.18  The Pants Alternative 8.6 1968 3 18  0.300127551 0.5560265858
Big Bang Theory 3.19  The Wheaton Recurrence 8.1 1810 3 19  -0.199872449 -0.3702905482
Big Bang Theory 3.20  The Spaghetti Catalyst 8.3 1789 3 20  0.0001275510204 0.0002363053913
Big Bang Theory 3.21  The Plimpton Stimulation 8.3 1950 3 21  0.0001275510204 0.0002363053913
Big Bang Theory 3.22  The Staircase Implementation 9.1 2712 3 22  0.800127551 1.48234372
Big Bang Theory 3.23  The Lunar Excitation 8.7 1970 3 23  0.400127551 0.7412900127
Big Bang Theory 4.1  The Robotic Manipulation 8.8 2330 4 0.500127551 0.9265534395
Big Bang Theory 4.2  The Cruciferous Vegetable Amplification 8.5 2052 4 0.200127551 0.370763159
Big Bang Theory 4.3  The Zazzy Substitution 8.1 1876 4 -0.199872449 -0.3702905482
Big Bang Theory 4.4  The Hot Troll Deviation 8.2 1881 4 -0.09987244898 -0.1850271214
Big Bang Theory 4.5  The Desperation Emanation 7.9 1776 4 -0.399872449 -0.7408174019
Big Bang Theory 4.6  The Irish Pub Formulation 8.1 1809 4 -0.199872449 -0.3702905482
Big Bang Theory 4.7  The Apology Insufficiency 8.2 1842 4 -0.09987244898 -0.1850271214
Big Bang Theory 4.8  The 21-Second Excitation 8.3 1804 4 0.0001275510204 0.0002363053913
Big Bang Theory 4.9  The Boyfriend Complexity 8.6 1924 4 0.300127551 0.5560265858
Big Bang Theory 4.10  The Alien Parasite Hypothesis 7.8 1759 4 10  -0.499872449 -0.9260808287
Big Bang Theory 4.11  The Justice League Recombination 8.8 2109 4 11  0.500127551 0.9265534395
Big Bang Theory 4.12  The Bus Pants Utilization 7.8 1786 4 12  -0.499872449 -0.9260808287
Big Bang Theory 4.13  The Love Car Displacement 8.4 1922 4 13  0.100127551 0.1854997322
Big Bang Theory 4.14  The Thespian Catalyst 8 1803 4 14  -0.299872449 -0.5555539751
Big Bang Theory 4.15  The Benefactor Factor 7.9 1761 4 15  -0.399872449 -0.7408174019
Big Bang Theory 4.16  The Cohabitation Formulation 8.1 1718 4 16  -0.199872449 -0.3702905482
Big Bang Theory 4.17  The Toast Derivation 8.1 1744 4 17  -0.199872449 -0.3702905482
Big Bang Theory 4.18  The Prestidigitation Approximation 8.3 1837 4 18  0.0001275510204 0.0002363053913
Big Bang Theory 4.19  The Zarnecki Incursion 8.2 1768 4 19  -0.09987244898 -0.1850271214
Big Bang Theory 4.20  The Herb Garden Germination 8.4 1761 4 20  0.100127551 0.1854997322
Big Bang Theory 4.21  The Agreement Dissection 8.4 1805 4 21  0.100127551 0.1854997322
Big Bang Theory 4.22  The Wildebeest Implementation 8 1714 4 22  -0.299872449 -0.5555539751
Big Bang Theory 4.23  The Engagement Reaction 8.2 1724 4 23  -0.09987244898 -0.1850271214
Big Bang Theory 4.24  The Roommate Transmogrification 8.7 1863 4 24  0.400127551 0.7412900127
Big Bang Theory 5.1  The Skank Reflex Analysis 8.2 2326 5 -0.09987244898 -0.1850271214
Big Bang Theory 5.2  The Infestation Hypothesis 8.2 1925 5 -0.09987244898 -0.1850271214
Big Bang Theory 5.3  The Pulled Groin Extrapolation 7.9 1805 5 -0.399872449 -0.7408174019
Big Bang Theory 5.4  The Wiggly Finger Catalyst 8 1853 5 -0.299872449 -0.5555539751
Big Bang Theory 5.5  The Russian Rocket Reaction 8.2 1815 5 -0.09987244898 -0.1850271214
Big Bang Theory 5.6  The Rhinitis Revelation 7.7 1773 5 -0.599872449 -1.111344256
Big Bang Theory 5.7  The Good Guy Fluctuation 8.7 2324 5 0.400127551 0.7412900127
Big Bang Theory 5.8  The Isolation Permutation 7.9 1766 5 -0.399872449 -0.7408174019
Big Bang Theory 5.9  The Ornithophobia Diffusion 8.3 1846 5 0.0001275510204 0.0002363053913
Big Bang Theory 5.10  The Flaming Spittoon Acquisition 8.1 1819 5 10  -0.199872449 -0.3702905482
Big Bang Theory 5.11  The Speckerman Recurrence 7.5 1755 5 11  -0.799872449 -1.481871109
Big Bang Theory 5.12  The Shiny Trinket Maneuver 7.9 1801 5 12  -0.399872449 -0.7408174019
Big Bang Theory 5.13  The Recombination Hypothesis 8.3 1920 5 13  0.0001275510204 0.0002363053913
Big Bang Theory 5.14  The Beta Test Initiation 8.4 1931 5 14  0.100127551 0.1854997322
Big Bang Theory 5.15  The Friendship Contraction 7.9 1692 5 15  -0.399872449 -0.7408174019
Big Bang Theory 5.16  The Vacation Solution 7.8 1681 5 16  -0.499872449 -0.9260808287
Big Bang Theory 5.17  The Rothman Disintegration 8 1730 5 17  -0.299872449 -0.5555539751
Big Bang Theory 5.18  The Werewolf Transformation 8.4 1886 5 18  0.100127551 0.1854997322
Big Bang Theory 5.19  The Weekend Vortex 8.3 1748 5 19  0.0001275510204 0.0002363053913
Big Bang Theory 5.20  The Transporter Malfunction 8.3 1875 5 20  0.0001275510204 0.0002363053913
Big Bang Theory 5.21  The Hawking Excitation 8.7 2163 5 21  0.400127551 0.7412900127
Big Bang Theory 5.22  The Stag Convergence 7.9 1735 5 22  -0.399872449 -0.7408174019
Big Bang Theory 5.23  The Launch Acceleration 8.3 1700 5 23  0.0001275510204 0.0002363053913
Big Bang Theory 5.24  The Countdown Reflection 8.6 2040 5 24  0.300127551 0.5560265858
Big Bang Theory 6.1  The Date Night Variable 7.8 2609 6 -0.499872449 -0.9260808287
Big Bang Theory 6.2  The Decoupling Fluctuation 7.8 1857 6 -0.499872449 -0.9260808287
Big Bang Theory 6.3  The Higgs Boson Observation 8.1 1855 6 -0.199872449 -0.3702905482
Big Bang Theory 6.4  The Re-Entry Minimization 8.4 1979 6 0.100127551 0.1854997322
Big Bang Theory 6.5  The Holographic Excitation 8.2 1811 6 -0.09987244898 -0.1850271214
Big Bang Theory 6.6  The Extract Obliteration 8 1723 6 -0.299872449 -0.5555539751
Big Bang Theory 6.7  The Habitation Configuration 7.9 1687 6 -0.399872449 -0.7408174019
Big Bang Theory 6.8  The 43 Peculiarity 8.6 2054 6 0.300127551 0.5560265858
Big Bang Theory 6.9  The Parking Spot Escalation 8.4 1950 6 0.100127551 0.1854997322
Big Bang Theory 6.10  The Fish Guts Displacement 8.2 1831 6 10  -0.09987244898 -0.1850271214
Big Bang Theory 6.11  The Santa Simulation 8 1759 6 11  -0.299872449 -0.5555539751
Big Bang Theory 6.12  The Egg Salad Equivalency 8.5 2043 6 12  0.200127551 0.370763159
Big Bang Theory 6.13  The Bakersfield Expedition 8.5 2046 6 13  0.200127551 0.370763159
Big Bang Theory 6.14  The Cooper/Kripke Inversion 8 1757 6 14  -0.299872449 -0.5555539751
Big Bang Theory 6.15  The Spoiler Alert Segmentation 8.4 1826 6 15  0.100127551 0.1854997322
Big Bang Theory 6.16  The Tangible Affection Proof 8.1 1772 6 16  -0.199872449 -0.3702905482
Big Bang Theory 6.17  The Monster Isolation 7.8 1655 6 17  -0.499872449 -0.9260808287
Big Bang Theory 6.18  The Contractual Obligation Implementation 7.9 1704 6 18  -0.399872449 -0.7408174019
Big Bang Theory 6.19  The Closet Reconfiguration 8.1 1797 6 19  -0.199872449 -0.3702905482
Big Bang Theory 6.20  The Tenure Turbulence 8.1 1761 6 20  -0.199872449 -0.3702905482
Big Bang Theory 6.21  The Closure Alternative 8.1 1682 6 21  -0.199872449 -0.3702905482
Big Bang Theory 6.22  The Proton Resurgence 8 1765 6 22  -0.299872449 -0.5555539751
Big Bang Theory 6.23  The Love Spell Potential 8.2 1805 6 23  -0.09987244898 -0.1850271214
Big Bang Theory 6.24  The Bon Voyage Reaction 7.9 1699 6 24  -0.399872449 -0.7408174019
Big Bang Theory 7.1  The Hofstadter Insufficiency 8 2068 7 -0.299872449 -0.5555539751
Big Bang Theory 7.2  The Deception Verification 8.1 2009 7 -0.199872449 -0.3702905482
Big Bang Theory 7.3  The Scavenger Vortex 8.8 2380 7 0.500127551 0.9265534395
Big Bang Theory 7.4  The Raiders Minimization 8.1 1769 7 -0.199872449 -0.3702905482
Big Bang Theory 7.5  The Workplace Proximity 7.9 1667 7 -0.399872449 -0.7408174019
Big Bang Theory 7.6  The Romance Resonance 8.5 2026 7 0.200127551 0.370763159
Big Bang Theory 7.7  The Proton Displacement 7.9 1698 7 -0.399872449 -0.7408174019
Big Bang Theory 7.8  The Itchy Brain Simulation 7.7 1687 7 -0.599872449 -1.111344256
Big Bang Theory 7.9  The Thanksgiving Decoupling 8.9 2472 7 0.600127551 1.111816866
Big Bang Theory 7.10  The Discovery Dissipation 7.8 1586 7 10  -0.499872449 -0.9260808287
Big Bang Theory 7.11  The Cooper Extraction 8.3 1806 7 11  0.0001275510204 0.0002363053913
Big Bang Theory 7.12  The Hesitation Ramification 7.6 1664 7 12  -0.699872449 -1.296607682
Big Bang Theory 7.13  The Occupation Recalibration 7.7 1647 7 13  -0.599872449 -1.111344256
Big Bang Theory 7.14  The Convention Conundrum 8 1764 7 14  -0.299872449 -0.5555539751
Big Bang Theory 7.15  The Locomotive Manipulation 8.4 1955 7 15  0.100127551 0.1854997322
Big Bang Theory 7.16  The Table Polarization 7.8 1558 7 16  -0.499872449 -0.9260808287
Big Bang Theory 7.17  The Friendship Turbulence 7.6 1530 7 17  -0.699872449 -1.296607682
Big Bang Theory 7.18  The Mommy Observation 7.6 1570 7 18  -0.699872449 -1.296607682
Big Bang Theory 7.19  The Indecision Amalgamation 8.3 1760 7 19  0.0001275510204 0.0002363053913
Big Bang Theory 7.20  The Relationship Diremption 8.2 1603 7 20  -0.09987244898 -0.1850271214
Big Bang Theory 7.21  The Anything Can Happen Recurrence 7.7 1502 7 21  -0.599872449 -1.111344256
Big Bang Theory 7.22  The Proton Transmogrification 7.8 1584 7 22  -0.499872449 -0.9260808287
Big Bang Theory 7.23  The Gorilla Dissolution 8 1612 7 23  -0.299872449 -0.5555539751
Big Bang Theory 7.24  The Status Quo Combustion 8.1 1663 7 24  -0.199872449 -0.3702905482
Big Bang Theory 8.1  The Locomotion Interruption 7.2 2107 8 -1.099872449 -2.03766139
Big Bang Theory 8.2  The Junior Professor Solution 7.6 1896 8 -0.699872449 -1.296607682
Big Bang Theory 8.3  The First Pitch Insufficiency 7 1833 8 -1.299872449 -2.408188243
Big Bang Theory 8.4  The Hook-up Reverberation 7.3 1693 8 -0.999872449 -1.852397963
Big Bang Theory 8.5  The Focus Attenuation 7.5 1720 8 -0.799872449 -1.481871109
Big Bang Theory 8.6  The Expedition Approximation 7.3 1634 8 -0.999872449 -1.852397963
Big Bang Theory 8.7  The Misinterpretation Agitation 7.8 1818 8 -0.499872449 -0.9260808287
Big Bang Theory 8.8  The Prom Equivalency 8.1 1798 8 -0.199872449 -0.3702905482
Big Bang Theory 8.9  The Septum Deviation 7.5 1546 8 -0.799872449 -1.481871109
Big Bang Theory 8.10  The Champagne Reflection 6.9 1627 8 10  -1.399872449 -2.59345167
Big Bang Theory 8.11  The Clean Room Infiltration 7.4 1506 8 11  -0.899872449 -1.667134536
Big Bang Theory 8.12  The Space Probe Disintegration 7.3 1455 8 12  -0.999872449 -1.852397963
Big Bang Theory 8.13  The Anxiety Optimization 7.5 1451 8 13  -0.799872449 -1.481871109
Big Bang Theory 8.14  The Troll Manifestation 8.1 1607 8 14  -0.199872449 -0.3702905482
Big Bang Theory 8.15  The Comic Book Store Regeneration 8.1 1576 8 15  -0.199872449 -0.3702905482
Big Bang Theory 8.16  The Intimacy Acceleration 8 1501 8 16  -0.299872449 -0.5555539751
Big Bang Theory 8.17  The Colonization Application 7.7 1406 8 17  -0.599872449 -1.111344256
Big Bang Theory 8.18  The Leftover Thermalization 7.4 1384 8 18  -0.899872449 -1.667134536
Big Bang Theory 8.19  The Skywalker Incursion 7.6 1359 8 19  -0.699872449 -1.296607682
Big Bang Theory 8.20  The Fortification Implementation 7.6 1352 8 20  -0.699872449 -1.296607682
Big Bang Theory 8.21  The Communication Deterioration 7.1 1359 8 21  -1.199872449 -2.222924816
Big Bang Theory 8.22  The Graduation Transmission 7.4 1368 8 22  -0.899872449 -1.667134536
Big Bang Theory 8.23  The Maternal Combustion 7.5 1391 8 23  -0.799872449 -1.481871109
Big Bang Theory 8.24  The Commitment Determination 8.1 1752 8 24  -0.199872449 -0.3702905482
Big Bang Theory 9.1  The Matrimonial Momentum 6.8 2059 9 -1.499872449 -2.778715097
Big Bang Theory 9.2  The Separation Oscillation 7.4 1594 9 -0.899872449 -1.667134536
Big Bang Theory 9.3  The Bachelor Party Corrosion 7.8 1597 9 -0.499872449 -0.9260808287
Big Bang Theory 9.4  The 2003 Approximation 7.5 1470 9 -0.799872449 -1.481871109
Big Bang Theory 9.5  The Perspiration Implementation 7.5 1387 9 -0.799872449 -1.481871109
Big Bang Theory 9.6  The Helium Insufficiency 7.3 1428 9 -0.999872449 -1.852397963
Big Bang Theory 9.7  The Spock Resonance 8.1 1457 9 -0.199872449 -0.3702905482
Big Bang Theory 9.8  The Mystery Date Observation 8.1 1455 9 -0.199872449 -0.3702905482
Big Bang Theory 9.9  The Platonic Permutation 8 1411 9 -0.299872449 -0.5555539751
Big Bang Theory 9.10  The Earworm Reverberation 8.4 1694 9 10  0.100127551 0.1854997322
Big Bang Theory 9.11  The Opening Night Excitation 9.2 2935 9 11  0.900127551 1.667607147
Big Bang Theory 9.12  The Sales Call Sublimation 7.5 1275 9 12  -0.799872449 -1.481871109
Big Bang Theory 9.13  The Empathy Optimization 7.5 1282 9 13  -0.799872449 -1.481871109
Big Bang Theory 9.14  The Meemaw Materialization 7.6 1273 9 14  -0.699872449 -1.296607682
Big Bang Theory 9.15  The Valentino Submergence 7.5 1249 9 15  -0.799872449 -1.481871109
Big Bang Theory 9.16  The Positive Negative Reaction 7.4 1324 9 16  -0.899872449 -1.667134536
Big Bang Theory 9.17  The Celebration Experimentation 7.5 1305 9 17  -0.799872449 -1.481871109
Big Bang Theory 9.18  The Application Deterioration 7.6 1238 9 18  -0.699872449 -1.296607682
Big Bang Theory 9.19  The Solder Excursion Diversion 7.5 1139 9 19  -0.799872449 -1.481871109
Big Bang Theory 9.20  The Big Bear Precipitation 7.5 1109 9 20  -0.799872449 -1.481871109
Big Bang Theory 9.21  The Viewing Party Combustion 7.6 1123 9 21  -0.699872449 -1.296607682
Big Bang Theory 9.22  The Fermentation Bifurcation 7.6 1065 9 22  -0.699872449 -1.296607682
Big Bang Theory 9.23  The Line Substitution Solution 7.5 1068 9 23  -0.799872449 -1.481871109
Big Bang Theory 9.24  The Convergence Convergence 7.8 1272 9 24  -0.499872449 -0.9260808287
Big Bang Theory 10.1  The Conjugal Conjecture 7.8 1510 10 -0.499872449 -0.9260808287
Big Bang Theory 10.2  The Military Miniaturization 7.5 1072 10 -0.799872449 -1.481871109
Big Bang Theory 10.3  The Dependence Transcendence 7.4 991 10 -0.899872449 -1.667134536
Big Bang Theory 10.4  The Cohabitation Experimentation 8.1 1146 10 -0.199872449 -0.3702905482
Big Bang Theory 10.5  The Hot Tub Contamination 7.5 952 10 -0.799872449 -1.481871109
Big Bang Theory 10.6  The Fetal Kick Catalyst 7.5 962 10 -0.799872449 -1.481871109
Big Bang Theory 10.7  The Veracity Elasticity 8.2 1044 10 -0.09987244898 -0.1850271214
Big Bang Theory 10.8  The Brain Bowl Incubation 8.3 1110 10 0.0001275510204 0.0002363053913
Big Bang Theory 10.9  The Geology Elevation 7.6 869 10 -0.699872449 -1.296607682
Big Bang Theory 10.10  The Property Division Collision 7.5 862 10 10  -0.799872449 -1.481871109
Big Bang Theory 10.11  The Birthday Synchronicity 7.6 885 10 11  -0.699872449 -1.296607682
Big Bang Theory 10.12  The Holiday Summation 7.4 892 10 12  -0.899872449 -1.667134536
Big Bang Theory 10.13  The Romance Recalibration 7 803 10 13  -1.299872449 -2.408188243
Big Bang Theory 10.14  The Emotion Detection Automation 7.3 752 10 14  -0.999872449 -1.852397963
Big Bang Theory 10.15  The Locomotion Reverberation 7.2 699 10 15  -1.099872449 -2.03766139
Big Bang Theory 10.16  The Allowance Evaporation 7.2 646 10 16  -1.099872449 -2.03766139
Big Bang Theory 10.17  The Comic-Con Conundrum 7.6 646 10 17  -0.699872449 -1.296607682
Big Bang Theory 10.18  The Escape Hatch Identification 7.3 583 10 18  -0.999872449 -1.852397963
Big Bang Theory 10.19  The Collaboration Fluctuation 7 548 10 19  -1.299872449 -2.408188243
Big Bang Theory 10.20  The Recollection Dissipation 7.2 464 10 20  -1.099872449 -2.03766139
Big Bang Theory 10.21  The Separation Agitation 7.5 394 10 21  -0.799872449 -1.481871109
Modern Family 1.1  Pilot 8.3 1997 1 0.0001275510204 0.0002363053913
Modern Family 1.2  The Bicycle Thief 8.2 1606 1 -0.09987244898 -0.1850271214
Modern Family 1.3  Come Fly with Me 8 1403 1 -0.299872449 -0.5555539751
Modern Family 1.4  The Incident 8.3 1461 1 0.0001275510204 0.0002363053913
Modern Family 1.5  Coal Digger 8.3 1393 1 0.0001275510204 0.0002363053913
Modern Family 1.6  Run for Your Wife 7.9 1332 1 -0.399872449 -0.7408174019
Modern Family 1.7  En Garde 8.1 1291 1 -0.199872449 -0.3702905482
Modern Family 1.8  Great Expectations 8.1 1363 1 -0.199872449 -0.3702905482
Modern Family 1.9  Fizbo 8.8 1545 1 0.500127551 0.9265534395
Modern Family 1.10  Undeck the Halls 8.2 1222 1 10  -0.09987244898 -0.1850271214
Modern Family 1.11  Up All Night 8.1 1209 1 11  -0.199872449 -0.3702905482
Modern Family 1.12  Not in My House 8 1172 1 12  -0.299872449 -0.5555539751
Modern Family 1.13  Fifteen Percent 8.2 1225 1 13  -0.09987244898 -0.1850271214
Modern Family 1.14  Moon Landing 8.2 1213 1 14  -0.09987244898 -0.1850271214
Modern Family 1.15  My Funky Valentine 8.8 1355 1 15  0.500127551 0.9265534395
Modern Family 1.16  Fears 8.1 1121 1 16  -0.199872449 -0.3702905482
Modern Family 1.17  Truth Be Told 7.9 1147 1 17  -0.399872449 -0.7408174019
Modern Family 1.18  Starry Night 8.1 1130 1 18  -0.199872449 -0.3702905482
Modern Family 1.19  Game Changer 7.9 1116 1 19  -0.399872449 -0.7408174019
Modern Family 1.20  Benched 7.8 1103 1 20  -0.499872449 -0.9260808287
Modern Family 1.21  Travels with Scout 7.9 1106 1 21  -0.399872449 -0.7408174019
Modern Family 1.22  Airport 2010 8.3 1178 1 22  0.0001275510204 0.0002363053913
Modern Family 1.23  Hawaii 8.5 1235 1 23  0.200127551 0.370763159
Modern Family 1.24  Family Portrait 8.6 1268 1 24  0.300127551 0.5560265858
Modern Family 2.1  The Old Wagon 8.1 1161 2 -0.199872449 -0.3702905482
Modern Family 2.2  The Kiss 8.1 1152 2 -0.199872449 -0.3702905482
Modern Family 2.3  Earthquake 7.8 1122 2 -0.499872449 -0.9260808287
Modern Family 2.4  Strangers on a Treadmill 8.1 1090 2 -0.199872449 -0.3702905482
Modern Family 2.5  Unplugged 8.3 1128 2 0.0001275510204 0.0002363053913
Modern Family 2.6  Halloween 8.6 1253 2 0.300127551 0.5560265858
Modern Family 2.7  Chirp 7.8 1061 2 -0.499872449 -0.9260808287
Modern Family 2.8  Manny Get Your Gun 8.4 1203 2 0.100127551 0.1854997322
Modern Family 2.9  Mother Tucker 7.7 1029 2 -0.599872449 -1.111344256
Modern Family 2.10  Dance Dance Revelation 7.6 1033 2 10  -0.699872449 -1.296607682
Modern Family 2.11  Slow Down Your Neighbors 8.2 1172 2 11  -0.09987244898 -0.1850271214
Modern Family 2.12  Our Children, Ourselves 7.9 1051 2 12  -0.399872449 -0.7408174019
Modern Family 2.13  Caught in the Act 9 1580 2 13  0.700127551 1.297080293
Modern Family 2.14  Bixby's Back 8 1046 2 14  -0.299872449 -0.5555539751
Modern Family 2.15  Princess Party 7.6 1049 2 15  -0.699872449 -1.296607682
Modern Family 2.16  Regrets Only 8.1 1031 2 16  -0.199872449 -0.3702905482
Modern Family 2.17  Two Monkeys and a Panda 7.8 1021 2 17  -0.499872449 -0.9260808287
Modern Family 2.18  Boys' Night 8.3 1069 2 18  0.0001275510204 0.0002363053913
Modern Family 2.19  The Musical Man 8.3 1100 2 19  0.0001275510204 0.0002363053913
Modern Family 2.20  Someone to Watch Over Lily 8.1 1010 2 20  -0.199872449 -0.3702905482
Modern Family 2.21  Mother's Day 8.1 1030 2 21  -0.199872449 -0.3702905482
Modern Family 2.22  Good Cop Bad Dog 8.2 1037 2 22  -0.09987244898 -0.1850271214
Modern Family 2.23  See You Next Fall 8.2 1042 2 23  -0.09987244898 -0.1850271214
Modern Family 2.24  The One That Got Away 8.1 1019 2 24  -0.199872449 -0.3702905482
Modern Family 3.1  Dude Ranch 8 1187 3 -0.299872449 -0.5555539751
Modern Family 3.2  When Good Kids Go Bad 8.2 1089 3 -0.09987244898 -0.1850271214
Modern Family 3.3  Phil on Wire 8.2 1094 3 -0.09987244898 -0.1850271214
Modern Family 3.4  Door to Door 7.9 1013 3 -0.399872449 -0.7408174019
Modern Family 3.5  Hit and Run 7.9 1000 3 -0.399872449 -0.7408174019
Modern Family 3.6  Go Bullfrogs! 7.8 1004 3 -0.499872449 -0.9260808287
Modern Family 3.7  Treehouse 8.2 1100 3 -0.09987244898 -0.1850271214
Modern Family 3.8  After the Fire 7.9 961 3 -0.399872449 -0.7408174019
Modern Family 3.9  Punkin Chunkin 7.9 1000 3 -0.399872449 -0.7408174019
Modern Family 3.10  Express Christmas 8.1 1039 3 10  -0.199872449 -0.3702905482
Modern Family 3.11  Lifetime Supply 7.9 1003 3 11  -0.399872449 -0.7408174019
Modern Family 3.12  Egg Drop 7.7 982 3 12  -0.599872449 -1.111344256
Modern Family 3.13  Little Bo Bleep 8.5 1144 3 13  0.200127551 0.370763159
Modern Family 3.14  Me? Jealous? 8 997 3 14  -0.299872449 -0.5555539751
Modern Family 3.15  Aunt Mommy 8.2 979 3 15  -0.09987244898 -0.1850271214
Modern Family 3.16  Virgin Territory 7.9 993 3 16  -0.399872449 -0.7408174019
Modern Family 3.17  Leap Day 8.1 1009 3 17  -0.199872449 -0.3702905482
Modern Family 3.18  Send Out the Clowns 7.6 987 3 18  -0.699872449 -1.296607682
Modern Family 3.19  Election Day 7.8 966 3 19  -0.499872449 -0.9260808287
Modern Family 3.20  The Last Walt 7.7 927 3 20  -0.599872449 -1.111344256
Modern Family 3.21  Planes, Trains and Cars 7.8 923 3 21  -0.499872449 -0.9260808287
Modern Family 3.22  Disneyland 8.2 1001 3 22  -0.09987244898 -0.1850271214
Modern Family 3.23  Tableau Vivant 8.1 924 3 23  -0.199872449 -0.3702905482
Modern Family 3.24  Baby on Board 8.7 1108 3 24  0.400127551 0.7412900127
Modern Family 4.1  Bringing Up Baby 8.3 1226 4 0.0001275510204 0.0002363053913
Modern Family 4.2  Schooled 8.7 1219 4 0.400127551 0.7412900127
Modern Family 4.3  Snip 8.1 970 4 -0.199872449 -0.3702905482
Modern Family 4.4  The Butler's Escape 7.7 932 4 -0.599872449 -1.111344256
Modern Family 4.5  Open House of Horrors 8 960 4 -0.299872449 -0.5555539751
Modern Family 4.6  Yard Sale 7.9 918 4 -0.399872449 -0.7408174019
Modern Family 4.7  Arrested 8.6 1031 4 0.300127551 0.5560265858
Modern Family 4.8  Mistery Date 8.2 999 4 -0.09987244898 -0.1850271214
Modern Family 4.9  When a Tree Falls 7.8 929 4 -0.499872449 -0.9260808287
Modern Family 4.10  Diamond in the Rough 7.8 901 4 10  -0.499872449 -0.9260808287
Modern Family 4.11  New Year's Eve 8.1 956 4 11  -0.199872449 -0.3702905482
Modern Family 4.12  Party Crasher 8.4 1038 4 12  0.100127551 0.1854997322
Modern Family 4.13  Fulgencio 8.9 1647 4 13  0.600127551 1.111816866
Modern Family 4.14  A Slight at the Opera 7.6 906 4 14  -0.699872449 -1.296607682
Modern Family 4.15  Heart Broken 7.7 888 4 15  -0.599872449 -1.111344256
Modern Family 4.16  Bad Hair Day 7.4 894 4 16  -0.899872449 -1.667134536
Modern Family 4.17  Best Men 8.1 978 4 17  -0.199872449 -0.3702905482
Modern Family 4.18  The Wow Factor 7.7 887 4 18  -0.599872449 -1.111344256
Modern Family 4.19  The Future Dunphys 7.9 920 4 19  -0.399872449 -0.7408174019
Modern Family 4.20  Flip Flop 7.8 870 4 20  -0.499872449 -0.9260808287
Modern Family 4.21  Career Day 7.6 842 4 21  -0.699872449 -1.296607682
Modern Family 4.22  My Hero 7.8 856 4 22  -0.499872449 -0.9260808287
Modern Family 4.23  Games People Play 7.8 835 4 23  -0.499872449 -0.9260808287
Modern Family 4.24  Goodnight Gracie 8.2 962 4 24  -0.09987244898 -0.1850271214
Modern Family 5.1  Suddenly, Last Summer 8.1 1035 5 -0.199872449 -0.3702905482
Modern Family 5.2  First Days 7.9 935 5 -0.399872449 -0.7408174019
Modern Family 5.3  Larry's Wife 7.6 880 5 -0.699872449 -1.296607682
Modern Family 5.4  Farm Strong 7.9 868 5 -0.399872449 -0.7408174019
Modern Family 5.5  The Late Show 8.1 948 5 -0.199872449 -0.3702905482
Modern Family 5.6  The Help 7.7 884 5 -0.599872449 -1.111344256
Modern Family 5.7  A Fair to Remember 7.9 922 5 -0.399872449 -0.7408174019
Modern Family 5.8  ClosetCon '13 7.7 879 5 -0.599872449 -1.111344256
Modern Family 5.9  The Big Game 7.6 822 5 -0.699872449 -1.296607682
Modern Family 5.10  The Old Man & the Tree 7.9 871 5 10  -0.399872449 -0.7408174019
Modern Family 5.11  And One to Grow On 7.6 839 5 11  -0.699872449 -1.296607682
Modern Family 5.12  Under Pressure 8.6 1064 5 12  0.300127551 0.5560265858
Modern Family 5.13  Three Dinners 8.2 907 5 13  -0.09987244898 -0.1850271214
Modern Family 5.14  iSpy 8.1 863 5 14  -0.199872449 -0.3702905482
Modern Family 5.15  The Feud 7.7 854 5 15  -0.599872449 -1.111344256
Modern Family 5.16  Spring-A-Ding-Fling 7.8 828 5 16  -0.499872449 -0.9260808287
Modern Family 5.17  Other People's Children 8 834 5 17  -0.299872449 -0.5555539751
Modern Family 5.18  Las Vegas 9.2 1906 5 18  0.900127551 1.667607147
Modern Family 5.19  A Hard Jay's Night 7.8 825 5 19  -0.499872449 -0.9260808287
Modern Family 5.20  Australia 8 911 5 20  -0.299872449 -0.5555539751
Modern Family 5.21  Sleeper 7.6 807 5 21  -0.699872449 -1.296607682
Modern Family 5.22  Message Received 8.4 863 5 22  0.100127551 0.1854997322
Modern Family 5.23  The Wedding, Part 1 8.2 880 5 23  -0.09987244898 -0.1850271214
Modern Family 5.24  The Wedding, Part 2 8.6 1041 5 24  0.300127551 0.5560265858
Modern Family 6.1  The Long Honeymoon 8 1015 6 -0.299872449 -0.5555539751
Modern Family 6.2  Don't Push 8.1 942 6 -0.199872449 -0.3702905482
Modern Family 6.3  The Cold 8 883 6 -0.299872449 -0.5555539751
Modern Family 6.4  Marco Polo 8 863 6 -0.299872449 -0.5555539751
Modern Family 6.5  Won't You Be Our Neighbor 8 865 6 -0.299872449 -0.5555539751
Modern Family 6.6  Halloween 3: AwesomeLand 7.7 851 6 -0.599872449 -1.111344256
Modern Family 6.7  Queer Eyes, Full Hearts 8.2 879 6 -0.09987244898 -0.1850271214
Modern Family 6.8  Three Turkeys 8.4 960 6 0.100127551 0.1854997322
Modern Family 6.9  Strangers in the Night 7.7 824 6 -0.599872449 -1.111344256
Modern Family 6.10  Haley's 21st Birthday 8.2 878 6 10  -0.09987244898 -0.1850271214
Modern Family 6.11  The Day We Almost Died 8.3 991 6 11  0.0001275510204 0.0002363053913
Modern Family 6.12  The Big Guns 7.8 840 6 12  -0.499872449 -0.9260808287
Modern Family 6.13  Rash Decisions 7.6 802 6 13  -0.699872449 -1.296607682
Modern Family 6.14  Valentine's Day 4: Twisted Sister 7.9 812 6 14  -0.399872449 -0.7408174019
Modern Family 6.15  Fight or Flight 8 866 6 15  -0.299872449 -0.5555539751
Modern Family 6.16  Connection Lost 9.5 3982 6 16  1.200127551 2.223397427
Modern Family 6.17  Closet? You'll Love It! 7.9 853 6 17  -0.399872449 -0.7408174019
Modern Family 6.18  Spring Break 7.5 800 6 18  -0.799872449 -1.481871109
Modern Family 6.19  Grill, Interrupted 7.7 770 6 19  -0.599872449 -1.111344256
Modern Family 6.20  Knock 'Em Down 8.2 798 6 20  -0.09987244898 -0.1850271214
Modern Family 6.21  Integrity 7.9 739 6 21  -0.399872449 -0.7408174019
Modern Family 6.22  Patriot Games 8.2 785 6 22  -0.09987244898 -0.1850271214
Modern Family 6.23  Crying Out Loud 8.4 790 6 23  0.100127551 0.1854997322
Modern Family 6.24  American Skyper 8.9 1112 6 24  0.600127551 1.111816866
Modern Family 7.1  Summer Lovin' 8 842 7 -0.299872449 -0.5555539751
Modern Family 7.2  The Day Alex Left for College 7.9 763 7 -0.399872449 -0.7408174019
Modern Family 7.3  The Closet Case 8 729 7 -0.299872449 -0.5555539751
Modern Family 7.4  She Crazy 7.8 715 7 -0.499872449 -0.9260808287
Modern Family 7.5  The Verdict 7.6 678 7 -0.699872449 -1.296607682
Modern Family 7.6  The More You Ignore Me 7.6 617 7 -0.699872449 -1.296607682
Modern Family 7.7  Phil's Sexy, Sexy House 8.7 865 7 0.400127551 0.7412900127
Modern Family 7.8  Clean Out Your Junk Drawer 7.9 723 7 -0.399872449 -0.7408174019
Modern Family 7.9  White Christmas 8.4 728 7 0.100127551 0.1854997322
Modern Family 7.10  Playdates 7.8 625 7 10  -0.499872449 -0.9260808287
Modern Family 7.11  Spread Your Wings 8.1 666 7 11  -0.199872449 -0.3702905482
Modern Family 7.12  Clean for a Day 7.6 594 7 12  -0.699872449 -1.296607682
Modern Family 7.13  Thunk in the Trunk 7.7 613 7 13  -0.599872449 -1.111344256
Modern Family 7.14  The Storm 8.2 681 7 14  -0.09987244898 -0.1850271214
Modern Family 7.15  I Don't Know How She Does It 7.7 569 7 15  -0.599872449 -1.111344256
Modern Family 7.16  The Cover-Up 8.2 592 7 16  -0.09987244898 -0.1850271214
Modern Family 7.17  Express Yourself 7.8 568 7 17  -0.499872449 -0.9260808287
Modern Family 7.18  The Party 8.6 738 7 18  0.300127551 0.5560265858
Modern Family 7.19  Man Shouldn't Lie 7.8 566 7 19  -0.499872449 -0.9260808287
Modern Family 7.20  Promposal 7.6 531 7 20  -0.699872449 -1.296607682
Modern Family 7.21  Crazy Train 8.1 572 7 21  -0.199872449 -0.3702905482
Modern Family 7.22  Double Click 8.3 587 7 22  0.0001275510204 0.0002363053913
Modern Family 8.1  A Tale of Three Cities 8.2 570 8 -0.09987244898 -0.1850271214
Modern Family 8.2  A Stereotypical Day 7.7 475 8 -0.599872449 -1.111344256
Modern Family 8.3  Blindsided 7.6 448 8 -0.699872449 -1.296607682
Modern Family 8.4  Weathering Heights 7.8 434 8 -0.499872449 -0.9260808287
Modern Family 8.5  Halloween 4: The Revenge of Rod Skyhook 7.8 437 8 -0.499872449 -0.9260808287
Modern Family 8.6  Grab It 7.3 388 8 -0.999872449 -1.852397963
Modern Family 8.7  Thanksgiving Jamboree 7.4 417 8 -0.899872449 -1.667134536
Modern Family 8.8  The Alliance 8.4 529 8 0.100127551 0.1854997322
Modern Family 8.9  Snow Ball 7.2 374 8 -1.099872449 -2.03766139
Modern Family 8.10  Ringmaster Keifth 7.4 391 8 10  -0.899872449 -1.667134536
Modern Family 8.11  Sarge & Pea 7.4 361 8 11  -0.899872449 -1.667134536
Modern Family 8.12  Do You Believe in Magic 7.9 369 8 12  -0.399872449 -0.7408174019
Modern Family 8.13  Do It Yourself 7.4 312 8 13  -0.899872449 -1.667134536
Modern Family 8.14  Heavy Is the Head 7.2 284 8 14  -1.099872449 -2.03766139
Modern Family 8.15  Finding Fizbo 6.8 300 8 15  -1.499872449 -2.778715097
Modern Family 8.16  Basketball 7.2 276 8 16  -1.099872449 -2.03766139
Modern Family 8.17  Pig Moon Rising 7.7 277 8 17  -0.599872449 -1.111344256
Modern Family 8.18  Five Minutes 7.4 358 8 18  -0.899872449 -1.667134536
Modern Family 8.19  Frank's Wedding 7.5 211 8 19  -0.799872449 -1.481871109
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment