I was recently sent an email containing a link to NYMag/Vulture’s rankings of every Seinfeld episode, which they put out in response to Hulu releasing the entire series. What follows is my response to the group email.
All: Using my new fangled programming skills I was able to parse the text of the article and crunch a couple of numbers. I think there are some legitimate grips with some individual episode rankings. But with the exception of what Shosh might deem a too highly ranked Season 8, I think in aggregate the total season rankings ring somewhat true to me.
What I’ve done is take each ranking and assign it it’s inverse point value (total # of episodes minus ranking). So for example, the #2 ranked episode gets 168 points and the 167th ranked episode gets 2 points. I did both point totals and averages just to see if there would be any discrepancy due to the early seasons having fewer episodes. There was no discrepancy.
I also was able to infer, based on the average score, what the “average” episode’s rank would’ve been. So for example, the average season 5 episode would’ve ranked about 52nd.
According to this article, the overall best season is Season 5, and by a long shot. The average season 5 episode ranks 21 places hire then the next best season, #6. As expected, season 1, 2, and 3 are ranked lowest (and in that order) both in total score and average score.
1 2 3 4 5 6 7 8 9 10 11 |
|
Tech notes, if you’re interested
Used jQuery to scrape the website
$('p:contains("(Season")').each(function(i, item){console.log(item.textContent.split(").")[0])})
Defaulted back to Ruby for the rest, putting the list into an array STRING
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 |
|