<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Jean-Etienne&#039;s blog</title>
	<atom:link href="http://jepoirrier.org/feed/" rel="self" type="application/rss+xml" />
	<link>http://jepoirrier.org</link>
	<description>A blog about free software, health issues and probably everything else too ...</description>
	<lastBuildDate>Tue, 15 May 2012 23:49:36 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='jepoirrier.org' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://1.gravatar.com/blavatar/fe99b8f0a3d3024f05b1907d3778b66f?s=96&#038;d=http%3A%2F%2Fs2.wp.com%2Fi%2Fbuttonw-com.png</url>
		<title>Jean-Etienne&#039;s blog</title>
		<link>http://jepoirrier.org</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://jepoirrier.org/osd.xml" title="Jean-Etienne&#039;s blog" />
	<atom:link rel='hub' href='http://jepoirrier.org/?pushpress=hub'/>
		<item>
		<title>Visualizing categorical data in mosaic with R</title>
		<link>http://jepoirrier.org/2012/05/16/visualizing-categorical-data-in-mosaic-with-r/</link>
		<comments>http://jepoirrier.org/2012/05/16/visualizing-categorical-data-in-mosaic-with-r/#comments</comments>
		<pubDate>Tue, 15 May 2012 23:46:25 +0000</pubDate>
		<dc:creator>Jean-Etienne Poirrier</dc:creator>
				<category><![CDATA[Open Source]]></category>
		<category><![CDATA[User Interface]]></category>
		<category><![CDATA[categorical data]]></category>
		<category><![CDATA[dataviz]]></category>
		<category><![CDATA[ggplot2]]></category>
		<category><![CDATA[mosaic]]></category>
		<category><![CDATA[R]]></category>
		<category><![CDATA[table]]></category>
		<category><![CDATA[visualization]]></category>

		<guid isPermaLink="false">http://jepoirrier.org/?p=1255</guid>
		<description><![CDATA[A few posts ago I wrote about my discomfort about stacked bar graphs and the fact I prefer to use simple table with gradients as background. My only regret then was that the table was built in a spreadsheet. I would have liked to keep the data as it is but also have a nice [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jepoirrier.org&#038;blog=23913474&#038;post=1255&#038;subd=jepoirrierdotorg&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>A few posts ago <a title="About stacked bar graphs" href="http://jepoirrier.org/2012/02/08/about-stacked-bar-graphs/">I wrote about my discomfort about stacked bar graphs</a> and the fact I prefer to use simple table with gradients as background. My only regret then was that the table was built in a spreadsheet. I would have liked to keep the data as it is but also have a nice representation of these categorical data.</p>
<p>This evening I spent some time analysing results from a survey and took the opportunity to buid these representations in <a title="The R Project" href="http://www.r-project.org/">R</a>.</p>
<p>The exact topic of the survey doesn&#8217;t matter here. Let just say it was a survey about opinion and recommendations on some people. The two questions were:</p>
<ol>
<li>How do you think these persons were, last year? Possible answers were: very bad, bad, average, good or very good.</li>
<li>Would you recommend these persons for next year? Possible answers were just yes or no.</li>
</ol>
<p>For the first question, the data was collected in a text file according to these three fields: Person, Opinion, Count. Data was similar to this:</p>
<pre>Person,Opinion,Count
Person 1,Very bad,0
Person 1,Bad,0
Person 1,Average,4
Person 1,Good,9
Person 1,Very good,3
Person 2,Very bad,3
Person 2,Bad,4
Person 2,Average,4
Person 2,Good,5
Person 2,Very good,0</pre>
<p>The trick to represent this is to use  geom_tiles (from <a href="http://had.co.nz/ggplot2/">ggplot2</a>) to display each count. There is an additional work to be done in order to have the Opinion categories in the right order. The code is the following:</p>
<p><pre class="brush: r;">
library(ggplot2)
data1 &lt;- read.table(&quot;resultsQ1.txt&quot;, header=T, sep=&quot;,&quot;)
scale_count &lt;- c(&quot;Very bad&quot;, &quot;Bad&quot;, &quot;Average&quot;, &quot;Good&quot;, &quot;Very good&quot;)
scale_rep &lt;- c(&quot;1&quot;, &quot;2&quot;, &quot;3&quot;, &quot;4&quot;, &quot;5&quot;)
names(scale_count) &lt;- scale_rep
ggplot(data1, aes(x=Opinion, y=Person)) +
geom_tile(aes(fill=Count)) +
xlim(scale_count) +
scale_fill_gradient(low=&quot;white&quot;, high=&quot;blue&quot;)+theme_bw() +
opts(title = &quot;Opinion on persons&quot;)
</pre></p>
<p>And the graph looks like this:</p>
<p><a href="http://jepoirrierdotorg.files.wordpress.com/2012/05/120516-plot1.png"><img class="aligncenter size-full wp-image-1256" title="120516-plot1" src="http://jepoirrierdotorg.files.wordpress.com/2012/05/120516-plot1.png?w=497&h=438" alt="" width="497" height="438" /></a></p>
<p>For the second question, the data was collected in a text file according to these three fields too: Person, Reco, Count. Data was similar to this:</p>
<pre>Person,Reco,Count
Person 1,Recommend,16
Person 1,Do not recommend,0
Person 2,Recommend,5
Person 2,Do not recommend,11</pre>
<p>And we use approximately the same code:</p>
<p><pre class="brush: r;">
library(ggplot2)
data2 &lt;- read.table(&quot;resultsQ2.txt&quot;, header=T, sep=&quot;,&quot;)
ggplot(data2, aes(x=Reco, y=Person)) +
geom_tile(aes(fill=Count)) +
scale_fill_gradient(low=&quot;white&quot;, high=&quot;darkblue&quot;)+theme_bw() +
opts(title = &quot;Recommendations&quot;)
</pre></p>
<p>And the graph for the second question looks like this:</p>
<p><a href="http://jepoirrierdotorg.files.wordpress.com/2012/05/120516-plot2.png"><img class="aligncenter size-full wp-image-1258" title="120516-plot2" src="http://jepoirrierdotorg.files.wordpress.com/2012/05/120516-plot2.png?w=497&h=438" alt="" width="497" height="438" /></a></p>
<p>Easy isn&#8217;t it? Do you have other types of visualization for this kind of data?</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jepoirrierdotorg.wordpress.com/1255/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jepoirrierdotorg.wordpress.com/1255/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jepoirrierdotorg.wordpress.com/1255/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jepoirrierdotorg.wordpress.com/1255/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/jepoirrierdotorg.wordpress.com/1255/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/jepoirrierdotorg.wordpress.com/1255/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/jepoirrierdotorg.wordpress.com/1255/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/jepoirrierdotorg.wordpress.com/1255/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jepoirrierdotorg.wordpress.com/1255/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jepoirrierdotorg.wordpress.com/1255/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jepoirrierdotorg.wordpress.com/1255/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jepoirrierdotorg.wordpress.com/1255/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jepoirrierdotorg.wordpress.com/1255/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jepoirrierdotorg.wordpress.com/1255/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jepoirrier.org&#038;blog=23913474&#038;post=1255&#038;subd=jepoirrierdotorg&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://jepoirrier.org/2012/05/16/visualizing-categorical-data-in-mosaic-with-r/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/48d9f48f30cc166d0e8ffce4edfab09f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">jepoirrier</media:title>
		</media:content>

		<media:content url="http://jepoirrierdotorg.files.wordpress.com/2012/05/120516-plot1.png" medium="image">
			<media:title type="html">120516-plot1</media:title>
		</media:content>

		<media:content url="http://jepoirrierdotorg.files.wordpress.com/2012/05/120516-plot2.png" medium="image">
			<media:title type="html">120516-plot2</media:title>
		</media:content>
	</item>
		<item>
		<title>World book and copyright day, 23 April</title>
		<link>http://jepoirrier.org/2012/04/22/world-book-and-copyright-day-23-april/</link>
		<comments>http://jepoirrier.org/2012/04/22/world-book-and-copyright-day-23-april/#comments</comments>
		<pubDate>Sun, 22 Apr 2012 22:43:43 +0000</pubDate>
		<dc:creator>Jean-Etienne Poirrier</dc:creator>
				<category><![CDATA[Reading]]></category>
		<category><![CDATA[book]]></category>
		<category><![CDATA[day]]></category>
		<category><![CDATA[e-book]]></category>
		<category><![CDATA[freedom]]></category>
		<category><![CDATA[World Book and Copyright Day]]></category>
		<category><![CDATA[World Book Day]]></category>

		<guid isPermaLink="false">http://jepoirrier.org/?p=1250</guid>
		<description><![CDATA[Today is World book and copyright day. UN mentions a lot about books and the diversity of values they bring along but very few words are written on copyright per se. It&#8217;s true that books are vectors of values and knowledge, depositories of the intangible heritage. But in a world progressively going towards digital books, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jepoirrier.org&#038;blog=23913474&#038;post=1250&#038;subd=jepoirrierdotorg&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Today is <a href="http://www.un.org/en/events/bookday/index.shtml">World book and copyright day</a>. UN mentions a lot about books and the diversity of values they bring along but very few words are written on copyright <em>per se</em>. It&#8217;s true that books are vectors of values and knowledge, depositories of the intangible heritage. But in a world progressively going towards <em>digital</em> books, it could be worth having a real debate about what type of knowledge we want to preserve for the next generations, in which formats, under what types of conditions.</p>
<p>I was in New York recently and I was happily surprised to see the number of people still reading something (real books but also magazines, e-books, and of course their e-mails). E-book readers are more and more common, especially in planes and other public transport. Every big book store on 5th Avenue has its own e-reader, even web-based book stores promote their own e-readers. Most if not all of those e-readers promote its own closed, freedom-depriving file format.</p>
<p style="text-align:center;"><a href="http://jepoirrierdotorg.files.wordpress.com/2012/04/dsc00234.jpg"><img class="aligncenter size-full wp-image-1251" style="border:1px solid black;" title="Bill Blass Public Catalog Room" src="http://jepoirrierdotorg.files.wordpress.com/2012/04/dsc00234.jpg?w=497&h=279" alt="Bill Blass Public Catalog Room - NYPL" width="497" height="279" /></a></p>
<p>We&#8217;ve all in mind <a href="http://www.flickr.com/search/?q=rose+main+reading+room&amp;l=cc&amp;ss=2&amp;ct=6&amp;mt=photos&amp;w=all&amp;adv=1">pictures of the Rose Main Reading Room</a> of the NYPL Schwarzman Building, where the beautiful room is packed with people reading and their laptops. I was also surprised to see the amount of computers available in other rooms (like the Bill Blass Public Catalog Room above). Books &#8211; real ones, made of paper and cardboard &#8211; are consigned to the walls, very few people are actually browsing through them. We now look for books in electronic catalog ; these books are stored in more functional room for librarians to find them. We now expose our collection of books in &#8220;social bookshelves&#8221; like <a title="My catalog on librarything" href="http://www.librarything.com/catalog/jepoirrier">librarything</a>.</p>
<p>It&#8217;s not a reaction of an old man (well, maybe &#8230;). It&#8217;s more that we should think about what we want to create and what we want to leave for the next generations. It&#8217;s good to have a business plan to allow customers to have the best possible experience while reading your e-books for the next 2 years ; it&#8217;s even better if you would allow the same customers to keep their library open, transparent and &#8220;sharable&#8221; with others. Gutenberg&#8217;s invention allowed books and knowledge to be widely shared ; don&#8217;t let the &#8220;digital revolution&#8221; take that freedom back!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jepoirrierdotorg.wordpress.com/1250/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jepoirrierdotorg.wordpress.com/1250/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jepoirrierdotorg.wordpress.com/1250/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jepoirrierdotorg.wordpress.com/1250/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/jepoirrierdotorg.wordpress.com/1250/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/jepoirrierdotorg.wordpress.com/1250/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/jepoirrierdotorg.wordpress.com/1250/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/jepoirrierdotorg.wordpress.com/1250/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jepoirrierdotorg.wordpress.com/1250/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jepoirrierdotorg.wordpress.com/1250/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jepoirrierdotorg.wordpress.com/1250/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jepoirrierdotorg.wordpress.com/1250/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jepoirrierdotorg.wordpress.com/1250/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jepoirrierdotorg.wordpress.com/1250/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jepoirrier.org&#038;blog=23913474&#038;post=1250&#038;subd=jepoirrierdotorg&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://jepoirrier.org/2012/04/22/world-book-and-copyright-day-23-april/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/48d9f48f30cc166d0e8ffce4edfab09f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">jepoirrier</media:title>
		</media:content>

		<media:content url="http://jepoirrierdotorg.files.wordpress.com/2012/04/dsc00234.jpg" medium="image">
			<media:title type="html">Bill Blass Public Catalog Room</media:title>
		</media:content>
	</item>
		<item>
		<title>Eat meat or not?</title>
		<link>http://jepoirrier.org/2012/04/22/eat-meat-or-not/</link>
		<comments>http://jepoirrier.org/2012/04/22/eat-meat-or-not/#comments</comments>
		<pubDate>Sun, 22 Apr 2012 21:21:18 +0000</pubDate>
		<dc:creator>Jean-Etienne Poirrier</dc:creator>
				<category><![CDATA[Health]]></category>
		<category><![CDATA[Reading]]></category>
		<category><![CDATA[Carnivore]]></category>
		<category><![CDATA[food]]></category>
		<category><![CDATA[Meat]]></category>
		<category><![CDATA[PLoS]]></category>
		<category><![CDATA[red meat]]></category>
		<category><![CDATA[Weaning]]></category>

		<guid isPermaLink="false">http://jepoirrier.org/?p=1246</guid>
		<description><![CDATA[It all started with a strong statement in the LA Times: If early humans had been vegans we might all still be living in caves. It says nothing and everything at the same time &#8230; Not eating meat would have stopped our &#8220;evolution&#8221; from early humans? Not eating meat would make us dumber? Or does [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jepoirrier.org&#038;blog=23913474&#038;post=1246&#038;subd=jepoirrierdotorg&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>It all started with a strong statement in the <a title="Eating meat helped early humans reproduce, spread around the globe" href="http://www.latimes.com/health/boostershots/la-heb-meat-eating-reproduction-20120420,0,2388092.story">LA Times</a>:</p>
<blockquote><p>If early humans had been vegans we might all still be living in caves.</p></blockquote>
<p>It says nothing and everything at the same time &#8230; Not eating meat would have stopped our &#8220;evolution&#8221; from early humans? Not eating meat would make us dumber? Or does it have something else to do? It does.</p>
<p>The <a title="Impact of Carnivory on Human Development and Evolution Revealed by a New Unifying Model of Weaning in Mammals" href="http://dx.doi.org/10.1371/journal.pone.0032452">original article on PLoS ONE</a> is in fact a study about the impact of <a class="zem_slink" title="Carnivore" href="http://en.wikipedia.org/wiki/Carnivore" rel="wikipedia" target="_blank">carnivory</a> on human development and evolution. And the method used is a model of weaning in Mammals (thus no intelligence test <em>per se</em>). Psouni and her colleagues showed that:</p>
<ul>
<li>Brain mass is a better fundamental predictor of time to weaning than is female body mass (<a href="http://www.plosone.org/article/slideshow.action?uri=info:doi/10.1371/journal.pone.0032452&amp;imageURI=info:doi/10.1371/journal.pone.0032452.g002">figure 2</a>);</li>
<li>Limb biomechanics is a predictor of time to weaning (<a href="http://www.plosone.org/article/slideshow.action?uri=info:doi/10.1371/journal.pone.0032452&amp;imageURI=info:doi/10.1371/journal.pone.0032452.g003">figure 3</a>);</li>
<li>Dietary profile is a predictor of time to weaning (<a href="http://www.plosone.org/article/slideshow.action?uri=info:doi/10.1371/journal.pone.0032452&amp;imageURI=info:doi/10.1371/journal.pone.0032452.g004">figure 4</a>) and that</li>
<li>Time to weaning in humans is quantitatively predictable from a carnivorous diet (<a href="http://www.plosone.org/article/slideshow.action?uri=info:doi/10.1371/journal.pone.0032452&amp;imageURI=info:doi/10.1371/journal.pone.0032452.g005">figure 5</a>).</li>
</ul>
<p>So eating meat made human women wean more rapidly than if we stayed vegetarian. Their model suggests that &#8220;the contribution of carnivory was to shorten the duration of lactation and suckling despite the overall prolongation of development associated with increased adult brain mass&#8221;. Nothing about intelligence thus.</p>
<p style="text-align:center;"><a href="http://jepoirrierdotorg.files.wordpress.com/2012/04/120422-redmeat.png"><img class="aligncenter size-medium wp-image-1247" style="border:1px solid black;" title="120422-redmeat" src="http://jepoirrierdotorg.files.wordpress.com/2012/04/120422-redmeat.png?w=300&h=108" alt="" width="300" height="108" /></a></p>
<p>However this paper came to my knowledge after OAD published <a href="http://www.onlineassociatesdegree.com/truth-behind-red-meat/">a (quite long) infographics about the dangers of red meat</a> (not meat in general). On the presentation-side, I&#8217;m not sure such long vertical banner is powerful enough: after some time you are tired to scroll down. On the content-side, it&#8217;s a well-known fact that <a href="http://en.wikipedia.org/wiki/Red_meat#Health_risks">red meat comes with a lot of healthy risks</a>. On top of that, the infographics focuses a lot on the USA, one of the countries where the consumption of red meat is high. This reminded me a TV programme from Jamie Oliver where he showed how meat is processed in the USA &#8230;</p>
<span style="text-align:center; display: block;"><a href="http://jepoirrier.org/2012/04/22/eat-meat-or-not/"><img src="http://img.youtube.com/vi/20Yg-c6iBF8/2.jpg" alt="" /></a></span>
<p>It&#8217;s &#8220;good&#8221; to be reminded of all this only once you&#8217;ve come back from there &#8230;</p>
<p>Key messages? Always read the original paper (even diagonally it&#8217;s better than general press) and know what you eat!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jepoirrierdotorg.wordpress.com/1246/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jepoirrierdotorg.wordpress.com/1246/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jepoirrierdotorg.wordpress.com/1246/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jepoirrierdotorg.wordpress.com/1246/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/jepoirrierdotorg.wordpress.com/1246/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/jepoirrierdotorg.wordpress.com/1246/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/jepoirrierdotorg.wordpress.com/1246/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/jepoirrierdotorg.wordpress.com/1246/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jepoirrierdotorg.wordpress.com/1246/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jepoirrierdotorg.wordpress.com/1246/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jepoirrierdotorg.wordpress.com/1246/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jepoirrierdotorg.wordpress.com/1246/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jepoirrierdotorg.wordpress.com/1246/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jepoirrierdotorg.wordpress.com/1246/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jepoirrier.org&#038;blog=23913474&#038;post=1246&#038;subd=jepoirrierdotorg&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://jepoirrier.org/2012/04/22/eat-meat-or-not/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/48d9f48f30cc166d0e8ffce4edfab09f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">jepoirrier</media:title>
		</media:content>

		<media:content url="http://jepoirrierdotorg.files.wordpress.com/2012/04/120422-redmeat.png?w=300" medium="image">
			<media:title type="html">120422-redmeat</media:title>
		</media:content>
	</item>
		<item>
		<title>Pi in Pubmed</title>
		<link>http://jepoirrier.org/2012/03/19/pi-in-pubmed/</link>
		<comments>http://jepoirrier.org/2012/03/19/pi-in-pubmed/#comments</comments>
		<pubDate>Mon, 19 Mar 2012 18:06:37 +0000</pubDate>
		<dc:creator>Jean-Etienne Poirrier</dc:creator>
				<category><![CDATA[Health]]></category>
		<category><![CDATA[My life]]></category>
		<category><![CDATA[3.14159]]></category>
		<category><![CDATA[Math]]></category>
		<category><![CDATA[Pi]]></category>
		<category><![CDATA[Pi Day]]></category>
		<category><![CDATA[PubMed]]></category>

		<guid isPermaLink="false">http://jepoirrier.org/?p=1242</guid>
		<description><![CDATA[On March 14th, 2012 (3/14/2012), it was Pi day. According to Wikipedia, Pi (π) is a mathematical constant that is the ratio of any Euclidean circle&#8217;s circumference to its diameter. While others estimated π using Monte Carlo in R or declared π is wrong, I tried to see how many times the pi value is cited in Pubmed, a [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jepoirrier.org&#038;blog=23913474&#038;post=1242&#038;subd=jepoirrierdotorg&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>On March 14th, 2012 (3/14/2012), it was <a href="http://en.wikipedia.org/wiki/Pi_day">Pi day</a>. <a href="http://en.wikipedia.org/wiki/Pi">According to Wikipedia</a>, Pi (π) is <em>a mathematical constant that is the ratio of any Euclidean circle&#8217;s circumference to its diameter</em>. While others <a href="http://bayesianbiologist.com/2012/03/14/%CF%80-day-special-estimating-%CF%80-using-monte-carlo/">estimated π using Monte Carlo in R</a> or <a href="http://tauday.com/tau-manifesto">declared π is wrong</a>, I tried to see how many times the pi value is cited in <a class="zem_slink" title="PubMed" href="http://www.ncbi.nlm.nih.gov/pubmed/" rel="homepage" target="_blank">Pubmed</a>, a database of references and abstracts on life sciences and biomedical topics. And here are the results (please note the log y-axis):</p>
<p><a href="http://jepoirrierdotorg.files.wordpress.com/2012/03/120314-piinpubmed.png"><img class="aligncenter size-full wp-image-1243" title="120314-piInPubmed" src="http://jepoirrierdotorg.files.wordpress.com/2012/03/120314-piinpubmed.png?w=497&h=406" alt="Pi citations in Pubmed (March 2012)" width="497" height="406" /></a></p>
<table align="center">
<tbody>
<tr>
<th>Pi</th>
<th>Occurences</th>
</tr>
<tr>
<td>3.14159</td>
<td>1</td>
</tr>
<tr>
<td>3.1415</td>
<td>1</td>
</tr>
<tr>
<td>3.141</td>
<td>110</td>
</tr>
<tr>
<td>3.14</td>
<td>11726</td>
</tr>
</tbody>
</table>
<p>I know it has little meaning: very often the string of numbers in the pi value was not there for pi itself but for other reasons. I thought it was fun, that&#8217;s all.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jepoirrierdotorg.wordpress.com/1242/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jepoirrierdotorg.wordpress.com/1242/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jepoirrierdotorg.wordpress.com/1242/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jepoirrierdotorg.wordpress.com/1242/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/jepoirrierdotorg.wordpress.com/1242/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/jepoirrierdotorg.wordpress.com/1242/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/jepoirrierdotorg.wordpress.com/1242/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/jepoirrierdotorg.wordpress.com/1242/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jepoirrierdotorg.wordpress.com/1242/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jepoirrierdotorg.wordpress.com/1242/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jepoirrierdotorg.wordpress.com/1242/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jepoirrierdotorg.wordpress.com/1242/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jepoirrierdotorg.wordpress.com/1242/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jepoirrierdotorg.wordpress.com/1242/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jepoirrier.org&#038;blog=23913474&#038;post=1242&#038;subd=jepoirrierdotorg&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://jepoirrier.org/2012/03/19/pi-in-pubmed/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/48d9f48f30cc166d0e8ffce4edfab09f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">jepoirrier</media:title>
		</media:content>

		<media:content url="http://jepoirrierdotorg.files.wordpress.com/2012/03/120314-piinpubmed.png" medium="image">
			<media:title type="html">120314-piInPubmed</media:title>
		</media:content>
	</item>
		<item>
		<title>Holi hai!</title>
		<link>http://jepoirrier.org/2012/03/06/holi-hai-2/</link>
		<comments>http://jepoirrier.org/2012/03/06/holi-hai-2/#comments</comments>
		<pubDate>Tue, 06 Mar 2012 21:18:58 +0000</pubDate>
		<dc:creator>Jean-Etienne Poirrier</dc:creator>
				<category><![CDATA[My life]]></category>
		<category><![CDATA[2012]]></category>
		<category><![CDATA[Belgium]]></category>
		<category><![CDATA[Brussels]]></category>
		<category><![CDATA[Holi]]></category>
		<category><![CDATA[Leuven]]></category>
		<category><![CDATA[movie]]></category>

		<guid isPermaLink="false">http://jepoirrier.org/?p=1238</guid>
		<description><![CDATA[March 7th, 2012 is Holi! It is first a Hindu spring festival celebration but it is also known as the festival of colours. The main day is celebrated by people throwing scented powder and perfume at each other. Bonfires are lit on the eve of the festival (more info on Wikipedia). Now compare how a [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jepoirrier.org&#038;blog=23913474&#038;post=1238&#038;subd=jepoirrierdotorg&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>March 7th, 2012 is <em><strong><span style="color:#ff0000;">H</span><span style="color:#0000ff;">o</span><span style="color:#339966;">l</span><span style="color:#ff6600;">i</span>!</strong></em> It is first a Hindu spring festival celebration but it is also known as the festival of colours. The main day is celebrated by people throwing scented powder and perfume at each other. Bonfires are lit on the eve of the festival (<a href="http://en.wikipedia.org/wiki/Holi">more info on Wikipedia</a>).</p>
<p>Now compare how a movie showed Holi in 1981 (&#8220;<a href="http://en.wikipedia.org/wiki/Silsila_(film)">Silsila</a>&#8220;):</p>
<span style="text-align:center; display: block;"><a href="http://jepoirrier.org/2012/03/06/holi-hai-2/"><img src="http://img.youtube.com/vi/iZNTbobkg-I/2.jpg" alt="" /></a></span>
<p>With a movie showing a Holi celebration in 2010 (&#8220;<a href="http://en.wikipedia.org/wiki/Action_Replayy">Action_Replayy</a>&#8220;):</p>
<span style="text-align:center; display: block;"><a href="http://jepoirrier.org/2012/03/06/holi-hai-2/"><img src="http://img.youtube.com/vi/qPyeK7WgBGg/2.jpg" alt="" /></a></span>
<p> <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>In Belgium, at least two celebrations are planned:</p>
<ul>
<li><a href="https://www.facebook.com/events/278073322261788/">one in Leuven</a>, organised by <a href="http://isal.be/">ISAL</a>, on March 10th, 2012;</li>
<li>the other one in Brussels, organised by <a href="http://www.inbag.org/">InBAG</a>, on March 24th, 2012.</li>
</ul>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jepoirrierdotorg.wordpress.com/1238/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jepoirrierdotorg.wordpress.com/1238/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jepoirrierdotorg.wordpress.com/1238/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jepoirrierdotorg.wordpress.com/1238/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/jepoirrierdotorg.wordpress.com/1238/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/jepoirrierdotorg.wordpress.com/1238/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/jepoirrierdotorg.wordpress.com/1238/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/jepoirrierdotorg.wordpress.com/1238/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jepoirrierdotorg.wordpress.com/1238/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jepoirrierdotorg.wordpress.com/1238/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jepoirrierdotorg.wordpress.com/1238/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jepoirrierdotorg.wordpress.com/1238/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jepoirrierdotorg.wordpress.com/1238/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jepoirrierdotorg.wordpress.com/1238/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jepoirrier.org&#038;blog=23913474&#038;post=1238&#038;subd=jepoirrierdotorg&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://jepoirrier.org/2012/03/06/holi-hai-2/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/48d9f48f30cc166d0e8ffce4edfab09f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">jepoirrier</media:title>
		</media:content>
	</item>
		<item>
		<title>Maximum number of characters in a Windows path is 260 characters</title>
		<link>http://jepoirrier.org/2012/02/28/maximum-number-of-characters-in-a-windows-path-is-260-characters/</link>
		<comments>http://jepoirrier.org/2012/02/28/maximum-number-of-characters-in-a-windows-path-is-260-characters/#comments</comments>
		<pubDate>Tue, 28 Feb 2012 18:35:30 +0000</pubDate>
		<dc:creator>Jean-Etienne Poirrier</dc:creator>
				<category><![CDATA[Projects]]></category>
		<category><![CDATA[API]]></category>
		<category><![CDATA[Cygwin]]></category>
		<category><![CDATA[delete]]></category>
		<category><![CDATA[directory]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[MAX_PATH]]></category>
		<category><![CDATA[Netbeans]]></category>
		<category><![CDATA[path]]></category>
		<category><![CDATA[rm]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://jepoirrier.org/?p=1233</guid>
		<description><![CDATA[A Java project compilation went berserk and I ended up with a directory structure of more than 260 characters. I stopped the mad process but it already created more than 50 successive duo of path &#8220;build/classes&#8221; &#8230; Now I had to delete this structure. And, to my surprise, it was impossible. When you try to [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jepoirrier.org&#038;blog=23913474&#038;post=1233&#038;subd=jepoirrierdotorg&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>A Java project compilation went berserk and I ended up with a directory structure of more than 260 characters. I stopped the mad process but it already created more than 50 successive duo of path &#8220;build/classes&#8221; &#8230;</p>
<p style="text-align:center;"><a href="http://jepoirrierdotorg.files.wordpress.com/2012/02/120228-long-dir-structure.jpg"><img class="aligncenter size-full wp-image-1234" style="border-color:black;border-style:solid;border-width:1px;" title="120228-long-dir-structure" src="http://jepoirrierdotorg.files.wordpress.com/2012/02/120228-long-dir-structure.jpg?w=497&h=314" alt="Duo of build/classes directories in path created by Netbeans" width="497" height="314" /></a></p>
<p>Now I had to delete this structure. And, to my surprise, it was impossible. When you try to just press the &#8220;Delete&#8221; key with the root directory selected in the File Explorer, you get a Path Too Long exception. The reason is that the maximum length of a path according to the Windows API (MAX_PATH variable) is defined as 260 characters. I tried some other methods but all of them failed:</p>
<ul>
<li>write a small Java program that tried to delete the whole path: Netbeans (Java) was able to create this mess, why shouldn&#8217;t another Java program be able to delete it? Impossible.</li>
<li>write a small C++ program that tried to delete the whole path: as long as you stick with the Windows API, it&#8217;s impossible (I read that it could be possible using the boost::filesystem library but didn&#8217;t try).</li>
<li>try some <a href="http://portableapps.com/apps">Portable Apps</a> utilities for file management: impossible (even when the software was using another framework like Qt).</li>
</ul>
<p>Finally, I just ran a <a href="http://www.cygwin.com/">Cygwin</a> terminal, went to the <em>ad hoc</em> location and did a simple &#8220;<tt>rm -rf libtest</tt>&#8220;. And voilà. So, next time Windows forbids me from doing something, it might be a good idea to directly rely on a true terminal from a Unix-like environment. <small>I didn&#8217;t try a liveCD (I didn&#8217;t have such CD to hand) but it might be also possible.</small></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jepoirrierdotorg.wordpress.com/1233/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jepoirrierdotorg.wordpress.com/1233/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jepoirrierdotorg.wordpress.com/1233/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jepoirrierdotorg.wordpress.com/1233/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/jepoirrierdotorg.wordpress.com/1233/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/jepoirrierdotorg.wordpress.com/1233/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/jepoirrierdotorg.wordpress.com/1233/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/jepoirrierdotorg.wordpress.com/1233/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jepoirrierdotorg.wordpress.com/1233/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jepoirrierdotorg.wordpress.com/1233/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jepoirrierdotorg.wordpress.com/1233/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jepoirrierdotorg.wordpress.com/1233/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jepoirrierdotorg.wordpress.com/1233/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jepoirrierdotorg.wordpress.com/1233/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jepoirrier.org&#038;blog=23913474&#038;post=1233&#038;subd=jepoirrierdotorg&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://jepoirrier.org/2012/02/28/maximum-number-of-characters-in-a-windows-path-is-260-characters/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/48d9f48f30cc166d0e8ffce4edfab09f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">jepoirrier</media:title>
		</media:content>

		<media:content url="http://jepoirrierdotorg.files.wordpress.com/2012/02/120228-long-dir-structure.jpg" medium="image">
			<media:title type="html">120228-long-dir-structure</media:title>
		</media:content>
	</item>
		<item>
		<title>About stacked bar graphs</title>
		<link>http://jepoirrier.org/2012/02/08/about-stacked-bar-graphs/</link>
		<comments>http://jepoirrier.org/2012/02/08/about-stacked-bar-graphs/#comments</comments>
		<pubDate>Wed, 08 Feb 2012 22:07:38 +0000</pubDate>
		<dc:creator>Jean-Etienne Poirrier</dc:creator>
				<category><![CDATA[Lab life]]></category>
		<category><![CDATA[Reading]]></category>
		<category><![CDATA[Bar chart]]></category>
		<category><![CDATA[bar graphs]]></category>
		<category><![CDATA[chart]]></category>
		<category><![CDATA[column chart]]></category>
		<category><![CDATA[data]]></category>
		<category><![CDATA[dataviz]]></category>
		<category><![CDATA[stacked bar graph]]></category>
		<category><![CDATA[visualization]]></category>

		<guid isPermaLink="false">http://jepoirrier.org/?p=1227</guid>
		<description><![CDATA[This afternoon I received a bunch of data accompanied by stacked bar graphs for each dataset. For example, this one: The chart shows the incidence of disease X in various age ranges. That incidence is split by 8 severity levels. The chart shows that the disease especially affects age ranges 4 and 5, at different [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jepoirrier.org&#038;blog=23913474&#038;post=1227&#038;subd=jepoirrierdotorg&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This afternoon I received a bunch of data accompanied by stacked bar graphs for each dataset. For example, this one:</p>
<p><a href="http://jepoirrierdotorg.files.wordpress.com/2012/02/120208-stacked-bar-graph.png"><img class="aligncenter size-full wp-image-1228" title="120208-stacked-bar-graph" src="http://jepoirrierdotorg.files.wordpress.com/2012/02/120208-stacked-bar-graph.png?w=497&h=333" alt="Stacked bar graph example" width="497" height="333" /></a></p>
<p>The chart shows the incidence of disease X in various age ranges. That incidence is split by 8 severity levels. The chart shows that the disease especially affects age ranges 4 and 5, at different severity levels. However I didn&#8217;t feel comfortable &#8230;</p>
<ul>
<li>what are the different levels of severity in age ranges 1, 2 and 3?</li>
<li>how can we compare levels C, D and E in age ranges 4 and 5?</li>
<li>is there anywhere some severity A?</li>
<li>(it&#8217;s even worst when some age ranges don&#8217;t have any incidence at all: what is happening?)</li>
<li>etc.</li>
</ul>
<p>I looked on the web but couldn&#8217;t find much information apart from the fact &#8220;<a href="http://www.cimaglobal.com/Thought-leadership/Newsletters/Insight-e-magazine/Insight-2011/Insight-October-2011/Presentation-tip-avoid-stacked-bar-charts/">The Economist says they&#8217;re so bad at conveying information, that they&#8217;re a great way to hide a bad number amongst good ones</a>&#8221; (but are still using them in their <a href="http://www.economist.com/blogs/graphicdetail">graphic detail section</a>) or &#8220;<a href="http://junkcharts.typepad.com/junk_charts/2010/08/stoneage-graphic.html">a stacked column chart with percentages should always extend to 100%</a>&#8221; (this doesn&#8217;t really apply here). Then in <a href="http://junkcharts.typepad.com/junk_charts/2007/07/exception-to-th.html">a post on Junk Charts</a>, someone mentioned Steven Few who would have said &#8220;not to use stacked bar charts because you cannot compare individual values very easily and as a rule [he] avoid[s] stacked bars with more than six or seven divisions&#8221;. And Steven Few also participated in his forum <a href="http://sfew.websitetoolbox.com/post/When-is-a-stacked-bar-graph-appropriate-4697296">here</a>.</p>
<p>This reminded me I read a book written by Steven Few, a few years ago: <a href="http://www.perceptualedge.com/library.php#IDD">Information Dashboard Design</a> (O&#8217;Reilly Media, 2006). Inside, on pages 135-136, one can read <strong>stacked bar graphs are the right choice only when you must display multiple instances of a whole and its parts, with emphasis primarily on the whole</strong>. And that this type of graph shouldn&#8217;t be used if the distribution changes must be shown more precisely.</p>
<p>If one wants to clearly display both the whole and its parts, Steven Few recommends to either use two graphs next to each other or a combination bar and line graph (with two quantitative scales).</p>
<p>As I&#8217;m not really interested in the whole but mainly in the parts and their relative distribution, I suggest another way to present the data. This isn&#8217;t really new. Actually everything was already in the table. You just format the table nicely and add some colour gradient. And voilà:</p>
<p><a href="http://jepoirrierdotorg.files.wordpress.com/2012/02/120208-stacked-bar-graph2.png"><img class="aligncenter size-full wp-image-1229" title="120208-stacked-bar-graph2" src="http://jepoirrierdotorg.files.wordpress.com/2012/02/120208-stacked-bar-graph2.png?w=497&h=172" alt="Simple table with data - instead of stacked bar graph" width="497" height="172" /></a></p>
<p>You still see where the incidence is the highest (in age ranges 4 and 5), what levels of severity are the most important (C, with lower but approximately similar levels of D, E and H). In addition to the graph above, one can notice there isn&#8217;t any severity levels A, B, F and G represented and we can quickly grasp the proportions between the different incidences.</p>
<p>Of course, if your criteria for &#8220;sexiness&#8221; is that there shouldn&#8217;t be any digit on your chart, then this chart is not sexy. But I find this presentation really more appealing and meaningful than the stacked bar graph. Isn&#8217;t it?</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jepoirrierdotorg.wordpress.com/1227/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jepoirrierdotorg.wordpress.com/1227/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jepoirrierdotorg.wordpress.com/1227/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jepoirrierdotorg.wordpress.com/1227/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/jepoirrierdotorg.wordpress.com/1227/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/jepoirrierdotorg.wordpress.com/1227/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/jepoirrierdotorg.wordpress.com/1227/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/jepoirrierdotorg.wordpress.com/1227/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jepoirrierdotorg.wordpress.com/1227/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jepoirrierdotorg.wordpress.com/1227/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jepoirrierdotorg.wordpress.com/1227/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jepoirrierdotorg.wordpress.com/1227/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jepoirrierdotorg.wordpress.com/1227/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jepoirrierdotorg.wordpress.com/1227/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jepoirrier.org&#038;blog=23913474&#038;post=1227&#038;subd=jepoirrierdotorg&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://jepoirrier.org/2012/02/08/about-stacked-bar-graphs/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/48d9f48f30cc166d0e8ffce4edfab09f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">jepoirrier</media:title>
		</media:content>

		<media:content url="http://jepoirrierdotorg.files.wordpress.com/2012/02/120208-stacked-bar-graph.png" medium="image">
			<media:title type="html">120208-stacked-bar-graph</media:title>
		</media:content>

		<media:content url="http://jepoirrierdotorg.files.wordpress.com/2012/02/120208-stacked-bar-graph2.png" medium="image">
			<media:title type="html">120208-stacked-bar-graph2</media:title>
		</media:content>
	</item>
		<item>
		<title>The 6 Android apps I really appreciate(d)</title>
		<link>http://jepoirrier.org/2012/01/26/the-6-android-apps-i-really-appreciated/</link>
		<comments>http://jepoirrier.org/2012/01/26/the-6-android-apps-i-really-appreciated/#comments</comments>
		<pubDate>Thu, 26 Jan 2012 21:51:20 +0000</pubDate>
		<dc:creator>Jean-Etienne Poirrier</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Android]]></category>
		<category><![CDATA[Android Market]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[client]]></category>
		<category><![CDATA[e-book]]></category>
		<category><![CDATA[ebook]]></category>
		<category><![CDATA[FBReader]]></category>
		<category><![CDATA[Google Reader]]></category>
		<category><![CDATA[GTD]]></category>
		<category><![CDATA[Identi.ca]]></category>
		<category><![CDATA[Mustard]]></category>
		<category><![CDATA[Reader]]></category>
		<category><![CDATA[Shuffle]]></category>
		<category><![CDATA[StatusNet]]></category>
		<category><![CDATA[TODO]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://jepoirrier.org/?p=1218</guid>
		<description><![CDATA[For some reasons, I had to choose between a new, simple Nokia phone (but fortunately not a Windows one!) and my 1-year-old Android phone. Before I leave this Android phone, here are the few 6 Android apps that I really appreciated and used daily.  FBReader is a very nice e-book reader for Android. It supports [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jepoirrier.org&#038;blog=23913474&#038;post=1218&#038;subd=jepoirrierdotorg&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>For some reasons, I had to choose between a new, simple Nokia phone (but fortunately not a Windows one!) and my 1-year-old Android phone. Before I leave this Android phone, here are the few 6 Android apps that I really appreciated and used daily.</p>
<p><a href="http://jepoirrierdotorg.files.wordpress.com/2012/01/android-reading-292x300-200x2001.png"><img class="alignright size-full wp-image-1221" title="android-reading-292x300-200x200" src="http://jepoirrierdotorg.files.wordpress.com/2012/01/android-reading-292x300-200x2001.png?w=497" alt=""   /></a> <a href="http://www.fbreader.org/FBReaderJ">FBReader</a> is a very nice e-book reader for Android. It supports a lot of e-book formats like epub, fb2, (partially) mobipocket, html, RTF and plain text. It works very well with <a href="http://calibre-ebook.com/">Calibre</a> (a free software e-book reader / manager / converter) &#8211; or is it the opposite? I also really like the fact FBReader can browse and download some free e-books directly from the internet. Of course, reading an e-book on a small 3.2 inch screen isn&#8217;t the perfect user experience. However, the night mode (white text on black background) is very handy to read something when it&#8217;s late and you don&#8217;t want the harsh white background. You can find <a href="https://market.android.com/details?id=org.geometerplus.zlibrary.ui.android&amp;hl=en">FBReader on the Android Market</a> for free (it&#8217;s a free software, under the GPL).</p>
<p>Google Reader is the Android version of the <a href="http://www.google.com/reader/">web-based Google Reader</a>. If you follow RSS/Atom feeds with the latter, you will be interested by its Android version. A very nice feature is that all your feeds will be synchronized between the different versions of your Reader: read a post on your phone and the web version knows you already read it (and vice-versa). This time the small screen isn&#8217;t really a handicap since posts are usually quite short (compared to books and short stories you could read on FBReader). Up to a certain version, I thought the Gooogle Reader for Android was not really using all the capabilities of a touch screen. But in a version recently introduced you just have to swipe a post to read the next one (a bit like turning a page with only one finger). You can find <a href="https://market.android.com/details?id=com.google.android.apps.reader&amp;hl=en">Google Reader on the Android Market</a> for free.</p>
<p><a href="http://mustard.macno.org/">Mustard</a> is a Twitter client for Android. It is also a StatusNet client. Being both on Twitter (<a href="https://twitter.com/#!/jepoirrier">@jepoirrier</a>) and Identi.ca (<a href="http://identi.ca/jepoirrier">@jepoirrier</a> too), it&#8217;s quite interesting to be able to read and post on both platform quickly one after the other. I may have missed something but Mustard lacks the possibility to post on all registered platforms at the same time. And it&#8217;s impossible to have all timelines merged in a common one with duplicates removed. But apart from this small annoyance, it&#8217;s a very good and fast microblogging client. You can find <a href="https://market.android.com/details?id=org.mustard.android&amp;hl=en">Mustard on the Android Market</a> for free (it&#8217;s even a free software &#8211; under the GPL).</p>
<p>According to its own introduction, <a href="http://code.google.com/p/android-shuffle/">Shuffle</a> is &#8220;a personal organizational tool, styled around the Getting Things Done methodology&#8221;. In layman&#8217;s words, it&#8217;s a very easy app to use to remember things you have to do. Beside just adding a note, you can also give them a deadline, a location and a context. I know I didn&#8217;t use everything (for instance, I didn&#8217;t use the synchronisation feature since I don&#8217;t have any <a href="http://getontracks.org/">Tracks</a> installation) but it&#8217;s a nice tool to remember small ideas on the way and help prioritize them (note: a Moleskine is also good for that purpose). You can find <a href="https://market.android.com/details?id=org.dodgybits.android.shuffle&amp;hl=en">Shuffle on the Android Market</a> for free (and it&#8217;s even free software - under the Apache license).</p>
<p>Finally, I really liked the last versions of <a href="http://android.wordpress.org/">WordPress</a> (the one that introduced the big white panels/buttons in a &#8220;dashboard&#8221;). First, these last versions crashed much less often than before (in fact I didn&#8217;t see them crash anymore). Then, its developers made it easy to quickly approve comment, add pictures/videos directly from the phone, read the stats and edit some previously posted messages (of course, it&#8217;s not very handy to edit a lengthy post on a small screen but it&#8217;s not WordPress fault here). If you have a blog on WordPress (or using the WordPress engine at your own website), it&#8217;s a must. You can find <a href="https://market.android.com/details?id=org.wordpress.android&amp;hl=en">WordPress on the Android Market</a> for free.</p>
<p>One last word about apps for kids (the &#8220;sixth&#8221; application). The free versions of <a href="https://market.android.com/details?id=com.henryh.android.whiteboard&amp;hl=en">Whiteboard</a> and <a href="https://market.android.com/details?id=zok.android.letters">Kids ABC Letters</a> are quite interesting for a 3 year-old boy.</p>
<p>As you can read, I mainly use free software (as in free speech) and apps to read things on the phone. Another use is for small, quick, tasks (like posting a tweet or adding something to remember). I think I will be able to live without that <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jepoirrierdotorg.wordpress.com/1218/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jepoirrierdotorg.wordpress.com/1218/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jepoirrierdotorg.wordpress.com/1218/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jepoirrierdotorg.wordpress.com/1218/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/jepoirrierdotorg.wordpress.com/1218/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/jepoirrierdotorg.wordpress.com/1218/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/jepoirrierdotorg.wordpress.com/1218/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/jepoirrierdotorg.wordpress.com/1218/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jepoirrierdotorg.wordpress.com/1218/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jepoirrierdotorg.wordpress.com/1218/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jepoirrierdotorg.wordpress.com/1218/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jepoirrierdotorg.wordpress.com/1218/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jepoirrierdotorg.wordpress.com/1218/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jepoirrierdotorg.wordpress.com/1218/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jepoirrier.org&#038;blog=23913474&#038;post=1218&#038;subd=jepoirrierdotorg&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://jepoirrier.org/2012/01/26/the-6-android-apps-i-really-appreciated/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/48d9f48f30cc166d0e8ffce4edfab09f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">jepoirrier</media:title>
		</media:content>

		<media:content url="http://jepoirrierdotorg.files.wordpress.com/2012/01/android-reading-292x300-200x2001.png" medium="image">
			<media:title type="html">android-reading-292x300-200x200</media:title>
		</media:content>
	</item>
		<item>
		<title>Chúc mừng năm mới!</title>
		<link>http://jepoirrier.org/2012/01/20/chuc-m%e1%bb%abng-nam-m%e1%bb%9bi-2/</link>
		<comments>http://jepoirrier.org/2012/01/20/chuc-m%e1%bb%abng-nam-m%e1%bb%9bi-2/#comments</comments>
		<pubDate>Fri, 20 Jan 2012 00:01:15 +0000</pubDate>
		<dc:creator>Jean-Etienne Poirrier</dc:creator>
				<category><![CDATA[My life]]></category>
		<category><![CDATA[Belgium]]></category>
		<category><![CDATA[Brussels]]></category>
		<category><![CDATA[Chúc mừng năm mới]]></category>
		<category><![CDATA[new year]]></category>
		<category><![CDATA[Tết]]></category>
		<category><![CDATA[Vietnam]]></category>

		<guid isPermaLink="false">http://jepoirrier.org/?p=1195</guid>
		<description><![CDATA[In three days (Jan 23rd, 2012) it will be the Vietnamese Tết. This year is the year of the Dragon. Happy New Year! For those interested there will be a celebration at Théâtre Marni in Brussels on January 28th afternoon. And BelVietnam is mentioning three celebrations in Brussels on January 21st, 29th and February 12th. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jepoirrier.org&#038;blog=23913474&#038;post=1195&#038;subd=jepoirrierdotorg&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>In three days (Jan 23rd, 2012) it will be the Vietnamese <a href="http://en.wikipedia.org/wiki/Tết">Tết</a>. This year is the year of the Dragon. <strong><em>Happy New Year!</em></strong></p>
<p style="text-align:center;"><a title="Dragon boats resting by jepoirrier, on Flickr" href="http://www.flickr.com/photos/jepoirrier/6117993624/"><img class="aligncenter" style="border-color:black;border-style:solid;border-width:1px;" src="http://farm7.staticflickr.com/6194/6117993624_452817333a.jpg" alt="Dragon boats resting" width="500" height="333" /></a></p>
<p>For those interested there will be a celebration at <a href="http://theatremarni.com/">Théâtre Marni</a> in Brussels on January 28th afternoon. And <a href="http://belvietnam.be/2012/01/15/celebrate-de-tet-vietnamese-new-year-with-us/">BelVietnam is mentioning three celebrations</a> in Brussels on January 21st, 29th and February 12th.</p>
<p><small>Photo credit: <a href="http://www.flickr.com/photos/jepoirrier/6117993624/in/set-72157612656453679">Dragon boats resting</a> on Sông Hương river, Huế, Vietnam (from <a href="http://www.flickr.com/photos/jepoirrier/">my photos on Flickr</a>, licence CC-by-sa)</small></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jepoirrierdotorg.wordpress.com/1195/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jepoirrierdotorg.wordpress.com/1195/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jepoirrierdotorg.wordpress.com/1195/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jepoirrierdotorg.wordpress.com/1195/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/jepoirrierdotorg.wordpress.com/1195/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/jepoirrierdotorg.wordpress.com/1195/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/jepoirrierdotorg.wordpress.com/1195/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/jepoirrierdotorg.wordpress.com/1195/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jepoirrierdotorg.wordpress.com/1195/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jepoirrierdotorg.wordpress.com/1195/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jepoirrierdotorg.wordpress.com/1195/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jepoirrierdotorg.wordpress.com/1195/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jepoirrierdotorg.wordpress.com/1195/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jepoirrierdotorg.wordpress.com/1195/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jepoirrier.org&#038;blog=23913474&#038;post=1195&#038;subd=jepoirrierdotorg&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://jepoirrier.org/2012/01/20/chuc-m%e1%bb%abng-nam-m%e1%bb%9bi-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/48d9f48f30cc166d0e8ffce4edfab09f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">jepoirrier</media:title>
		</media:content>

		<media:content url="http://farm7.staticflickr.com/6194/6117993624_452817333a.jpg" medium="image">
			<media:title type="html">Dragon boats resting</media:title>
		</media:content>
	</item>
		<item>
		<title>Projection of the American ageing population</title>
		<link>http://jepoirrier.org/2012/01/06/projection-of-the-american-aging-population/</link>
		<comments>http://jepoirrier.org/2012/01/06/projection-of-the-american-aging-population/#comments</comments>
		<pubDate>Fri, 06 Jan 2012 22:20:15 +0000</pubDate>
		<dc:creator>Jean-Etienne Poirrier</dc:creator>
				<category><![CDATA[Health]]></category>
		<category><![CDATA[Reading]]></category>
		<category><![CDATA[ageing]]></category>
		<category><![CDATA[elderly]]></category>
		<category><![CDATA[Immigration]]></category>
		<category><![CDATA[Old age]]></category>
		<category><![CDATA[population]]></category>
		<category><![CDATA[Retirement]]></category>
		<category><![CDATA[Saving]]></category>
		<category><![CDATA[United States]]></category>
		<category><![CDATA[US Census Bureau]]></category>
		<category><![CDATA[USA]]></category>

		<guid isPermaLink="false">http://jepoirrier.org/?p=1205</guid>
		<description><![CDATA[Yesterday, GOOD issued an infographic of America&#8217;s Aging Workforce (reproduced below). One of the key learning I take from it is that many Americans are unprepared for retirement. Indeed, the average American worker has saved $25,000 for retirement but it is estimated she/he will need $350,000 if she/he wishes to retire at 65 (i.e. 14 times more money!). I [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jepoirrier.org&#038;blog=23913474&#038;post=1205&#038;subd=jepoirrierdotorg&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Yesterday, <a href="http://www.good.is">GOOD</a> issued an <a href="http://www.good.is/post/infographic-america-s-aging-workforce/">infographic of America&#8217;s Aging Workforce</a> (reproduced below). One of the key learning I take from it is that many Americans are unprepared for retirement. Indeed, the average American worker has saved $25,000 for retirement but it is estimated she/he will need $350,000 if she/he wishes to retire at 65 (i.e. 14 times more money!).</p>
<p><a href="http://jepoirrierdotorg.files.wordpress.com/2012/01/120106-usa-ageing-good.jpg"><img class="aligncenter size-full wp-image-1206" style="border-color:black;border-style:solid;border-width:1px;" title="USA ageing, an infographic by GOOD" src="http://jepoirrierdotorg.files.wordpress.com/2012/01/120106-usa-ageing-good.jpg?w=497&h=298" alt="USA ageing, an infographic by GOOD" width="497" height="298" /></a></p>
<p>I was also wondering: after <a title="Yesterday was International Day of Older Persons" href="http://jepoirrier.org/2011/10/02/yesterday-was-international-day-of-older-persons/">China and Belgium</a>, how will the population age in the USA?</p>
<p>The <a href="http://www.census.gov">US Census Bureau</a> maintains <a href="http://www.census.gov/population/www/projections/">national projections of the population</a> and its <a href="http://www.census.gov/population/www/projections/2009projections.html">latest data is from 2009</a>. Among other things, it takes into account the resident population and demographic components of change (births, deaths, and net international migration). For international migration (in and out of the USA), there are four alternative assumptions (described in the <a href="http://www.census.gov/population/www/projections/methodstatement09.pdf">method statement</a>):</p>
<ul>
<li>in the High Net International Migration scenario, they increase the previously projected net international migration by a fixed ratio ;</li>
<li>in the Low Net International Migration scenario, they decrease the same previously projected net international migration by the same fixed ratio ;</li>
<li>the Constant Net International Migration scenario illustrates the effect a level trend in international migration would have if maintained over the projection period ;</li>
<li>finally, in the Zero Net International Migration, the number of immigrants and emigrants is held constant at a value of zero for the entire projection period, thus assuming a closed population and no movement of individuals into or out of the United States.</li>
</ul>
<p>By proceeding in this way, the overall number of migrants projected to enter or leave the population is (optionally) modified while maintaining the assumptions about the distributions of demographic characteristics.</p>
<p>Now, as expected, the American population is indeed aging. From approximately 12% in 2000 the population above 64 years old will increase to more than 21% in 2050 (in the constant scenario, see below). We also see an acceleration of the increasing number of elderly in the USA between 2010 and 2030. This US estimation is a bit lower than the <a title="Yesterday was International Day of Older Persons" href="http://jepoirrier.org/2011/10/02/yesterday-was-international-day-of-older-persons/">estimations for China (&gt;23%) and Belgium (&gt;25%)</a>.</p>
<p><a href="http://jepoirrierdotorg.files.wordpress.com/2012/01/120106-usa-aging1.jpg"><img class="aligncenter size-full wp-image-1208" title="US Census Bureau estimation of American population aging (2009)" src="http://jepoirrierdotorg.files.wordpress.com/2012/01/120106-usa-aging1.jpg?w=497&h=321" alt="US Census Bureau estimation of American population aging (2009)" width="497" height="321" /></a></p>
<p>In the graph above, I took the Constant Net International Migration scenario as I consider it as the most conservative. When one plots all the scenarii, we can see the difference is not so big: the US population above 64 years old in 2050 will be between 19% (High scenario) and 23% (Zero scenario) of the total US population (see below).</p>
<p><a href="http://jepoirrierdotorg.files.wordpress.com/2012/01/120106-usa-aging2.jpg"><img class="aligncenter size-full wp-image-1209" title="Influence of the different migration scenarii on US aging population projection (2009)" src="http://jepoirrierdotorg.files.wordpress.com/2012/01/120106-usa-aging2.jpg?w=497&h=342" alt="Influence of the different migration scenarii on US aging population projection (2009)" width="497" height="342" /></a></p>
<p>The main issue remains to maintain older people as much as possible the same levels of health and independence as they enjoyed during their active lives. As <a href="http://www.good.is/post/infographic-america-s-aging-workforce/">highlighted by GOOD</a>, America&#8217;s workforce will need to work well past age 65 to save enough money for retirement.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jepoirrierdotorg.wordpress.com/1205/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jepoirrierdotorg.wordpress.com/1205/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jepoirrierdotorg.wordpress.com/1205/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jepoirrierdotorg.wordpress.com/1205/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/jepoirrierdotorg.wordpress.com/1205/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/jepoirrierdotorg.wordpress.com/1205/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/jepoirrierdotorg.wordpress.com/1205/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/jepoirrierdotorg.wordpress.com/1205/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jepoirrierdotorg.wordpress.com/1205/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jepoirrierdotorg.wordpress.com/1205/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jepoirrierdotorg.wordpress.com/1205/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jepoirrierdotorg.wordpress.com/1205/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jepoirrierdotorg.wordpress.com/1205/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jepoirrierdotorg.wordpress.com/1205/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jepoirrier.org&#038;blog=23913474&#038;post=1205&#038;subd=jepoirrierdotorg&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://jepoirrier.org/2012/01/06/projection-of-the-american-aging-population/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/48d9f48f30cc166d0e8ffce4edfab09f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">jepoirrier</media:title>
		</media:content>

		<media:content url="http://jepoirrierdotorg.files.wordpress.com/2012/01/120106-usa-ageing-good.jpg" medium="image">
			<media:title type="html">USA ageing, an infographic by GOOD</media:title>
		</media:content>

		<media:content url="http://jepoirrierdotorg.files.wordpress.com/2012/01/120106-usa-aging1.jpg" medium="image">
			<media:title type="html">US Census Bureau estimation of American population aging (2009)</media:title>
		</media:content>

		<media:content url="http://jepoirrierdotorg.files.wordpress.com/2012/01/120106-usa-aging2.jpg" medium="image">
			<media:title type="html">Influence of the different migration scenarii on US aging population projection (2009)</media:title>
		</media:content>
	</item>
	</channel>
</rss>
