<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Hockey-Reference.com Blog</title>
	<atom:link href="http://www.hockey-reference.com/blog/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://www.hockey-reference.com/blog</link>
	<description>The Best Stats on Ice</description>
	<lastBuildDate>Mon, 17 Oct 2011 20:56:59 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Stathead Blog</title>
		<link>http://www.hockey-reference.com/blog/?p=125</link>
		<comments>http://www.hockey-reference.com/blog/?p=125#comments</comments>
		<pubDate>Mon, 25 Apr 2011 20:36:24 +0000</pubDate>
		<dc:creator>sforman</dc:creator>
				<category><![CDATA[HR News]]></category>
		<category><![CDATA[SR News]]></category>

		<guid isPermaLink="false">http://www.hockey-reference.com/blog/?p=125</guid>
		<description><![CDATA[Sports Reference's New Blog: Stathead I have to admit that I find it very hard to follow all of the great research that people people are producing every day on the web. It's hard enough just checking the two or three largest sites, but when you add in team blogs, other stathead blogs and everything [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Sports Reference's New Blog: <a href="http://www.sports-reference.com/stathead/">Stathead</a></strong></p>
<p>I have to admit that I find it very hard to follow all of the great research that people people are producing every day on the web.  It's hard enough just checking the two or three largest sites, but when you add in team blogs, other stathead blogs and everything else, it becomes impossible.  This doesn't even include trying to locate recent research in baseball, basketball, football and soccer.</p>
<p>So we've decided to do something about it.  Every weekday, the <a href="http://www.sports-reference.com/stathead/">Stathead blog</a> will summarize the best research-related studies, news, conferences, and resources for baseball, basketball, football, hockey and soccer.  </p>
<p>The blog will primarily be edited by Neil Paine and will typically feature 20-30 links to analytic content around the internet.  We've been working out the format over the last two weeks, and we think you'll soon appreciate our concise summaries for all of the articles we write about.</p>
<p>Feedback as always is welcome.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.hockey-reference.com/blog/?feed=rss2&#038;p=125</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>NHL Elo Player Rater</title>
		<link>http://www.hockey-reference.com/blog/?p=114</link>
		<comments>http://www.hockey-reference.com/blog/?p=114#comments</comments>
		<pubDate>Mon, 21 Mar 2011 02:00:24 +0000</pubDate>
		<dc:creator>Justin Kubatko</dc:creator>
				<category><![CDATA[HR News]]></category>

		<guid isPermaLink="false">http://www.hockey-reference.com/blog/?p=114</guid>
		<description><![CDATA[Today I would like to introduce a new feature that I think will be a lot of fun: the NHL Elo Player Rater. The Elo rating system is a method for calculating the relative skill levels of players in two-player games. The creator of the system, Arpad Elo, was a professor of physics at Marquette [...]]]></description>
			<content:encoded><![CDATA[<p>Today I would like to introduce a new feature that I think will be a lot of fun: the <a href="/friv/elo.cgi">NHL Elo Player Rater</a>.</p>
<p>The <a href="http://en.wikipedia.org/wiki/Elo_rating_system">Elo rating system</a> is a method for calculating the relative skill levels of players in two-player games.  The creator of the system, <a href="http://en.wikipedia.org/wiki/Arpad_Elo">Arpad Elo</a>, was a professor of physics at Marquette University who wanted an improved chess rating system.  Although the system has its roots in chess, today it is used in many other games.</p>
<p><span id="more-114"></span></p>
<p>We decided to take Elo's work and apply it to the ranking of hockey players.  Our player pool consists of all NHL players who meet <em>at least one</em> of the following career criteria:</p>
<ul>
<li>200 goals (skater)</li>
<li>300 assists (skater)</li>
<li>150 wins (goalie)</li>
<li>3 NHL All-Star games (skater or goalie)</li>
<li>3 NHL All-Star teams (skater or goalie)</li>
</ul>
<p>All players have an initial rating of 1500 points.  These ratings are then updated by randomly selecting pairs of players and having them "play" each other.</p>
<p>We start by computing the win probabilities for each player (let's call them A and B):</p>
<pre class="blockquote">
P(A wins) = 1 / (1 + 10^((RB - RA) / 400)) P(B wins) = 1 / (1 + 10^((RA - RB) / 400))

where RA = rating for A RB = rating for B
</pre>
<p>After the winner has been determined, the ratings of the two players are adjusted.  If A wins the match then the new ratings are:</p>
<pre class="blockquote">
RA_new = RA + K * P(B wins) RB_new = RB - K * P(B wins)
</pre>
<p>The "K" above stands for the "K-factor" and has a value of 10.</p>
<p>While if B wins the match then the new ratings are:</p>
<pre class="blockquote">
RA_new = RA - K * P(A wins)
RB_new = RB + K * P(A wins)
</pre>
<p>For example, suppose <a href="/players/g/gretzwa01.html">Wayne Gretzky</a> ("WG") has a rating of 2500 and <a href="/players/l/lemiema01.html">Mario Lemieux</a> ("ML") has a rating of 2450.  The win probabilities for each player are:</p>
<pre class="blockquote">
P(WG wins) = 1 / (1 + 10^((2450 - 2500) / 400)) = 0.571
P(ML wins) = 1 / (1 + 10^((2500 - 2450) / 400)) = 0.429
</pre>
<p>If WG wins then the new ratings are:</p>
<pre class="blockquote">
WG_new = 2500 + 10 * 0.429 = 2504
ML_new = 2450 - 10 * 0.429 = 2446
</pre>
<p>While if ML wins then the new ratings are:</p>
<pre class="blockquote">
WG_new = 2500 - 10 * 0.571 = 2494
ML_new = 2450 + 10 * 0.571 = 2456
</pre>
<p>Here are a few more notes about the way we have chosen to implement the Elo rating system:</p>
<ul>
<li class="margin_bottom">This is a community-based project with the goal of rating the best players in NHL history.  In each matchup, the user should choose the player who they believe was the better player. It is up to the user to determine how much weight to give to offense versus defense, peak value versus career value, regular season versus playoffs, etc.</li>
<li class="margin_bottom">Before opening this up to the public we simulated thousands of matchups in order to give the players more realistic starting ratings.  These starting ratings do not necessarily represent the opinions of the owners of this site.</li>
<li class="margin_bottom">Pairs are not chosen completely at random.  The first player is randomly selected to begin the process.  Following that, a second player with a rating within 250 points of the first player is randomly selected to complete the pair.  We did this in order to prevent bizarre choices (e.g., <a href="/players/w/williti01.html">Tiger Williams</a> over <a href="/players/h/howego01.html">Gordie Howe</a>) from distorting the ratings.</li>
</ul>
<p>As always, please <a href="/feedback">send us some feedback</a> if you have any comments or questions.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.hockey-reference.com/blog/?feed=rss2&#038;p=114</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Point Shares</title>
		<link>http://www.hockey-reference.com/blog/?p=101</link>
		<comments>http://www.hockey-reference.com/blog/?p=101#comments</comments>
		<pubDate>Fri, 11 Mar 2011 15:29:47 +0000</pubDate>
		<dc:creator>Neil Paine</dc:creator>
				<category><![CDATA[HR News]]></category>
		<category><![CDATA[SR News]]></category>

		<guid isPermaLink="false">http://www.hockey-reference.com/blog/?p=101</guid>
		<description><![CDATA[Created by H-R founder Justin Kubatko, the Point Shares method is an attempt to estimate the number of standings points each player contributed to his team's total. This page is designed to be a quick reference for all things point shares, containing information about the system and links to where the stat can be found [...]]]></description>
			<content:encoded><![CDATA[<p>Created by H-R founder Justin Kubatko, the <strong>Point Shares</strong> method is an attempt to estimate the number of standings points each player contributed to his team's total. This page is designed to be a quick reference for all things point shares, containing information about the system and links to where the stat can be found on our site.</p>
<p><strong>A Brief Explanation:</strong></p>
<p>Individual players (goalies or skaters) can contribute to team success in either of two ways: by creating marginal goals on offense, or by preventing them on defense. Since there is a relationship between marginal goals and points in the standings, we calculate the marginal goals each individual contributes on offense/defense, and use the league's ratio of marginal goals per point to determine how many points a player's contribution was worth. The sum of a team's individual player point shares will roughly equal the team's point total in the standings.</p>
<p><strong>The Full Explanation:</strong></p>
<p><a href="http://www.hockey-reference.com/about/point_shares.html">Calculating Point Shares | Hockey-Reference.com</a></p>
<p><strong>Hey! Aren't there similar systems to this out there?</strong></p>
<p>Yes, this is hardly the first all-in-one hockey stat to be featured on the internet. In fact, while it was inspired primarily by baseball's Bill James, Point Shares also drew on research done by hockey analysts <a href="http://www.puckprospectus.com/news/?author=9">Tom Awad</a>, <a href="http://www.puckprospectus.com/news/?author=8">Iain Fyffe</a>, and <a href="http://hockeyanalytics.com/">Alan Ryder</a>, among others. But since there was no easy place to find those metrics for every season in NHL history, it was only logical for us to develop our own player value stat that would be easily accessible for hockey fans.</p>
<p><strong>Where to Find Point Shares on the Site:</strong></p>
<ul>
<li><strong>Leaderboards</strong>: <a href="http://www.hockey-reference.com/leaders/ps_season.html">Single-Season</a>, <a href="http://www.hockey-reference.com/leaders/ps_career.html">Career</a>, <a href="http://www.hockey-reference.com/leaders/ps_active.html">Active</a>, <a href="http://www.hockey-reference.com/leaders/ps_yearly.html">Year-by-Year</a>, <a href="http://www.hockey-reference.com/leaders/ps_progress.html">Progressive</a></li>
<li><strong>Player Pages</strong>: <a href="http://www.hockey-reference.com/players/o/orrbo01.html#div_stats_misc_nhl">Stat tables</a>, leaderboard appearances</li>
<li><strong>Team Pages:</strong> <a href="http://www.hockey-reference.com/teams/DET/1996.html#div_skaters">Skater</a> and <a href="http://www.hockey-reference.com/teams/MTL/1977.html#div_goalies">goalie</a> tables</li>
<li><strong>Franchise Pages</strong>: <a href="http://www.hockey-reference.com/teams/COL/leaders_season.html">Season</a> and <a href="http://www.hockey-reference.com/teams/DAL/leaders_career.html">career</a> leaders</li>
<li><strong>H-R Play Index</strong>: <a href="http://www.hockey-reference.com/play-index/psl_finder.cgi">Player Season Finder</a> (<a href="http://hkref.com/tiny/mMiUl">example</a>)</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.hockey-reference.com/blog/?feed=rss2&#038;p=101</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>S-R News: Super Bowl Squares App Now Available!</title>
		<link>http://www.hockey-reference.com/blog/?p=97</link>
		<comments>http://www.hockey-reference.com/blog/?p=97#comments</comments>
		<pubDate>Wed, 02 Feb 2011 15:22:12 +0000</pubDate>
		<dc:creator>Neil Paine</dc:creator>
				<category><![CDATA[SR News]]></category>

		<guid isPermaLink="false">http://www.hockey-reference.com/blog/?p=97</guid>
		<description><![CDATA[Just in time for the big game, our Super Bowl Squares mobile app is now available at the iTunes store and the Android Marketplace. If you're at a Super Bowl party this weekend and there's a game of squares set up, this app will tell you which squares have the best chance of winning based [...]]]></description>
			<content:encoded><![CDATA[<p>Just in time for the big game, our <strong>Super Bowl Squares mobile app</strong> is now available at the <a href="http://itunes.apple.com/us/app/super-bowl-squares/">iTunes store</a> and the <a href="market://details?id=com.phonegap.SBS">Android Marketplace</a>.</p>
<p>If you're at a Super Bowl party this weekend and there's a game of squares set up, this app will tell you which squares have the best chance of winning based on game data from 1994-2010. Also, if you're new to the game, there's a page devoted to basic rules that will help you navigate your first SB squares experience. The app costs $0.99, but will pay for itself many times over if you win the pool.</p>
<p>For more information about its features, as well as links to posts about Super Bowl squares theory, <a href="http://www.pro-football-reference.com/blog/?page_id=8454">click here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.hockey-reference.com/blog/?feed=rss2&#038;p=97</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Support Hockey-Reference.com, Sponsor a Page</title>
		<link>http://www.hockey-reference.com/blog/?p=94</link>
		<comments>http://www.hockey-reference.com/blog/?p=94#comments</comments>
		<pubDate>Thu, 13 Jan 2011 12:02:50 +0000</pubDate>
		<dc:creator>Neil Paine</dc:creator>
				<category><![CDATA[HR News]]></category>

		<guid isPermaLink="false">http://www.hockey-reference.com/blog/?p=94</guid>
		<description><![CDATA[Sponsoring a page is fun, fast, and easy way to support what we're doing here at Hockey-Reference. With a sponsorship, you can: Show your support for your favorite player or team. Drum up traffic for your own site &#38; draw in fans with a common interest. Get some well-deserved recognition for your support of BBR. [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.hockey-reference.com/about/sponsorship.shtml">Sponsoring a page</a> is fun, fast, and easy way to support what we're doing here at Hockey-Reference. With a sponsorship, you can:</p>
<ul>
<li>Show your support for your favorite player or team.</li>
<li>Drum up traffic for your own site &amp; draw in fans with a common interest.</li>
<li>Get some well-deserved recognition for your support of BBR.</li>
<li>Make your voice heard by the tens of thousands of people who visit Hockey-Reference every day.</li>
</ul>
<p>Here's all you have to do to get involved:</p>
<ol>
<li><a href="http://www.hockey-reference.com/my/">Create a membership account</a>.</li>
<li>Find the page(s) you'd like to support, and click "sponsor" (<a href="http://www.hockey-reference.com/my/available.shtml">available pages</a>).</li>
<li>If the page you want is already sponsored, click <a href="http://www.hockey-reference.com/my/alertme.cgi?ID=hr_crosbsi01">"Alert Me!"</a> to be informed when the current sponsorship expires.</li>
<li>Follow the instructions to create your message and make your payment.</li>
<li>Your message and links will be visible on the page after we approve them (usually in less than 24 hours).</li>
</ol>
<p>And who knows, if you're clever enough, your message might end up on <a href="http://www.slate.com/id/2093522/pagenum/all/">lists</a> like <a href="http://baseballjunkdrawer.blogspot.com/2009/11/best-of-baseball-references-sponsorship.html">these</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.hockey-reference.com/blog/?feed=rss2&#038;p=94</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Send us Your Suggestions!</title>
		<link>http://www.hockey-reference.com/blog/?p=90</link>
		<comments>http://www.hockey-reference.com/blog/?p=90#comments</comments>
		<pubDate>Wed, 22 Dec 2010 17:00:12 +0000</pubDate>
		<dc:creator>Neil Paine</dc:creator>
				<category><![CDATA[HR News]]></category>

		<guid isPermaLink="false">http://www.hockey-reference.com/blog/?p=90</guid>
		<description><![CDATA[Just a friendly reminder that we welcome site feedback/suggestions via our feedback form: User Feedback - Hockey-Reference.com You can also email us directly at this address. We'll try to respond to everything within a week (although it may take longer this time of year, due to the holidays).]]></description>
			<content:encoded><![CDATA[<p>Just a friendly reminder that we welcome site feedback/suggestions via our feedback form:</p>
<p><strong><a href="http://www.hockey-reference.com/feedback/">User Feedback - Hockey-Reference.com</a></strong></p>
<p>You can also <a href="mailto:bugs@sports-reference.com">email us directly at this address</a>. We'll try to respond to everything within a week (although it may take longer this time of year, due to the holidays).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.hockey-reference.com/blog/?feed=rss2&#038;p=90</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Daily Updates on SR&#8217;s College Basketball Site</title>
		<link>http://www.hockey-reference.com/blog/?p=85</link>
		<comments>http://www.hockey-reference.com/blog/?p=85#comments</comments>
		<pubDate>Wed, 17 Nov 2010 14:21:52 +0000</pubDate>
		<dc:creator>Justin Kubatko</dc:creator>
				<category><![CDATA[SR News]]></category>

		<guid isPermaLink="false">http://www.hockey-reference.com/blog/?p=85</guid>
		<description><![CDATA[Starting today, SR's college basketball site will be updated on a daily basis with 2010-11 statistics and results. Player game logs and splits are not ready yet, but they should be up by December 1 at the latest. Keep in mind that there are almost 350 Division I schools, so early on there may be [...]]]></description>
			<content:encoded><![CDATA[<p>Starting today, SR's <a href="http://www.sports-reference.com/cbb/">college basketball site</a> will be updated on a daily basis with <a href="http://www.sports-reference.com/cbb/seasons/2011.html">2010-11 statistics and results</a>.  Player game logs and splits are not ready yet, but they should be up by December 1 at the latest.  Keep in mind that there are almost 350 Division I schools, so early on there may be a few hiccups.  Please help us out by letting us know if anything looks amiss, either by posting a comment on the <a href="http://www.sports-reference.com/cbb/blog/?p=186">CBB blog</a> or by filling out the <a href="http://www.sports-reference.com/cbb/feedback/">CBB feedback form</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.hockey-reference.com/blog/?feed=rss2&#038;p=85</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Server Downtime – Wednesday Morning</title>
		<link>http://www.hockey-reference.com/blog/?p=83</link>
		<comments>http://www.hockey-reference.com/blog/?p=83#comments</comments>
		<pubDate>Tue, 28 Sep 2010 19:01:14 +0000</pubDate>
		<dc:creator>Neil Paine</dc:creator>
				<category><![CDATA[HR News]]></category>
		<category><![CDATA[SR News]]></category>

		<guid isPermaLink="false">http://www.hockey-reference.com/blog/?p=83</guid>
		<description><![CDATA[Just a quick note to let everyone know there will be a brief site downtime at 4AM EST tomorrow morning. As always, send us an e-mail if you have any questions or comments, and hopefully everything will go smoothly with minimal inconvenience to all.]]></description>
			<content:encoded><![CDATA[<p>Just a quick note to let everyone know there will be a brief site downtime at 4AM EST tomorrow morning. As always, <a href="mailto:bugs@sports-reference.com">send us an e-mail</a> if you have any questions or comments, and hopefully everything will go smoothly with minimal inconvenience to all.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.hockey-reference.com/blog/?feed=rss2&#038;p=83</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Support Hockey-Reference.com, Sponsor a Page</title>
		<link>http://www.hockey-reference.com/blog/?p=79</link>
		<comments>http://www.hockey-reference.com/blog/?p=79#comments</comments>
		<pubDate>Mon, 27 Sep 2010 14:17:43 +0000</pubDate>
		<dc:creator>Neil Paine</dc:creator>
				<category><![CDATA[HR News]]></category>

		<guid isPermaLink="false">http://www.hockey-reference.com/blog/?p=79</guid>
		<description><![CDATA[Sponsoring a page is fun, fast, and easy way to support what we're doing here at Hockey-Reference. With a sponsorship, you can: Show your support for your favorite player or team. Drum up traffic for your own site &#38; draw in fans with a common interest. Get some well-deserved recognition for your support of BBR. [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.hockey-reference.com/about/sponsorship.shtml">Sponsoring a page</a> is fun, fast, and easy way to support what we're doing here at Hockey-Reference. With a sponsorship, you can:</p>
<ul>
<li>Show your support for your favorite player or team.</li>
<li>Drum up traffic for your own site &amp; draw in fans with a common interest.</li>
<li>Get some well-deserved recognition for your support of BBR.</li>
<li>Make your voice heard by the tens of thousands of people who visit Hockey-Reference every day.</li>
</ul>
<p>Here's all you have to do to get involved:</p>
<ol>
<li><a href="http://www.hockey-reference.com/my/">Create a membership account</a>.</li>
<li>Find the page(s) you'd like to support, and click "sponsor" (<a href="http://www.hockey-reference.com/my/available.shtml">available pages</a>).</li>
<li>If the page you want is already sponsored, click <a href="http://www.hockey-reference.com/my/alertme.cgi?ID=hr_crosbsi01">"Alert Me!"</a> to be informed when the current sponsorship expires.</li>
<li>Follow the instructions to create your message and make your payment.</li>
<li>Your message and links will be visible on the page after we approve them (usually in less than 24 hours).</li>
</ol>
<p>And who knows, if you're clever enough, your message might end up on <a href="http://www.slate.com/id/2093522/pagenum/all/">lists</a> like <a href="http://baseballjunkdrawer.blogspot.com/2009/11/best-of-baseball-references-sponsorship.html">these</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.hockey-reference.com/blog/?feed=rss2&#038;p=79</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Icings: Check Out Puck Prospectus&#8217; Downloadable GVT Spreadsheet; Buy Their Book</title>
		<link>http://www.hockey-reference.com/blog/?p=80</link>
		<comments>http://www.hockey-reference.com/blog/?p=80#comments</comments>
		<pubDate>Mon, 27 Sep 2010 14:17:29 +0000</pubDate>
		<dc:creator>Neil Paine</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.hockey-reference.com/blog/?p=80</guid>
		<description><![CDATA[Here at Hockey-Reference, we're big fans of Puck Prospectus (soon to be Hockey Prospectus). I've corresponded with Tom Awad for years, and I think his Goals Versus Threshold (GVT) stat is clearly in the same discussion as baseball's WAR in terms of being the killer all-in-one stat for its respective sport. That's why I'm thrilled [...]]]></description>
			<content:encoded><![CDATA[<p>Here at Hockey-Reference, we're big fans of <strong>Puck Prospectus</strong> (soon to be <strong>Hockey Prospectus</strong>). I've corresponded with <strong>Tom Awad</strong> for years, and I think his Goals Versus Threshold (GVT) stat is clearly in the same discussion as <a href="http://www.baseball-reference.com/blog/archives/6063">baseball's WAR</a> in terms of being the killer all-in-one stat for its respective sport. That's why I'm thrilled that Tom <a href="http://docs.google.com/leaf?id=0B8D4onnbcAAUNDJjNmRkNjMtNzEyYi00YmY2LTg4YjUtZGZiOTNhNmUwMzcz&amp;hl=en">has uploaded his all-time GVT database</a> (updated thru the 1st round of last season's playoffs) for public consumption. Check it out!</p>
<p>Also, once you do that, you probably will find yourself wanting to order the new Puck Prospectus book, available in <a href="http://www.amazon.com/exec/obidos/ASIN/1453817840/baseballprospect/ref=nosim/">hard copy</a> or <a href="https://www.baseballprospectus.com/store/productdetail.php?t=product&amp;p=6">.PDF format</a>. For my money, there's no better way to prepare for the upcoming season.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.hockey-reference.com/blog/?feed=rss2&#038;p=80</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

