<?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>刘思喆 @ 贝吉塔行星 &#187; yaoming</title>
	<atom:link href="http://www.bjt.name/tag/yaoming/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.bjt.name</link>
	<description>R 语言，数据挖掘，数据可视化</description>
	<lastBuildDate>Wed, 30 Nov 2011 15:43:30 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>NBA联盟50位顶级球员的指标表现</title>
		<link>http://www.bjt.name/2010/01/nba-top-50-scorers-performance/</link>
		<comments>http://www.bjt.name/2010/01/nba-top-50-scorers-performance/#comments</comments>
		<pubDate>Thu, 21 Jan 2010 16:32:58 +0000</pubDate>
		<dc:creator>刘思喆</dc:creator>
				<category><![CDATA[图型展示]]></category>
		<category><![CDATA[篮球]]></category>
		<category><![CDATA[flowingdata]]></category>
		<category><![CDATA[heatmap]]></category>
		<category><![CDATA[nba]]></category>
		<category><![CDATA[yaoming]]></category>

		<guid isPermaLink="false">http://www.bjt.name/?p=10539</guid>
		<description><![CDATA[有点标题党的嫌疑，实际是介绍如何使用 R 绘制 heatmap 的文章。 今天无意间在Flowingdata看到一篇关于如何使用 R 来做 heatmap 的文章（请移步到这里）。虽然 heatmap 只是 R 中一个很普通的图形函数，但这个例子使用了2008-2009赛季 NBA 50个顶级球员数据做了一个极佳的演示，效果非常不错。对 R 大致了解的童鞋可以直接在 R console 上敲 ？heatmap 直接查看帮助即可。 没有接触过 R 的童鞋继续围观，下面会仔细介绍如何使用 R 实现 NBA 50位顶级球员指标表现热图： 关于 heatmap，中文一般翻译为“热图”，其统计意义wiki上解释的很清楚： A heat map is a graphical representation of data where the values taken by a variable in a two-dimensional map are represented as <a href='http://www.bjt.name/2010/01/nba-top-50-scorers-performance/'>[...]</a>]]></description>
			<content:encoded><![CDATA[<p>有点标题党的嫌疑，实际是介绍如何使用 R 绘制 heatmap 的文章。</p>
<p>今天无意间在<a href="http://flowingdata.com/about/" target="_blank">Flowingdata</a>看到一篇关于如何使用 R 来做 heatmap 的文章（请移步到<a href="http://flowingdata.com/2010/01/21/how-to-make-a-heatmap-a-quick-and-easy-solution/" target="_blank">这里</a>）。虽然 heatmap 只是 R 中一个很普通的图形函数，但这个例子使用了2008-2009赛季 NBA 50个顶级球员数据做了一个极佳的演示，效果非常不错。对 R 大致了解的童鞋可以直接在 R console 上敲</p>
<p><strong>？heatmap</strong></p>
<p>直接查看帮助即可。</p>
<p>没有接触过 R 的童鞋继续围观，下面会仔细介绍如何使用 R 实现 NBA 50位顶级球员指标表现热图：</p>
<p>关于 heatmap，中文一般翻译为“热图”，其统计意义<a href="http://en.wikipedia.org/wiki/Heatmap" target="_blank">wiki</a>上解释的很清楚：</p>
<blockquote><p>A <strong>heat map</strong> is a graphical representation of data where the values taken by a <a title="Variable (mathematics)" href="http://en.wikipedia.org/wiki/Variable_%28mathematics%29">variable</a> in a two-dimensional map are represented as colors.Heat maps originated in 2D displays of the values in a data matrix. Larger values were represented by small dark gray or black squares (pixels) and smaller values by lighter squares.</p></blockquote>
<p>下面这个图即是<a href="http://flowingdata.com/about/" target="_blank">Flowingdata</a>用一些 <a href="http://www.r-project.org" target="_blank">R</a> 函数对2008-2009 赛季NBA 50名顶级球员指标做的一个热图（点击参看<a href="http://www.bjt.name/wp-content/uploads/2010/01/heatmap1.png" target="_blank">大图</a>）：</p>
<p style="text-align: center;"><a href="http://www.bjt.name/wp-content/uploads/2010/01/heatmap1.png"></a></p>
<p style="text-align: center;"><a href="http://www.bjt.name/wp-content/uploads/2010/01/heatmap1.png"><img class="aligncenter size-medium wp-image-10542" title="heatmap1" src="http://www.bjt.name/wp-content/uploads/2010/01/heatmap1-300x289.png" alt="" width="300" height="289" /></a></p>
<p><strong>先解释一下数据：</strong></p>
<p>这里共列举了50位球员，估计爱好篮球的童鞋对上图右边的每个名字都会耳熟能详。这些球员每个人会有19个指标，包括打了几场球（G)、上场几分钟（MIN)、得分（PTS)……这样就行成了一个50行×19列的矩阵。但问题是，数据有些多，需要使用一种比较好的办法来展示，So it comes, heatmap!</p>
<p><strong>简单的说明：</strong></p>
<p>比如从上面的热图上观察得分前3名（Wade、James、Bryant）PTS、FGM、FGA比较高，但Bryant的FTM、FTA和前两者就差一些；Wade在这三人中STL是佼佼者；而James的DRB和TRB又比其他两人好一些……</p>
<p>姚明的3PP（3 Points Percentage）这条数据很有意思，非常出色！仔细查了一下这个数值，居然是100%。仔细回想一下，似乎那个赛季姚明好像投过一个3分，并且中了，然后再也没有3p。这样本可真够小的！</p>
<p><strong>最后是如何做这个热图（做了些许修改）：</strong></p>
<p><span style="color: #993366;">Step 0. Download R</span></p>
<p>R 官网：<a href="http://www.r-project.org">http://www.r-project.org</a>，它是免费的。官网上面提供了Windows,Mac,Linux版本（或源代码）的R程序。</p>
<p><span style="color: #993366;">Step 1. Load the data</span></p>
<p>R 可以支持网络路径，使用读取csv文件的函数read.csv。</p>
<p>读取数据就这么简单：</p>
<pre lang="rsplus">read.csv("http://datasets.flowingdata.com/ppg2008.csv", sep=",")</pre>
<p><span style="color: #993366;">Step 2. Sort data</span></p>
<p>按照球员得分，将球员从小到大排序：</p>
<pre lang="rsplus">nba <- nba[order(nba$PTS),]</pre>
<p><code>当然也可以选择MIN,BLK,STL之类指标</code></p>
<p><span style="color: #993366;">Step 3. Prepare data</span></p>
<p>把行号换成行名（球员名称）：</p>
<pre lang="rsplus">row.names(nba) <- nba$Name</pre>
<p><code>去掉第一列行号：</code></p>
<pre lang="rsplus">nba <- nba[,2:20] # or nba <- nba[,-1]</pre>
<p><span style="color: #993366;">Step 4. Prepare data, again</span></p>
<p>把 data frame 转化为我们需要的矩阵格式：</p>
<pre lang="rsplus">nba_matrix <- data.matrix(nba)</pre>
<p><span style="color: #993366;">Step 5. Make a heatmap</span></p>
<p># R 的默认还会在图的左边和上边绘制 dendrogram，使用Rowv=NA, Colv=NA去掉</p>
<pre lang="rsplus">heatmap(nba_matrix, Rowv=NA, Colv=NA, col=cm.colors(256), revC=FALSE, scale='column')</pre>
<p><code>这样就得到了上面的那张热图。</code></p>
<p><span style="color: #993366;">Step 6. Color selection</span></p>
<p>或者想把热图中的颜色换一下：</p>
<pre lang="rsplus">heatmap(nba_matrix, Rowv=NA, Colv=NA, col=heat.colors(256), revC=FALSE, scale="column", margins=c(5,10))</pre>
<p><code><strong>延伸阅读：</strong></code></p>
<p><code>来自于kerimcan和<a href="http://periscopic.com/">krees</a>这些人的讨论：</code></p>
<p><code><strong><a rel="nofollow" href="http://sekhon.polisci.berkeley.edu/stats/html/heatmap.html">http://sekhon.polisci.berkeley.edu/stats/html/heatmap.html</a><br />
<a rel="nofollow" href="http://enotacoes.wordpress.com/2007/11/16/easy-guide-to-drawing-heat-maps-to-pdf-with-r-with-color-key/">http://enotacoes.wordpress.com/2007/11/16/easy-guide-to-drawing-heat-maps-to-pdf-with-r-with-color-key/</a></strong></code></p>
<p><strong>补充：</strong></p>
<p>早上起来发现 David Smith 同样更新了<a href="http://blog.revolution-computing.com/2010/01/how-to-make-a-heat-map-in-r.html" target="_blank">博客</a>。唉，这厮嗅觉也忒灵敏！哈哈<br />
<h3 class='related_post_title'>相关文章：</h3>
<ul class='related_post'>
<li><a href='http://www.bjt.name/2009/03/data-2008-2009-rockets/' title='从数据看2008-2009赛季的火箭队'>从数据看2008-2009赛季的火箭队</a></li>
<li><a href='http://www.bjt.name/2010/01/rockets-heat-assists-network/' title='火箭对热火比赛（20100116）中，火箭球员的助攻网络关系'>火箭对热火比赛（20100116）中，火箭球员的助攻网络关系</a></li>
<li><a href='http://www.bjt.name/2009/02/article-zhang/' title='信陵*张公子'>信陵*张公子</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.bjt.name/2010/01/nba-top-50-scorers-performance/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>从数据看2008-2009赛季的火箭队</title>
		<link>http://www.bjt.name/2009/03/data-2008-2009-rockets/</link>
		<comments>http://www.bjt.name/2009/03/data-2008-2009-rockets/#comments</comments>
		<pubDate>Mon, 29 Nov 1999 16:00:00 +0000</pubDate>
		<dc:creator>刘思喆</dc:creator>
				<category><![CDATA[兴趣]]></category>
		<category><![CDATA[数据挖掘]]></category>
		<category><![CDATA[CART]]></category>
		<category><![CDATA[J48]]></category>
		<category><![CDATA[rockets]]></category>
		<category><![CDATA[yaoming]]></category>
		<category><![CDATA[篮球]]></category>

		<guid isPermaLink="false">http://www.bjt.name/archives/9989</guid>
		<description><![CDATA[有意思的一个赛季，由于赛季之初 Artest 的到来，球迷们又开始 yy 松鼠姚的总冠军之路。不过可惜，随着 T. McGrady 的报废，基本上这赛季总决赛大门又一次提前关闭。紧接着球队的主力 PG（R. Alston）被换走，今天又签下James White，我就纳闷了，为啥和火箭有关系的人我都关注过呢。 松鼠姚至今天（2009.03.05）共 28 次两双，占出场次数的 48%，场均数据并不惊艳：   min FG FGA X3P X3PA FT FTA OREB DREB REB AST STL BLK TO PF EF PTS   32.9 7.2 13.1 0.0 0.0 5.4 6.2 2.7 6.9 9.6 1.6 0.4 1.8 3.2 3.2 11.1 19.8 场均得分 PTS 为 19.8 <a href='http://www.bjt.name/2009/03/data-2008-2009-rockets/'>[...]</a>]]></description>
			<content:encoded><![CDATA[<p>有意思的一个赛季，由于赛季之初 <a href="http://sports.espn.go.com/nba/players/profile?playerId=0025">Artest</a> 的到来，球迷们又开始 yy 松鼠姚的总冠军之路。不过可惜，随着 <a href="http://sports.espn.go.com/nba/players/profile?playerId=0532">T. McGrady</a> 的报废，基本上这赛季总决赛大门又一次提前关闭。紧接着球队的主力 PG（<a href="http://sports.espn.go.com/nba/players/profile?playerId=0011">R. Alston</a>）被换走，今天又签下James White，我就纳闷了，为啥和火箭有关系的人我都关注过呢。 松鼠姚至今天（2009.03.05）共 28 次两双，占出场次数的 48%，场均数据并不惊艳：</p>
<table border="1">
<tbody>
<tr>
<th> </th>
<th>min</th>
<th>FG</th>
<th>FGA</th>
<th>X3P</th>
<th>X3PA</th>
<th>FT</th>
<th>FTA</th>
<th>OREB</th>
<th>DREB</th>
<th>REB</th>
<th>AST</th>
<th>STL</th>
<th>BLK</th>
<th>TO</th>
<th>PF</th>
<th>EF</th>
<th>PTS</th>
</tr>
<tr>
<td align="right"> </td>
<td align="right">32.9</td>
<td align="right">7.2</td>
<td align="right">13.1</td>
<td align="right">0.0</td>
<td align="right">0.0</td>
<td align="right">5.4</td>
<td align="right">6.2</td>
<td align="right">2.7</td>
<td align="right">6.9</td>
<td align="right">9.6</td>
<td align="right">1.6</td>
<td align="right">0.4</td>
<td align="right">1.8</td>
<td align="right">3.2</td>
<td align="right">3.2</td>
<td align="right">11.1</td>
<td align="right">19.8</td>
</tr>
</tbody>
</table>
<p>场均得分 PTS 为 19.8 分，场均篮板 REB 为 9.6 个。 离场均两双还有一点点距离，给个及格分好了。</p>
<p>顺便做了下对火箭球员分析，共使用了 273 个火箭球员的相关变量，得到的结论解释了我几条疑问：</p>
<p><a rel="WLPP" href="https://ywp7qa.bay.livefilestore.com/y1mp0-2W7Ljii4lTc5QhL4O36CSJzqHaFxFtRGs4zDtxlaYwbejwH8Uk4K09_-JMri2T9_brsewFKkf7kge8OVrv5KvwsYJB2V6RVgtpvnb3WlqGhSLpcP-fgBibWgurfrUYHHGUEGVWJE/rockets_player[16].png"><img style="border-width: 0px; display: block; float: none; margin-left: auto; margin-right: auto;" title="rockets_player" src="https://ywp7qa.bay.livefilestore.com/y1mOayuqUgGROn1eEwN--slSSMlxXK7ZY4bPVK5aEXTt8--a26MI3CvtJyijgVyDAyTwqqs7EH2JJRXT06_A-PtDj2o38koH0kotFR9XC1Xzxi1vUTvapkexK3r5raxFyNurr7sDJ7yq-c/rockets_player_thumb[12].png" border="0" alt="rockets_player" width="475" height="297" /></a> 指标我就不多说了，爱打篮球的筒子一般都知道 FG、AST、REB 这类乱七八糟的指标，要说明的是 1722 、532 这些数字是 ESPN 给 NBA 球员定义的编号，1722 就是 <a href="http://sports.espn.go.com/nba/players/profile?playerId=1722">Y. Ming</a> 了，其他的 532 为 <a href="http://sports.espn.go.com/nba/players/profile?playerId=0532">T. McGrady</a>，11 为 <a href="http://sports.espn.go.com/nba/players/profile?playerId=0011">R. Alston</a>，25 为 <a href="http://sports.espn.go.com/nba/players/profile?playerId=0025">Artest</a> ，1781 为 <a href="http://sunbjt.spaces.live.com/nba/players/profile?playerId=1781"><span style="color: #000000;">L. Scola</span></a> ，3192 为 <a href="http://sunbjt.spaces.live.com/nba/players/profile?playerId=3192"><span style="color: #000000;">A. Brooks</span></a>；而 1、0 则为方便记录胜负而设置的。</p>
<p>从图上不难找到火箭的关键球员，他们左右了每场比赛的胜负。对火箭成绩走向最关键的球员是 <a href="http://sports.espn.go.com/nba/players/profile?playerId=1722">Y. Ming</a> ，因为他在最根部，是决定下一个球员因素的前提（本赛季 <a href="http://sports.espn.go.com/nba/players/profile?playerId=0532">T. McGrady</a> 由于伤病困扰数据大幅下滑，不过从侧面说明 Y.Ming 已然是球队老大）。其他球员因素不必过多解释，数据显示结果唯一让我不满便是 <a href="http://sports.espn.go.com/nba/players/profile?playerId=0976">S. Battier</a> 的重要性，本来这次数据探索我就是朝着他去的，结果还是没有合适指标可以显示他的作用。再找时间做好了。</p>
<p>关于为什么 <a href="http://sports.espn.go.com/nba/players/profile?playerId=0011">R. Alston</a> 为什么会被换走，这里同样可以给大家一个清晰的解释：当 Yao 的 Field Goal 低于 5.5 时，同时 <a href="http://sports.espn.go.com/nba/players/profile?playerId=0532">T. McGrady</a> 的 AST 小于4.5 次时，<a href="http://sports.espn.go.com/nba/players/profile?playerId=0011">R. Alston</a> 的上场时间成为关键因素，不过抱歉的说，当他上场时间大于35.5 min 时，火箭会输！！估计莫雷应该用的是同样方法看到这一怪现象吧。那 <a href="http://sports.espn.go.com/nba/players/profile?playerId=0011">R. Alston</a> 在交易日截止之前被换走也就不难理解了。</p>
<p>阿德尔曼的普林斯顿体系是不是适合火箭。说实话，我也不熟。至今，我对经典的三角进攻都不知道如何开始。不过，火箭的 Team 数据（不包括20090305对爵士）可以说明一切。Exciting 的时刻来了：</p>
<p><a rel="WLPP" href="https://ywp7qa.bay.livefilestore.com/y1mixJOZlZ-YOqXBBKXZPPgjoepLAx19Q-F15l39Vw3-XpHbwFkl-ofZX69pToOGwyZ0UAyDn-GaE3tSmlPhjqT-aARO46jadKkX6yRPdrEAxVJCklwwm11J1u0hIlYvhat3_ivf-hGbi0/rokets33.png"><img style="border-width: 0px; display: block; float: none; margin-left: auto; margin-right: auto;" title="rokets" src="https://ywp7qa.bay.livefilestore.com/y1mOeASRgdxEZ-ZehGUwX5MFsrZ8igF1Lhxtn_cjuCmuWuKCUMiV1CqGZd397v9Y_a2mG-l_3Hq3Qej-EWWYXcbdVa60kNNROSW45z4A0Gh0v2kGKBlVrd7xZ_6ppKT_FH9b22idl7868I/rokets_thumb26.png" border="0" alt="rokets" width="541" height="356" /></a></p>
<ol>
<li>如果火箭的得分（PTS）能够上到 102 分以上，那么这场比赛是拿定了。这种比赛个人认为应该是队员对教练战术执行彻底，进攻如行云流水，人挡杀人，见佛杀佛。这赛季以高于 102 的比分战胜的球队甚至包括马刺(<a href="http://sports.espn.go.com/nba/recap?gameId=281129010">103-84</a>)、爵士(<a href="http://sports.espn.go.com/nba/recap?gameId=281227010">120-115) </a>等西部强队。</li>
<li>如果得分小于等于 102 分时，决定因素就转到防守篮板（DREB）上了。一般防守篮板小于31个时，输得概率比较高；不过即使防守篮板不济，当抢断大于10次时还是有希望得回胜利的。</li>
<li>得分小于 102，篮板大于 31 个，决定因素就变成了三分球试投（3PA）。只要投进三分球试投能够低于 19 个时，球队仍然可以以高概率赢得比赛（92%）。大家该冒出疑问了，为啥三分球试投数小了才能赢球，不是多了更好么。诚然从数字上看确实如此，但火箭三分多了，一般都是后卫在“浪投”，既不能对内线造成杀伤也不能迅速解决战斗。这也就是火箭从赛季之初一直在囤积后场的原因。只可惜，至今天，火箭的后场还是那么烂。</li>
</ol>
<p>看看今天对爵士的比赛：火箭得分 94（没进攻），防守篮板 23（没防守） ，抢断为 8（没激情），你把这些数据按上图走一遍，是不是告诉你会返回 0。不输才怪！<br />
<h3 class='related_post_title'>相关文章：</h3>
<ul class='related_post'>
<li><a href='http://www.bjt.name/2010/01/nba-top-50-scorers-performance/' title='NBA联盟50位顶级球员的指标表现'>NBA联盟50位顶级球员的指标表现</a></li>
<li><a href='http://www.bjt.name/2010/01/rockets-heat-assists-network/' title='火箭对热火比赛（20100116）中，火箭球员的助攻网络关系'>火箭对热火比赛（20100116）中，火箭球员的助攻网络关系</a></li>
<li><a href='http://www.bjt.name/2009/04/hou-vs-lal-fieldgoal%ef%bc%89/' title='投篮点和命中率（2009-04-04 HOU vs. LAL）'>投篮点和命中率（2009-04-04 HOU vs. LAL）</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.bjt.name/2009/03/data-2008-2009-rockets/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>信陵*张公子</title>
		<link>http://www.bjt.name/2009/02/article-zhang/</link>
		<comments>http://www.bjt.name/2009/02/article-zhang/#comments</comments>
		<pubDate>Mon, 29 Nov 1999 16:00:00 +0000</pubDate>
		<dc:creator>刘思喆</dc:creator>
				<category><![CDATA[娱乐]]></category>
		<category><![CDATA[hoopchina]]></category>
		<category><![CDATA[yaoming]]></category>
		<category><![CDATA[篮球]]></category>

		<guid isPermaLink="false">http://www.bjt.name/archives/9987</guid>
		<description><![CDATA[NBA 比赛可能永远都那么跌宕起伏，看火箭的比赛永远都那么揪心。没法子，谁叫自己是松鼠姚的球迷。就像一部商业电影和影评一样，不论比赛怎样，虎扑——张公子的美文确实在值得一读，行文如流水，着实比张合理的战术说明听得舒服。 爱火箭除了松鼠姚，还有个原因——火箭经理莫雷是做 data 出身的。我们不迷信数据，但数据这东西能让人看到现象下面的本质。正如上次莫经理从马刺换来 Luis Scola 一样，数据处理过后能看到场均双 10+ 的潜力男。 姚明为什么叫松鼠参考： 相关文章： NBA联盟50位顶级球员的指标表现 从数据看2008-2009赛季的火箭队]]></description>
			<content:encoded><![CDATA[<p>NBA 比赛可能永远都那么跌宕起伏，看火箭的比赛永远都那么揪心。没法子，谁叫自己是松鼠姚的球迷。就像一部商业电影和影评一样，不论比赛怎样，<a href="http://hoopchina.com/">虎扑</a>——张公子的<a href="http://bbs.hoopchina.com/541638.html">美文</a>确实在值得一读，行文如流水，着实比<a href="http://www.google.cn/search?hl=zh-CN&amp;q=%E5%BC%A0%E5%90%88%E7%90%86&amp;btnG=Google+%E6%90%9C%E7%B4%A2&amp;meta=&amp;aq=f&amp;oq=">张合理</a>的战术说明听得舒服。</p>
<p>爱火箭除了松鼠姚，还有个原因——火箭经理莫雷是做 data 出身的。我们不迷信数据，但数据这东西能让人看到现象下面的本质。正如上次莫经理从马刺换来 Luis Scola 一样，数据处理过后能看到场均双 10+ 的潜力男。</p>
<p>姚明为什么叫松鼠参考：</p>
<p><a rel="WLPP" href="https://ywp7qa.bay.livefilestore.com/y1mZyzJMFQJg9EN82hQs9VsUtTHni1E0RXiS0OEBpTPpq1Rii9qY72x_4JjNNdJAEfmkAnE4utN13Y-f9778WfSOrgvy1nSGKkJXoPQys-kBNsGqnu59mqlOo-ptXib7ar4mwdjUA1mQDg/pics_terry1602_1194858123[3].jpg"><img style="display: inline; border: 0px;" title="pics_terry1602_1194858123" src="https://ywp7qa.bay.livefilestore.com/y1mri6Bntk4WJe56BEkdsPJe-zrLgyv8pGmYFkhiCG1MwHTx9oNbi450sbB9SfWGGgdSSfy38QrX5OWRZ4JxmRkNQOKwvMwe_ZVyawyGNuuWhcew3W1GMYBQClblduIBtRzFoD3iF5i7mo/pics_terry1602_1194858123_thumb[1].jpg" border="0" alt="pics_terry1602_1194858123" width="216" height="280" /></a> <a rel="WLPP" href="https://ywp7qa.bay.livefilestore.com/y1m9l4T8bDAuRwLgm401OguLdnLF2Izx2arQPYwwcsZCG11a99LNmXAZfseUJyveFA_tIqnCORpUxp613QPDR9aRqXkzsBEjRnd5g8xeLUga2ydVFqkojJhkM16ARXkYPXhm6rgZsyz3OI/pics_terry1602_1194858100[7].jpg"><img style="display: inline; border: 0px;" title="pics_terry1602_1194858100" src="https://ywp7qa.bay.livefilestore.com/y1m79-GrJS9FeIkKop-SW9Uy7bl8T4vTrng1AnApv0oLp0Gx4p4sr5p4yaG0W3UxaTnfOS8DYkapJkmi5lPRjee0PzoTm5ZLCJN14ywWje-Ru-4ahGf_X_1BNmunSMQRAu7P7Vi9LgpH-0/pics_terry1602_1194858100_thumb[5].jpg" border="0" alt="pics_terry1602_1194858100" width="327" height="280" /></a><br />
<h3 class='related_post_title'>相关文章：</h3>
<ul class='related_post'>
<li><a href='http://www.bjt.name/2010/01/nba-top-50-scorers-performance/' title='NBA联盟50位顶级球员的指标表现'>NBA联盟50位顶级球员的指标表现</a></li>
<li><a href='http://www.bjt.name/2009/03/data-2008-2009-rockets/' title='从数据看2008-2009赛季的火箭队'>从数据看2008-2009赛季的火箭队</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.bjt.name/2009/02/article-zhang/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

