<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: 50000 Revisions Committed to R</title>
	<atom:link href="http://yihui.name/en/2009/10/50000-revisions-committed-to-r/feed/" rel="self" type="application/rss+xml" />
	<link>http://yihui.name/en/2009/10/50000-revisions-committed-to-r/</link>
	<description>Yihui XIE</description>
	<lastBuildDate>Wed, 28 Jul 2010 20:51:28 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>By: Yihui Xie</title>
		<link>http://yihui.name/en/2009/10/50000-revisions-committed-to-r/#comment-10371</link>
		<dc:creator>Yihui Xie</dc:creator>
		<pubDate>Fri, 02 Jul 2010 07:07:49 +0000</pubDate>
		<guid isPermaLink="false">http://yihui.name/en/?p=304#comment-10371</guid>
		<description>Thanks! That will be a reasonable enhancement :)</description>
		<content:encoded><![CDATA[<p>Thanks! That will be a reasonable enhancement <img src='http://yihui.name/en/wp-content/plugins/tango-smilies/tango/face-smile.png' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Thomas Levine</title>
		<link>http://yihui.name/en/2009/10/50000-revisions-committed-to-r/#comment-10366</link>
		<dc:creator>Thomas Levine</dc:creator>
		<pubDate>Wed, 16 Jun 2010 20:20:02 +0000</pubDate>
		<guid isPermaLink="false">http://yihui.name/en/?p=304#comment-10366</guid>
		<description>I think Ripley&#039;s high commit count is misleading when you&#039;re comparing whether he sleeps to whether other R core members sleep. You should change the y axes from raw count to percentage of total count. Once you do this, I think the other authors&#039; commits will look more spread-out.</description>
		<content:encoded><![CDATA[<p>I think Ripley&#8217;s high commit count is misleading when you&#8217;re comparing whether he sleeps to whether other R core members sleep. You should change the y axes from raw count to percentage of total count. Once you do this, I think the other authors&#8217; commits will look more spread-out.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Yihui Xie</title>
		<link>http://yihui.name/en/2009/10/50000-revisions-committed-to-r/#comment-3618</link>
		<dc:creator>Yihui Xie</dc:creator>
		<pubDate>Tue, 27 Oct 2009 22:26:24 +0000</pubDate>
		<guid isPermaLink="false">http://yihui.name/en/?p=304#comment-3618</guid>
		<description>Thanks for your reply, Kevin. Yes, you second suggestion is a more natural representation of the working hours -- a day starts from the morning instead of the mid-night (for most people). For the histogram, actually I&#039;m not a regular user of &lt;code&gt;ggplot2&lt;/code&gt;, and I didn&#039;t check &lt;code&gt;stat_bin()&lt;/code&gt; carefully, but after your reminding, I found a weird behavior of it which confused me: &lt;code&gt;qplot(1:10)+stat_bin(binwidth=1)&lt;/code&gt; will produce a histogram which is not flat... :shock:</description>
		<content:encoded><![CDATA[<p>Thanks for your reply, Kevin. Yes, you second suggestion is a more natural representation of the working hours &#8212; a day starts from the morning instead of the mid-night (for most people). For the histogram, actually I&#8217;m not a regular user of <code>ggplot2</code>, and I didn&#8217;t check <code>stat_bin()</code> carefully, but after your reminding, I found a weird behavior of it which confused me: <code>qplot(1:10)+stat_bin(binwidth=1)</code> will produce a histogram which is not flat&#8230; <img src='http://yihui.name/en/wp-content/plugins/tango-smilies/tango/face-surprise.png' alt=':shock:' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kevin Wright</title>
		<link>http://yihui.name/en/2009/10/50000-revisions-committed-to-r/#comment-3551</link>
		<dc:creator>Kevin Wright</dc:creator>
		<pubDate>Mon, 26 Oct 2009 21:12:58 +0000</pubDate>
		<guid isPermaLink="false">http://yihui.name/en/?p=304#comment-3551</guid>
		<description>I don&#039;t use &lt;code&gt;ggplot2&lt;/code&gt;, so maybe I&#039;m wrong, but it does not appear that &lt;code&gt;ggplot2&lt;/code&gt; is respecting the bin width of 1 hour.  Here is an equal-bin-width version using &lt;code&gt;lattice&lt;/code&gt;:

&lt;pre&gt;library(lattice)
histogram(~hour, data = subset(hour.data, author == &quot;ripley&quot;),
          type=&quot;count&quot;,
          breaks=0:24-.1,
          scales=list(x=list(at=c(0,6,12,18,24)))
          )&lt;/pre&gt;

Your graph does a nice job of answering the question.  Ripley usually quits working by 12:00 and almost always by 1:00 AM.  He almost never starts before 5:00 AM.

Shifting the &#039;window&#039; from 0-24 hours to 4-28 hours provides a different (more natural?) perspective on Ripley&#039;s &#039;day&#039;:

&lt;pre&gt;hour2 &lt;- subset(hour.data, author == &quot;ripley&quot;)
hour2$hour &lt;- ifelse(hour2$hour &lt; 4, hour2$hour + 24, hour2$hour)
histogram(~hour, data = hour2,
          type=&quot;count&quot;,
          breaks=4:30-.1,
          scales=list(x=list(at=c(0,6,12,18,24)))
          )&lt;/pre&gt;

Kevin Wright</description>
		<content:encoded><![CDATA[<p>I don&#8217;t use <code>ggplot2</code>, so maybe I&#8217;m wrong, but it does not appear that <code>ggplot2</code> is respecting the bin width of 1 hour.  Here is an equal-bin-width version using <code>lattice</code>:</p>
<pre>library(lattice)
histogram(~hour, data = subset(hour.data, author == "ripley"),
          type="count",
          breaks=0:24-.1,
          scales=list(x=list(at=c(0,6,12,18,24)))
          )</pre>
<p>Your graph does a nice job of answering the question.  Ripley usually quits working by 12:00 and almost always by 1:00 AM.  He almost never starts before 5:00 AM.</p>
<p>Shifting the &#8216;window&#8217; from 0-24 hours to 4-28 hours provides a different (more natural?) perspective on Ripley&#8217;s &#8216;day&#8217;:</p>
<pre>hour2 &lt;- subset(hour.data, author == &quot;ripley&quot;)
hour2$hour &lt;- ifelse(hour2$hour &lt; 4, hour2$hour + 24, hour2$hour)
histogram(~hour, data = hour2,
          type=&quot;count&quot;,
          breaks=4:30-.1,
          scales=list(x=list(at=c(0,6,12,18,24)))
          )</pre>
<p>Kevin Wright</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: fan</title>
		<link>http://yihui.name/en/2009/10/50000-revisions-committed-to-r/#comment-3174</link>
		<dc:creator>fan</dc:creator>
		<pubDate>Sun, 11 Oct 2009 04:06:54 +0000</pubDate>
		<guid isPermaLink="false">http://yihui.name/en/?p=304#comment-3174</guid>
		<description>Wow, amazing~</description>
		<content:encoded><![CDATA[<p>Wow, amazing~</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: R的第五万次SVN修改：看看R大佬们的工作时间分布 &#124; Keep on Fighting! &#124; 谢益辉</title>
		<link>http://yihui.name/en/2009/10/50000-revisions-committed-to-r/#comment-3172</link>
		<dc:creator>R的第五万次SVN修改：看看R大佬们的工作时间分布 &#124; Keep on Fighting! &#124; 谢益辉</dc:creator>
		<pubDate>Sun, 11 Oct 2009 03:14:23 +0000</pubDate>
		<guid isPermaLink="false">http://yihui.name/en/?p=304#comment-3172</guid>
		<description>[...] 昨天Ripley教授向R提交了第50000次修改，Romain Francios对SVN的日志数据做了一些简单分析，我个人一直关心Ripley是不是整天不用睡觉（你看这老爷子一天到晚都在邮件列表中出没），这次正好验证一下他是不是24小时工作，数据和R代码参见50000 Revisions Committed to R。 [...]</description>
		<content:encoded><![CDATA[<p>[...] 昨天Ripley教授向R提交了第50000次修改，Romain Francios对SVN的日志数据做了一些简单分析，我个人一直关心Ripley是不是整天不用睡觉（你看这老爷子一天到晚都在邮件列表中出没），这次正好验证一下他是不是24小时工作，数据和R代码参见50000 Revisions Committed to R。 [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
