<?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>Sciolism Rocks</title>
	<atom:link href="http://leecreighton.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://leecreighton.wordpress.com</link>
	<description>Statistics, French, Writing, and Trivia</description>
	<lastBuildDate>Fri, 10 Apr 2009 04:43:55 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='leecreighton.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Sciolism Rocks</title>
		<link>http://leecreighton.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://leecreighton.wordpress.com/osd.xml" title="Sciolism Rocks" />
	<atom:link rel='hub' href='http://leecreighton.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Diagnose my Regression (SAS edition)</title>
		<link>http://leecreighton.wordpress.com/2009/03/20/diagnose-my-regression-sas-edition/</link>
		<comments>http://leecreighton.wordpress.com/2009/03/20/diagnose-my-regression-sas-edition/#comments</comments>
		<pubDate>Fri, 20 Mar 2009 22:13:00 +0000</pubDate>
		<dc:creator>Lee</dc:creator>
				<category><![CDATA[linkedin]]></category>
		<category><![CDATA[Mathematics]]></category>

		<guid isPermaLink="false">http://leecreighton.wordpress.com/?p=295</guid>
		<description><![CDATA[Frequently, statisticians have to act like doctors. We see statistical reports that try to describe something : how fast rumors spread based on how large a company is, or the relationship between nitrogen content and crop yield. Speed and gas usage. Almost anything you can think of. So today, put on your diagnostician&#8217;s cap and [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=leecreighton.wordpress.com&amp;blog=1898115&amp;post=295&amp;subd=leecreighton&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Frequently, statisticians have to act like doctors. We see statistical reports that try to describe something : how fast rumors spread based on how large a company is, or the relationship between nitrogen content and crop yield. Speed and gas usage. Almost anything you can think of.</p>
<p>So today, put on your diagnostician&#8217;s cap and look at the four relationships I show you here. To keep you from guessing, I&#8217;ve hidden the labels for the two variables, so you&#8217;ll be looking at Y1 and X1, Y2 and X2, Y3 and X3, and so on. Here&#8217;s the DATA step and PROC REG code to generate the output.</p>
<pre>
	<font color="blue">DATA</font> Anscombe;
	<font color="blue">INPUT </font>X1 Y1 X2 Y2 X3 Y3 X4 Y4;
	<font color="blue">Lines</font>;
	<font color="green">10  8.04  10  9.14  10  7.46  8  6.58
	8  6.95  8  8.14  8  6.77  8  5.76
	13  7.58  13  8.74  13  12.74  8  7.71
	9  8.81  9  8.77  9  7.11  8  8.84
	11  8.33  11  9.26  11  7.81  8  8.47
	14  9.96  14  8.1  14  8.84  8  7.04
	6  7.24  6  6.13  6  6.08  8  5.25
	4  4.26  4  3.1  4  5.39  19  12.5
	12  10.84  12  9.13  12  8.15  8  5.56
	7  4.82  7  7.26  7  6.42  8  7.91
	5  5.68  5  4.74  5  5.73  8  6.89 </font>
	;
	<font color="blue">RUN</font>;                                                                                                                                    

	<font color="blue">proc</font> reg;
	model Y1=X1;
	model Y2=X2;
	model Y3=X3;
	model Y4=X4;
	<font color="blue">run</font>; quit;
</pre>
<p>The PROC REG command fits the least-squares line to each set, giving me the equation of fit and all the statistics you could want. Click on any report or picture to see it in larger size.</p>
<p>Here&#8217;s Y1 vs X1:</p>
<p><a href="http://farm4.static.flickr.com/3144/3022806350_e8c5899949_o.png" title="View 'Y1vX1' on Flickr.com">
<div style="text-align:center;"><img src="http://farm4.static.flickr.com/3144/3022806350_8b32f05f31_m.jpg" alt="Y1vX1" border="0" width="240" height="151" /></div>
<p></a></p>
<p>I highlighted some typical statistics that statisticians might use in discussing how well this line fits. Circles in the picture show the equation of the line (essentially <em>y</em>=3&nbsp;+&nbsp;½<em>x</em>), the <em>R</em><sup>2</sup>(&#8773;&nbsp;0.666), and the <em>F</em>-statistic (&#8773;&nbsp;0.022). If you don&#8217;t know what these statistics are, bear with me. You&#8217;ll still get the joke.</p>
<p>Here&#8217;s Y2 by X2. Check the labels if you don&#8217;t believe me. : </p>
<p><a href="http://farm4.static.flickr.com/3228/3022806288_7b7e0fae25_o.png" title="View 'Y2vX2' on Flickr.com">
<div style="text-align:center;"><img src="http://farm4.static.flickr.com/3228/3022806288_85b7f868e3_m.jpg" alt="Y2vX2" border="0" width="240" height="147" /></div>
<p></a></p>
<p>Here&#8217;s Y3 vs X3.</p>
<p><a href="http://farm4.static.flickr.com/3239/3022241761_fd1987cdab_o.png" title="View 'Y3vX3' on Flickr.com">
<div style="text-align:center;"><img src="http://farm4.static.flickr.com/3239/3022241761_1d00543cd4_m.jpg" alt="Y3vX3" border="0" width="240" height="146" /></div>
<p></a></p>
<p>And Y4 by X4.</p>
<p><a href="http://farm4.static.flickr.com/3158/3022806326_3c65714365_o.png" title="View 'Y4vX4' on Flickr.com">
<div style="text-align:center;"><img src="http://farm4.static.flickr.com/3158/3022806326_7e7a0d4ae6_m.jpg" alt="Y4vX4" border="0" width="240" height="144" /></div>
<p></a></p>
<p>You should have noticed that all the statistics are identical. The line of best fit is pretty much  <em>y</em>&nbsp;=&nbsp;3&nbsp;+&nbsp;½<em>x</em>. And getting all those statistics to be the same, well, that&#8217;s something, right ?</p>
<p>Here&#8217;s the playing-doctor part. Consider the fact that you&#8217;ve got four patients (graphs) exhibiting identical symptoms. What can you tell me about the underlying causes?</p>
<p><span id="more-295"></span>
<p>It turns out, not much. I may be the master of reading regression output, but there are some things that absolutely require a graph. </p>
<p>I can add the following to my existing SAS code:</p>
<pre>
	<font color="blue">proc</font> sgscatter ;
	plot Y1*X1 Y2*X2 Y3*X3 Y4*X4 /reg;
	<font color="blue">run</font>;
</pre>
<p>Here are the four graphs, with their data points .</p>
<p><a href="http://farm4.static.flickr.com/3136/3023044852_6f8ed784ae_o.png" title="View 'sgscatter4' on Flickr.com">
<div style="text-align:center;"><img src="http://farm4.static.flickr.com/3136/3023044852_6f63e3ce78_m.jpg" alt="sgscatter4" border="0" width="240" height="180" /></div>
<p></a></p>
<ol>
<li>The first graph is exactly what you want to see in a regression. Points are reasonably dispersed around the line of best fit.</li>
<li>The second graph is clearly not a linear relationship. If I wanted to show off, I&#8217;d say that you could fit a second-degree polynomial, a parabola, a conic section, to this data. But I don&#8217;t want to show off, just say that if your data isn&#8217;t linear, you can&#8217;t fit a line to it. Either make the original data linear (it&#8217;s not cheating, really) or use another kind of model.</li>
<li>The third graph shows what happens when one point is an outlier.The single point is essentially pulling the least squares line upward. I would check that data point, since anyone can have a bad day when transcribing data. </li>
<li>The fourth graph is an even more extreme case of the third one.All the points line up along the vertical line <em>x</em>&nbsp;=&nbsp;8. Except one. And it <em>completely</em> determines the equation of the line. Move it anywhere, and the least-squares line follows.</li>
</ol>
<hr />
<p>An even better solution is to turn ODS graphics on at the start of your session:</p>
<pre>
	ods graphics on;
</pre>
<p>and let SAS give you pretty and appropriate graphics without you having to worry about them.</p>
<h6>Data is from Anscombe, F.J. (1973) <em>American Statistician</em> 27, 17-21.</h6>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/leecreighton.wordpress.com/295/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/leecreighton.wordpress.com/295/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/leecreighton.wordpress.com/295/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/leecreighton.wordpress.com/295/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/leecreighton.wordpress.com/295/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/leecreighton.wordpress.com/295/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/leecreighton.wordpress.com/295/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/leecreighton.wordpress.com/295/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/leecreighton.wordpress.com/295/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/leecreighton.wordpress.com/295/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/leecreighton.wordpress.com/295/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/leecreighton.wordpress.com/295/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/leecreighton.wordpress.com/295/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/leecreighton.wordpress.com/295/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=leecreighton.wordpress.com&amp;blog=1898115&amp;post=295&amp;subd=leecreighton&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://leecreighton.wordpress.com/2009/03/20/diagnose-my-regression-sas-edition/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a64cf0f84404fddc25f7a211669efc66?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Lee</media:title>
		</media:content>

		<media:content url="http://farm4.static.flickr.com/3144/3022806350_8b32f05f31_m.jpg" medium="image">
			<media:title type="html">Y1vX1</media:title>
		</media:content>

		<media:content url="http://farm4.static.flickr.com/3228/3022806288_85b7f868e3_m.jpg" medium="image">
			<media:title type="html">Y2vX2</media:title>
		</media:content>

		<media:content url="http://farm4.static.flickr.com/3239/3022241761_1d00543cd4_m.jpg" medium="image">
			<media:title type="html">Y3vX3</media:title>
		</media:content>

		<media:content url="http://farm4.static.flickr.com/3158/3022806326_7e7a0d4ae6_m.jpg" medium="image">
			<media:title type="html">Y4vX4</media:title>
		</media:content>

		<media:content url="http://farm4.static.flickr.com/3136/3023044852_6f63e3ce78_m.jpg" medium="image">
			<media:title type="html">sgscatter4</media:title>
		</media:content>
	</item>
		<item>
		<title>Rock Band (Classic Edition)</title>
		<link>http://leecreighton.wordpress.com/2009/03/20/rock-band-classic-edition-2/</link>
		<comments>http://leecreighton.wordpress.com/2009/03/20/rock-band-classic-edition-2/#comments</comments>
		<pubDate>Fri, 20 Mar 2009 22:12:19 +0000</pubDate>
		<dc:creator>Lee</dc:creator>
				<category><![CDATA[linkedin]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://leecreighton.wordpress.com/?p=293</guid>
		<description><![CDATA[Never count your lives. With my move to Publications, I&#8217;ve recently taken stock of the jobs I&#8217;ve had in the past. Not just at SAS, mind you, nor those throwaway jobs where you last only a couple of weeks. Real jobs, with real pay checks; jobs that make demarcations in your life. Here at SAS, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=leecreighton.wordpress.com&amp;blog=1898115&amp;post=293&amp;subd=leecreighton&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Never count your lives. With my move to Publications, I&#8217;ve recently taken stock of the jobs I&#8217;ve had in the past. Not just at SAS, mind you, nor those throwaway jobs where you last only a couple of weeks. Real jobs, with real pay checks; jobs that make demarcations in your life. Here at SAS, I&#8217;ve mostly been a writer. Before that, I was a teacher, at the high school and college levels. I&#8217;ve also been paid as a movie projectionist (which I doubt is a real job anymore), a cooking instructor, a stand-up comedian, a stand-up comedian who got no laughs for several gigs in a row (unintentional), a close-up magician, and perhaps some others that I&#8217;m not willing to admit to just yet.</p>
<p><a href="http://www.flickr.com/photos/96971719@N00/2958318929" title="View 'Band' on Flickr.com"><img src="http://farm4.static.flickr.com/3174/2958318929_cc125169f0_o.jpg" alt="Band" border="0" width="220" align="right" hspace="5" /></a>I spent some time this weekend with an old friend from one of those jobs playing Rock Band. For the uninitiated, the game involves staring at a TV screen with a plastic guitar &#8220;controller&#8221; around your neck, trying to push colored buttons in sync with the little colored chiclets that scroll down the screen, all 3-D-like, in tune with a rock-and-roll song that blasts in the background. After a brief eight to ten hours of this, pizza and adult beverages get involved as you contentedly congratulate yourself on your musical ability.</p>
<p>But I&#8217;ve been playing Rock Band guitar for many years, predating this game by more than a decade.</p>
<p><span id="more-293"></span><br />
<hr />
<h5>(Warning : Links from song names open in iTunes so you can preview them)</h5>
<p>What I mean by that, of course, is that I can play guitar and I cannot read music. Cartman (&#8220;Southpark&#8221;) may be correct when he says &#8220;playing real instruments is for old people,&#8221; but it&#8217;s more exciting and quite satisfying. Especially when you&#8217;re still single &#8212; you may not be a musician, but what the heck else do you have to do.</p>
<p>Rock Band partitions the complexity of its songs into &#8220;Easy&#8221;, &#8220;Medium&#8221;, &#8220;Hard&#8221;, and &#8220;Expert.&#8221; My Classic equivalents are:</p>
<h3>Easy</h3>
<p><a href="http://www.flickr.com/photos/96971719@N00/2959210046" title="View 'JP' on Flickr.com">
<div style="text-align:center;"><img src="http://farm4.static.flickr.com/3243/2959210046_e03077fce4_o.jpg" alt="JP" border="0" width="320" height="240" hspace="5" /></div>
<p></a></p>
<p>Every book store has chord-based versions of popular music. Sort of an all-in-one keyboard-chord combo special, it&#8217;s something you can strum along to while asking your friends  &#8220;Don&#8217;t you recognize it ? It&#8217;s Van Halen&#8221;. Here I show said simplification for <em>1984</em>&#8216;s <a href="http://phobos.apple.com/WebObjects/MZStore.woa/wa/viewAlbum?i=14781675&amp;id=14781635&amp;s=143441">&#8220;Jump&#8221;</a>. But you get past this kind of thing pretty quickly, unless singing <a href="http://phobos.apple.com/WebObjects/MZStore.woa/wa/viewAlbum?i=193196166&amp;id=193196109&amp;s=143441">&#8220;She&#8217;ll be Comin&#8217; &#8216;Round the Mountain&#8221;</a> for and afternoon appeals to you.</p>
<h3>Medium</h3>
<p>It&#8217;s a fact : guitar shops filled with pasty-skinned people in black are actually pretty cool places. Whilst in college, I stumbled into one where I discovered the miracle of <em>Guitar for the Practicing Musician</em>, a magazine that introduced me to tablature. Here&#8217;s my very first, impressively marked &#8220;$15 worth of guitar and bass transcriptions.&#8221;</p>
<div align="center"><a href="http://www.flickr.com/photos/leecreighton/2958319051/" title="GM by Lee Creighton, on Flickr"><img src="http://farm4.static.flickr.com/3044/2958319051_87fea66d90_o.jpg" width="320" height="263" /></a></div>
<p>Tablature is Rock Band for the 1980&#8242;s. Sheet upon sheet of music, showing you where to place your fingers, how to execute a palm mute, hammering on, pulling off, I mean the works. You&#8217;re at medium level when you can flawlessly Travis-pick your way through <a href="http://phobos.apple.com/WebObjects/MZStore.woa/wa/viewAlbum?i=193730684&amp;id=193730141&amp;s=143441">&#8220;Dust in the Wind&#8221;</a> with a straight face.</p>
<div align="center"><a href="http://www.flickr.com/photos/leecreighton/2958318969/" title="DITW by Lee Creighton, on Flickr"><img src="http://farm4.static.flickr.com/3065/2958318969_f203a03e2b_o.jpg" width="320" height="240" hspace="5" alt="DITW" /></a></div>
<h3>Hard</h3>
<p>I used to tune other people&#8217;s guitars for them, since I apparently had a good ear for that kind of thing. Fear not, though, as there are bunches of baubles that will bring you to perfect EADGBE every time. I think my iPhone will even tune a guitar these days.
<p>EADGBE, the notes that sounds on non-fretted (&#8220;open&#8221;) strings, comes from the Spanish influence on our modern guitar. It never occurred to me until many years into my playing that this tuning wasn&#8217;t handed down from on high. In fact, many players don&#8217;t use this tuning at all, or at least deviate from it regularly.</p>
<p>The most elementary non-standard tuning arises wen you lower the lowest E-string down to a D. That so-called &#8220;Dropped-D&#8221; tuning is everywhere. <a href="http://phobos.apple.com/WebObjects/MZStore.woa/wa/viewAlbum?i=5270962&amp;id=5270971&amp;s=143441">&#8220;Embryonic Journey&#8221;</a> (Jefferson Airplane), <a href="http://phobos.apple.com/WebObjects/MZStore.woa/wa/viewAlbum?i=85110069&amp;id=85110313&amp;s=143441">&#8220;Higher&#8221;</a> (Creed), and my favorite, <a href="http://phobos.apple.com/WebObjects/MZStore.woa/wa/viewAlbum?i=264698079&amp;id=264698018&amp;s=143441">&#8220;Midsummer&#8217;s Daydream&#8221;</a> by Triumph are good examples of the fullness that comes from this simple tuning change.</p>
<div align="center"><a href="http://www.flickr.com/photos/leecreighton/2958318997/" title="MD by Lee Creighton, on Flickr"><img src="http://farm4.static.flickr.com/3203/2958318997_39d1ef1df1_o.jpg" width="320" height="240" hspace="5" alt="MD" /></a></div>
<p>So once you can play a de-tuned guitar, you&#8217;re at the Hard level. Check out <a href="http://phobos.apple.com/WebObjects/MZStore.woa/wa/viewAlbum?i=382525&amp;id=382531&amp;s=143441">&#8220;Little Martha&#8221;</a> by the Allman Brothers : tuned so that the strings play an E major chord when they&#8217;re open. Or any of a thousand Rolling Stones songs (<a href="http://phobos.apple.com/WebObjects/MZStore.woa/wa/viewAlbum?i=76533482&amp;id=76533398&amp;s=143441">&#8220;Honky Tonk Women&#8221;</a>, <a href="http://phobos.apple.com/WebObjects/MZStore.woa/wa/viewAlbum?i=288555719&amp;id=288555693&amp;s=143441">&#8220;Start Me Up&#8221;</a>). Not that I remember hearing any of *them* on the radio.</p>
<h3>Expert</h3>
<p>Now, produce something. Reading tablature is passé; writing your own is hep. I figured I hit Expert level in Rock Band Classic when I wrote the tablature for the acoustic version of <a href="http://phobos.apple.com/WebObjects/MZStore.woa/wa/viewAlbum?i=170127&amp;id=170147&amp;s=143441">&#8220;Big Love&#8221;</a> by Fleetwood Mac, off their 1996 (almost-)unplugged <em>The Dance</em> album. Capoed at the 5t fret, Travis picked, and fast as lightning :</p>
<div align="center"><a href="http://www.flickr.com/photos/leecreighton/2959162590/" title="Tab by Lee Creighton, on Flickr"><img src="http://farm4.static.flickr.com/3142/2959162590_29e4df6197_o.jpg" width="320" height="240" hspace="5" alt="Tab" /></a></div>
<p>Unfortunately, I&#8217;ve probably forgotten more than I remember. And I&#8217;m spending my practice time tethered to a Wii. </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/leecreighton.wordpress.com/293/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/leecreighton.wordpress.com/293/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/leecreighton.wordpress.com/293/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/leecreighton.wordpress.com/293/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/leecreighton.wordpress.com/293/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/leecreighton.wordpress.com/293/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/leecreighton.wordpress.com/293/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/leecreighton.wordpress.com/293/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/leecreighton.wordpress.com/293/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/leecreighton.wordpress.com/293/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/leecreighton.wordpress.com/293/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/leecreighton.wordpress.com/293/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/leecreighton.wordpress.com/293/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/leecreighton.wordpress.com/293/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=leecreighton.wordpress.com&amp;blog=1898115&amp;post=293&amp;subd=leecreighton&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://leecreighton.wordpress.com/2009/03/20/rock-band-classic-edition-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a64cf0f84404fddc25f7a211669efc66?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Lee</media:title>
		</media:content>

		<media:content url="http://farm4.static.flickr.com/3174/2958318929_cc125169f0_o.jpg" medium="image">
			<media:title type="html">Band</media:title>
		</media:content>

		<media:content url="http://farm4.static.flickr.com/3243/2959210046_e03077fce4_o.jpg" medium="image">
			<media:title type="html">JP</media:title>
		</media:content>

		<media:content url="http://farm4.static.flickr.com/3044/2958319051_87fea66d90_o.jpg" medium="image" />

		<media:content url="http://farm4.static.flickr.com/3065/2958318969_f203a03e2b_o.jpg" medium="image">
			<media:title type="html">DITW</media:title>
		</media:content>

		<media:content url="http://farm4.static.flickr.com/3203/2958318997_39d1ef1df1_o.jpg" medium="image">
			<media:title type="html">MD</media:title>
		</media:content>

		<media:content url="http://farm4.static.flickr.com/3142/2959162590_29e4df6197_o.jpg" medium="image">
			<media:title type="html">Tab</media:title>
		</media:content>
	</item>
		<item>
		<title>Why you should care about this graph</title>
		<link>http://leecreighton.wordpress.com/2009/03/20/why-you-should-care-about-this-graph-2/</link>
		<comments>http://leecreighton.wordpress.com/2009/03/20/why-you-should-care-about-this-graph-2/#comments</comments>
		<pubDate>Fri, 20 Mar 2009 22:11:41 +0000</pubDate>
		<dc:creator>Lee</dc:creator>
				<category><![CDATA[linkedin]]></category>
		<category><![CDATA[Statistics]]></category>

		<guid isPermaLink="false">http://leecreighton.wordpress.com/?p=291</guid>
		<description><![CDATA[It&#8217;s boring. It&#8217;s black and white. It&#8217;s important. The graph shows the year that each country granted complete ballot access to women. That means that they could vote on every level (local, state, federal) and they could run for any of those offices, too. It should be a little startling how late these dates are. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=leecreighton.wordpress.com&amp;blog=1898115&amp;post=291&amp;subd=leecreighton&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div align="center"><a href="http://www.flickr.com/photos/leecreighton/2975708398/" title="Graph23 by Lee Creighton, on Flickr"><img src="http://farm4.static.flickr.com/3179/2975708398_19690f2300.jpg" width="283" height="500" alt="Graph23" /></a></div>
<p>It&#8217;s boring. It&#8217;s black and white. It&#8217;s important.</p>
<p><span id="more-291"></span><br />
<hr />
<p>The graph shows the year that each country granted complete ballot access to women. That means that they could vote on every level (local, state, federal) and they could run for any of those offices, too.</p>
<p>It should be a little startling how late these dates are. The 19th amendment to the U.S. constitution didn&#8217;t pass until 1920, and then only after failed votes in the U.S. House and Senate.</p>
<p>There are clusters after the two world wars : lots of countries came after the Great War (U.S., Canada, Germany) and many others after the Second World War (France, Italy, Belgium). None without a life-and-death struggle. Life and death &#8212; a little heavy handed, no ? </p>
<hr />
<p>No. Here&#8217;s a magazine from 1913, from France. <em>Fantasio</em> was a satirical, humorist, political magazine that existed in what would be the golden age of print journalism. Some of its images are so completely NSFW that I can&#8217;t post them. Here, though, is an article showing then-President Poincaré after he was &#8220;taken hostage&#8221; by the suffragettes (or suffragists, depending on your particular definition) during a visit to London. Remember : in neither country, nor in the U.S., could women vote in general. Click on the picture to download a PDF of the file.</p>
<p><a href="http://leecreighton.files.wordpress.com/2008/10/fantasio1913.pdf" title="View 'Fantasio1913' on Flickr.com">
<div style="text-align:center;"><img src="http://farm4.static.flickr.com/3231/2972407300_4841395588_o.gif" alt="Fantasio 1913" width="350" border="0"></div>
<p></a></p>
<p>Here you have the most powerful man in the free world <em>prisonnier des suffragettes</em>. A little farther along you see that only his diplomacy and skill saved the day, after he purposely waved off police protection. &#8220;But Monsieur Poincaré is an <em>homme d&#8217;esprit</em>. Instead of opposing at all, he welcomed the women with words of welcome.&#8221;</p>
<p>Further: &#8220;The response was made with such smiling good humor, unbridled energy and cordiality, that the suffragettes, now disarmed, abandoned the idea of going any further&#8230;&#8221;</p>
<p>Note the part that I&#8217;m not quoting, regarding the <em>terrible exploit de miss Davison</em>. When first assigned this reading, I passed by that little phrase with reckless abandon, concentrating more on sorting out the verb forms and idioms of the article. Now that I&#8217;ve pointed it out to you, do you know who she was, this miss Davison? Neither did I.</p>
<hr />
<p><img src="http://upload.wikimedia.org/wikipedia/commons/9/95/Emily_Davison.jpg" align="right" height="170" hspace="6"></p>
<p>Emily Davison was a leader of the suffragette movement from early on. Her <a href="http://en.wikipedia.org/wiki/Emily_Davison">Wikipedia page</a> shows that she allied herself with some of the more militant aspects of the movement, violently attacking the British Chancellor of the Eschecquer (&#8220;Secretary of the Treasury&#8221; when translated to American) and his home, hiding in a parliament cupboard (&#8220;closet&#8221;), and of course, spending time in jail. There, she continued all out in her protests, including throwing herself off a staircase and going on a <a href="http://upload.wikimedia.org/wikipedia/commons/4/48/Suffragette_cartoon_by_L.M._Glackens.jpg">hunger strike</a> that resulted in her being force-fed. I can only imagine what that little slice of heaven was like in the Dickensian-named <a href="http://en.wikipedia.org/wiki/Strangeways_Prison">Strtangeways Prison.</a></p>
<p>June 4, 1913, Epsom Derby. Think of the race scene in <em>My Fair Lady</em>. The horses neared Tattenham Corner, a dangerous spot for horses and jockeys alike, and the field began to thin out. Anmer, the horse owned by His Majesty George V was in back of field, close up to Nimbus, owned by a Frenchman.</p>
<p>For reasons still unclear, Emily Davison stepped out of the crowd at exactly the moment of Anmer&#8217;s passing, probably to attach a women&#8217;s movement banner onto the king&#8217;s horse as it passed. Nimbus swerved, but the King&#8217;s horse could not. Miss Davison was hit and knocked unconscious.</p>
<p>It&#8217;s not a difficult story to tell, but luckily, I don&#8217;t have to. <a href="http://www.youtube.com/watch?v=TH_r6-JpO9Q">Watch it yourself.</a> </p>
<p>She dies four days later. </p>
<p>That&#8217;s why you should care about my graph. The universal right to vote is both recent and palpable. Don&#8217;t forget that on November 4th, regardless of who you support.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/leecreighton.wordpress.com/291/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/leecreighton.wordpress.com/291/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/leecreighton.wordpress.com/291/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/leecreighton.wordpress.com/291/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/leecreighton.wordpress.com/291/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/leecreighton.wordpress.com/291/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/leecreighton.wordpress.com/291/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/leecreighton.wordpress.com/291/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/leecreighton.wordpress.com/291/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/leecreighton.wordpress.com/291/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/leecreighton.wordpress.com/291/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/leecreighton.wordpress.com/291/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/leecreighton.wordpress.com/291/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/leecreighton.wordpress.com/291/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=leecreighton.wordpress.com&amp;blog=1898115&amp;post=291&amp;subd=leecreighton&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://leecreighton.wordpress.com/2009/03/20/why-you-should-care-about-this-graph-2/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a64cf0f84404fddc25f7a211669efc66?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Lee</media:title>
		</media:content>

		<media:content url="http://farm4.static.flickr.com/3179/2975708398_19690f2300.jpg" medium="image">
			<media:title type="html">Graph23</media:title>
		</media:content>

		<media:content url="http://farm4.static.flickr.com/3231/2972407300_4841395588_o.gif" medium="image">
			<media:title type="html">Fantasio 1913</media:title>
		</media:content>

		<media:content url="http://upload.wikimedia.org/wikipedia/commons/9/95/Emily_Davison.jpg" medium="image" />
	</item>
		<item>
		<title>Explaining Least Squares</title>
		<link>http://leecreighton.wordpress.com/2009/03/20/explaining-least-squares/</link>
		<comments>http://leecreighton.wordpress.com/2009/03/20/explaining-least-squares/#comments</comments>
		<pubDate>Fri, 20 Mar 2009 22:11:19 +0000</pubDate>
		<dc:creator>Lee</dc:creator>
				<category><![CDATA[linkedin]]></category>
		<category><![CDATA[Statistics]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://leecreighton.wordpress.com/?p=289</guid>
		<description><![CDATA[If you head over to the JMP blog, you can see the following video that I made to explain the evasive concept of least-squares. I try to explain what is meany by a line of best fit, and how the term &#8220;least squares&#8221; gives us one. For those that are interested, I made this entry [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=leecreighton.wordpress.com&amp;blog=1898115&amp;post=289&amp;subd=leecreighton&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>If you head over to the <a href="http://blogs.sas.com/jmp/">JMP blog</a>, you can see the following video that I made to explain the evasive concept of least-squares. I try to explain what is meany by a line of best fit, and how the term &#8220;least squares&#8221; gives us one.</p>
<div align="center">

</div>
<p>For those that are interested, I made this entry using a JSL script (also available at the JMP blog), using my Macintosh, JMP 8, and the Mac-only software <a href="http://www.flip4mac.com/screenflow.htm">Screenflow</a>.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/leecreighton.wordpress.com/289/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/leecreighton.wordpress.com/289/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/leecreighton.wordpress.com/289/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/leecreighton.wordpress.com/289/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/leecreighton.wordpress.com/289/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/leecreighton.wordpress.com/289/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/leecreighton.wordpress.com/289/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/leecreighton.wordpress.com/289/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/leecreighton.wordpress.com/289/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/leecreighton.wordpress.com/289/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/leecreighton.wordpress.com/289/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/leecreighton.wordpress.com/289/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/leecreighton.wordpress.com/289/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/leecreighton.wordpress.com/289/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=leecreighton.wordpress.com&amp;blog=1898115&amp;post=289&amp;subd=leecreighton&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://leecreighton.wordpress.com/2009/03/20/explaining-least-squares/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a64cf0f84404fddc25f7a211669efc66?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Lee</media:title>
		</media:content>
	</item>
		<item>
		<title>California 2, France 0. Maybe.</title>
		<link>http://leecreighton.wordpress.com/2009/03/17/california-2-france-0-maybe/</link>
		<comments>http://leecreighton.wordpress.com/2009/03/17/california-2-france-0-maybe/#comments</comments>
		<pubDate>Tue, 17 Mar 2009 19:37:45 +0000</pubDate>
		<dc:creator>Lee</dc:creator>
				<category><![CDATA[linkedin]]></category>
		<category><![CDATA[Statistics]]></category>

		<guid isPermaLink="false">http://leecreighton.wordpress.com/?p=279</guid>
		<description><![CDATA[This past weekend, I pay-per-viewed a well-made little movie: Bottle Shock. It&#8217;s a dramatization of the well-known &#8220;Judgment of Paris,&#8221; a 1976 wine tasting, organized by British ex-pat Steven Spurrier. For the first time in history, California wines bested their French counterparts. In France. With French judges. Both reds and whites. Alan Rickman puckishly plays [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=leecreighton.wordpress.com&amp;blog=1898115&amp;post=279&amp;subd=leecreighton&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.flickr.com/photos/96971719@N00/3328567276" title="View 'Tasting' on Flickr.com"><img src="http://farm4.static.flickr.com/3654/3328567276_d52122ac52.jpg" border="0" width="300" /></a>This past weekend, I pay-per-viewed a well-made little movie: <em><a href="http://www.bottleshockthemovie.com/">Bottle Shock</a></em>. It&#8217;s a dramatization of the well-known &#8220;Judgment of Paris,&#8221; a 1976 wine tasting, organized by British ex-pat Steven Spurrier. For the first time in history, California wines bested their French counterparts. In France. With French judges. Both reds and whites.</p>
<p><a href="http://en.wikipedia.org/wiki/Alan_Rickman">Alan Rickman</a> puckishly plays Spurrier, and at the moment of revelation, I wondered: How did he score the ratings from the testers? In the film, it looks like he did a tiny bit of arithmetic on the back of one of the scoring cards. Turns out he just averaged the score of each judge, a statistically meaningless thing to do. (He later <a href="http://www.montelena.com/our_winery/paris_1996.html">acknowledged</a> this publicly.)</p>
<p>So my question is: If a more correct scoring method were used, would California still come out on top? I&#8217;ll use JMP to analyze this tasting survey to see which wines really rate. I&#8217;ll even examine the tasters themselves.<span id="more-279"></span></p>
<p>First, a quick example of why averaging is not allowed.</p>
<table>
<tr>
<td><strong>Judge 1</strong></td>
<td><strong>Judge 2</strong></td>
<td><strong>Judge 3</strong></td>
<td><strong>Average</strong></td>
</tr>
<tr>
<td>14</td>
<td>2</td>
<td>12</td>
<td><strong>9</strong></td>
</tr>
<tr>
<td>13</td>
<td>8</td>
<td>6</td>
<td><strong>9</strong></td>
</tr>
<tr>
<td>11</td>
<td>6</td>
<td>2</td>
<td><strong>9</strong></td>
</tr>
</table>
<p>Apparently, the three wines are tied for popularity. Look closer: Judge 1 prefers wine 1. Judge 3 really prefers wine 1. Judge 2 prefers wine 2. With two first-place wins, we should crown wine 1 the winner.</p>
<p>Averaging doesn&#8217;t take into account the fact that each judge operates using his or her own internal scale. We don&#8217;t know if Judge 2&#8242;s 6-rating is the same as Judge 3&#8242;s. Further, we don&#8217;t know what a 1-point difference means for each judge. And on and on. This is why most events that are scored by multiple judges (<a href="http://en.wikipedia.org/wiki/6.0_system">Figure Skating</a>, for example, or ratings from consumer magazines) use ranks (1st, 2nd, 3rd) rather than raw scores.</p>
<p>So I managed to find the scores for the two events<sup><a href="#36397" id="fn[reds]" title="see footnote [reds]">[reds]</a></sup><sup><a href="#36636" id="fn[whites]" title="see footnote [whites]">[whites]</a></sup>. Click to see larger views.</p>
<p><a href="http://www.flickr.com/photos/96971719@N00/3328737966/sizes/o/" title="View Red Wine Scores on Flickr.com">
<div style="text-align:center;"><img src="http://farm4.static.flickr.com/3077/3328737966_bf8b5e8e44.jpg" alt="Text-Scores-Reds" border="0" width="300" /></div>
<p></a></p>
<p><a href="http://www.flickr.com/photos/96971719@N00/3328737992/sizes/o/" title="View White Wine Scores on Flickr.com">
<div style="text-align:center;"><img src="http://farm4.static.flickr.com/3642/3328737992_ed99899631.jpg" alt="Text-Scores-White" border="0" width="300" /></div>
<p></a></p>
<p>They&#8217;re comparing California Cabernet Sauvignon against French Bordeaux, and California Chardonnay against French Burgandy. Not exactly the same, but close enough: two wines that are predominantly one (matching) grape. </p>
<p>Here you can see a graph of the scores from the two flights : red, then white.Click each to view a larger graph.</p>
<p><a href="http://www.flickr.com/photos/96971719@N00/3328712346/sizes/o/" title="View 'Raw-Reds' on Flickr.com">
<div style="text-align:center;"><img src="http://farm4.static.flickr.com/3415/3328712346_037440a629.jpg" alt="Raw-Reds" border="0" width="215" height="500" /></div>
<p></a></p>
<p><a href="http://www.flickr.com/photos/96971719@N00/3327876153/sizes/o/" title="View 'Raw-Whites' on Flickr.com">
<div style="text-align:center;"><img src="http://farm4.static.flickr.com/3360/3327876153_032983a4fb.jpg" alt="Raw-Whites" border="0" width="215" height="500" /></div>
<p></a></p>
<p>A couple of things to note: Stag&#8217;s Leap and Chateau Montelena, represented by red circles on each of these graphs, bounce around clearly on top. Both of these are California wines (the Chardonnay being the subject of the aforementioned movie). Also note the dismal rating of David Bruce (Regular) Chardonnay, which is consistently rated poorly and in fact given a zero by Pierre Brejoux.</p>
<p>Now, to use JMP for a legitimate scoring. The Distribution platform has a command to <strong>Save&nbsp;&gt;&nbsp;Ranks&nbsp;averaged</strong>, which converts each score to a rank from lowest to highest. Since there are ten wines, these will be numbers from 1 to 10. Note that this is backward for our scale : higher numbers are better. So, I simply subtract each number from 11 to convert it to a rating on a scale we can use. Again, click the image to see a larger version.</p>
<p><a href="http://www.flickr.com/photos/96971719@N00/3328981288/sizes/o/" title="View Red Ratings on Flickr.com">
<div style="text-align:center;"><img src="http://farm4.static.flickr.com/3623/3328981288_c15fcb3859.jpg" alt="Text-Ratings-Red" border="0" width="300" /></div>
<p></a></p>
<p><a href="http://www.flickr.com/photos/96971719@N00/3328146267/sizes/o/" title="View White Ratings on Flickr.com">
<div style="text-align:center;"><img src="http://farm4.static.flickr.com/3557/3328146267_569e25b512.jpg" alt="Text-Ratings-White" border="0" width="300" /></div>
<p></a></p>
<p>Now we&#8217;ve got something really useful: ranked scores that account for ties. The total of these ranked scores can now be interpreted. If a wine were so swimmingly, sportingly good and may I please have some more, if all the tasters rated it as perfect, the total ranking for eleven judges is 11 : eleven #1 ratings. If, on the other hand, the wine is pure plonk<sup><a href="#50159" id="fn[*]" title="see footnote [*]">[*]</a></sup>, <em>vin aigre</em><sup><a href="#50347" id="fn[**]" title="see footnote [**]">[**]</a></sup>, it would be tenth on everyone&#8217;s list and thus its total ranking would be 10&nbsp;&times;&nbsp;11&nbsp;=110. The inverted nature of this scale, where higher numbers are worse grades, is the source of the traditional title <em>Points Against</em>. This is a more appropriate measure for the rankings, and far superior to Spurrier&#8217;s original.</p>
<p>So how do the wines do on the new scale? First, the scores for the Reds:<br />
<table border="1" style="background-color:#FFFFFF;" width="300" cellpadding="3" cellspacing="3">
<tr>
<td>1. Stag&#8217;s Leap Wine Cellars</td>
<td>1973</td>
<td>USA</td>
<td>41</td>
</tr>
<tr>
<td>2. Château Montrose </td>
<td>1970</td>
<td>France</td>
<td>41.5</td>
</tr>
<tr>
<td>3. Château Mouton-Rothschild </td>
<td>1970</td>
<td>France</td>
<td>43</td>
</tr>
<tr>
<td>4. Château Haut-Brion </td>
<td>1970</td>
<td>France</td>
<td>49</td>
</tr>
<tr>
<td>5. Ridge Vineyards Monte Bello </td>
<td>1971</td>
<td>USA</td>
<td>55</td>
</tr>
<tr>
<td>6. Heitz Wine Cellars Martha&#8217;s Vineyard </td>
<td>1970</td>
<td>USA</td>
<td>70</td>
</tr>
<tr>
<td>7. Château Leoville-Las-Cases </td>
<td>1971</td>
<td>France</td>
<td>72.5</td>
</tr>
<tr>
<td>8. Freemark Abbey Winery </td>
<td>1969</td>
<td>USA</td>
<td>76</td>
</tr>
<tr>
<td>9. Mayacamas Vineyards </td>
<td>1971</td>
<td>USA</td>
<td>77.5</td>
</tr>
<tr>
<td>10. Clos du Val Winery </td>
<td>1972</td>
<td>USA</td>
<td>77.5</td>
</tr>
</table>
<p> And the whites:</p>
<table border="1" style="background-color:#FFFFFF;" width="300px" cellpadding="3" cellspacing="3">
<tr>
<td>1. Chateau Montelena</td>
<td>1973</td>
<td>USA</td>
<td>32.5</td>
</tr>
<tr>
<td>2. Mersault Charmes </td>
<td>1973</td>
<td>France</td>
<td>33.5</td>
</tr>
<tr>
<td>3. Chalone Vineyards</td>
<td>1974</td>
<td>USA</td>
<td>42</td>
</tr>
<tr>
<td>4. Spring Mountain </td>
<td>1973</td>
<td>USA</td>
<td>57</td>
</tr>
<tr>
<td>5. Freemark Abbey</td>
<td>1972</td>
<td>USA</td>
<td>60.5</td>
</tr>
<tr>
<td>6. Bâtard-Montrachet</td>
<td>1972</td>
<td>France</td>
<td>64</td>
</tr>
<tr>
<td>7. Puligny-Montrachet</td>
<td>1972</td>
<td>France</td>
<td>67.5</td>
</tr>
<tr>
<td>8. Beaune, Clos des Mouches </td>
<td>1973</td>
<td>France</td>
<td>68</td>
</tr>
<tr>
<td>9. Veedercrest </td>
<td>1972</td>
<td>USA</td>
<td>73.5</td>
</tr>
<tr>
<td>10. David Bruce (Regular) </td>
<td>1973</td>
<td>USA</td>
<td>106.5</td>
</tr>
</table>
<p>JMP 8 provides a neat-o visualization of these scores, a Cell Plot. Here they are for the reds and the whites.</p>
<p><a href="http://www.flickr.com/photos/96971719@N00/3329077808/sizes/o/" title="View Red Wine Rankings on Flickr.com">
<div style="text-align:center;"><img src="http://farm4.static.flickr.com/3539/3329077808_e17338b3a5_o.jpg" alt="Ranking-Reds" border="0" width="353" /></div>
<p></a></p>
<p><a href="http://www.flickr.com/photos/96971719@N00/3328243047/sizes/o/" title="View 'Ranking-Whites' on Flickr.com">
<div style="text-align:center;"><img src="http://farm4.static.flickr.com/3297/3328243047_11886a6c73_o.jpg" alt="Ranking-Whites" border="0" width="353" height="295" /></div>
<p></a></p>
<p>In the rightmost column, you see Points Against ranked in ascending order (so the best wine is on top). This graph lets you see how each taster rated each wine, and how that agrees with the Points Against score.</p>
<p>Finally, JMP lets me calculate a reliability measurement. Essentially, this is a measure of internal consistency that asks if these expert wine raters seem to be in agreement. The scale is from zero to one, with one being perfect. I&#8217;d say anything around 0.7&ndash;0.8 is a reasonable score to say the raters are consistent. The sample size is a little small, but still, these numbers are encouraging.</p>
<p><a href="http://www.flickr.com/photos/96971719@N00/3328263825/sizes/o/" title="View 'Cronbachs-Reds' on Flickr.com">
<div style="text-align:center;"><img src="http://farm4.static.flickr.com/3032/3328263825_d97c08bcc8_o.jpg" alt="Cronbachs-Reds" border="0" width="300" /></div>
<p></a></p>
<p><a href="http://www.flickr.com/photos/96971719@N00/3329098336/sizes/o/" title="View 'Cronbachs-White' on Flickr.com">
<div style="text-align:center;"><img src="http://farm4.static.flickr.com/3360/3329098336_c826c383e1_o.jpg" alt="Cronbachs-White" border="0" width="300" /></div>
<p></a></p>
<p>Summation? The USA still has the highest-ranked wines. Repeated tastings over the past 30 years have confirmed these results.</p>
<p>If you&#8217;re interested in this subject, maybe wanting even more statistical analyses, have a look at the <a href="http://en.wikipedia.org/wiki/Judgment_of_Paris_(wine)">wikipedia page</a>, and any of the <a href="http://www.liquidasset.com/corsica.htm">mountain</a> <a href="http://www.liquidasset.com/tasting.html">of</a> <a href="http://www.liquidasset.com/lindley.htm">reports</a> at <a href="http://www.liquidasset.com/">liquidasset.com</a>. <a href="http://www.montelena.com/our_winery/paris_1976.html">Chateau Montelena</a> has some press clippings from the time, and Amazon has the Paperback edition of George Taber&#8217;s <a href="http://www.amazon.com/gp/product/0743247515/sr=8-2/qid=1148397077/ref=pd_bbs_2/102-6986452-8602501?%5Fencoding=UTF8">book</a>.</p>
<hr />
<li><a href="http://en.wikipedia.org/wiki/Judgment_of_Paris_(wine)#Red_wines_2">Red Wines from Wikipedia</a> <a href="#fn[reds]" title="return to article">↑</a></li>
<li><a href="http://www.liquidasset.com/lindley.htm">White Wines from Table 2 here</a> <a href="#fn[whites]" title="return to article">↑</a></li>
<li>Why do we call bad wine <em>plonk</em>? During World War I, much of France was still speaking in local dialects, despite the fact that they learned standard French in school. Regional pronunciations being what they were , <em>vin blanc</em> got reduced to <em>blanc</em> which came to describe the soldier&#8217;s ration. The poor pronunciation migrated to England as <em>plonk</em>.<a href="#fn[*]" title="return to article">↑</a></li>
<li><em>Vin aigre</em> literally means spoiled wine. Again, a migration north turned this into Vin-egar or vinegar. <a href="#fn[**]" title="return to article">↑</a></li>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/leecreighton.wordpress.com/279/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/leecreighton.wordpress.com/279/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/leecreighton.wordpress.com/279/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/leecreighton.wordpress.com/279/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/leecreighton.wordpress.com/279/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/leecreighton.wordpress.com/279/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/leecreighton.wordpress.com/279/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/leecreighton.wordpress.com/279/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/leecreighton.wordpress.com/279/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/leecreighton.wordpress.com/279/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/leecreighton.wordpress.com/279/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/leecreighton.wordpress.com/279/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/leecreighton.wordpress.com/279/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/leecreighton.wordpress.com/279/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=leecreighton.wordpress.com&amp;blog=1898115&amp;post=279&amp;subd=leecreighton&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://leecreighton.wordpress.com/2009/03/17/california-2-france-0-maybe/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a64cf0f84404fddc25f7a211669efc66?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Lee</media:title>
		</media:content>

		<media:content url="http://farm4.static.flickr.com/3654/3328567276_d52122ac52.jpg" medium="image" />

		<media:content url="http://farm4.static.flickr.com/3077/3328737966_bf8b5e8e44.jpg" medium="image">
			<media:title type="html">Text-Scores-Reds</media:title>
		</media:content>

		<media:content url="http://farm4.static.flickr.com/3642/3328737992_ed99899631.jpg" medium="image">
			<media:title type="html">Text-Scores-White</media:title>
		</media:content>

		<media:content url="http://farm4.static.flickr.com/3415/3328712346_037440a629.jpg" medium="image">
			<media:title type="html">Raw-Reds</media:title>
		</media:content>

		<media:content url="http://farm4.static.flickr.com/3360/3327876153_032983a4fb.jpg" medium="image">
			<media:title type="html">Raw-Whites</media:title>
		</media:content>

		<media:content url="http://farm4.static.flickr.com/3623/3328981288_c15fcb3859.jpg" medium="image">
			<media:title type="html">Text-Ratings-Red</media:title>
		</media:content>

		<media:content url="http://farm4.static.flickr.com/3557/3328146267_569e25b512.jpg" medium="image">
			<media:title type="html">Text-Ratings-White</media:title>
		</media:content>

		<media:content url="http://farm4.static.flickr.com/3539/3329077808_e17338b3a5_o.jpg" medium="image">
			<media:title type="html">Ranking-Reds</media:title>
		</media:content>

		<media:content url="http://farm4.static.flickr.com/3297/3328243047_11886a6c73_o.jpg" medium="image">
			<media:title type="html">Ranking-Whites</media:title>
		</media:content>

		<media:content url="http://farm4.static.flickr.com/3032/3328263825_d97c08bcc8_o.jpg" medium="image">
			<media:title type="html">Cronbachs-Reds</media:title>
		</media:content>

		<media:content url="http://farm4.static.flickr.com/3360/3329098336_c826c383e1_o.jpg" medium="image">
			<media:title type="html">Cronbachs-White</media:title>
		</media:content>
	</item>
		<item>
		<title>Obama&#8217;s Stimulus Package</title>
		<link>http://leecreighton.wordpress.com/2009/03/05/obamas-stimulus-package/</link>
		<comments>http://leecreighton.wordpress.com/2009/03/05/obamas-stimulus-package/#comments</comments>
		<pubDate>Thu, 05 Mar 2009 18:43:50 +0000</pubDate>
		<dc:creator>Lee</dc:creator>
				<category><![CDATA[linkedin]]></category>
		<category><![CDATA[Statistics]]></category>

		<guid isPermaLink="false">http://leecreighton.wordpress.com/?p=273</guid>
		<description><![CDATA[Using this data, I constructed a graph that shows the amount of money as allocated by Obama&#8217;s Stimulus Package. (Click to see a larger graph) One thing to notice is the scale : 0 is the darkest blue, up to bright red being the top ($150 billion). The Middle-Class Tax Credit is so large that [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=leecreighton.wordpress.com&amp;blog=1898115&amp;post=273&amp;subd=leecreighton&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Using <a href="http://is.gd/lXoK">this data</a>, I constructed a graph that shows the amount of money as allocated by Obama&#8217;s Stimulus Package.</p>
<p>(Click to see a larger graph)</p>
<p><a href="http://www.flickr.com/photos/96971719@N00/3330641529/sizes/o/" title="View 'Stimulus-Package' on Flickr.com">
<div style="text-align:center;"><img src="http://farm4.static.flickr.com/3639/3330641529_f85b946783.jpg" alt="Stimulus-Package" border="0" width="300" /></div>
<p></a></p>
<p>One thing to notice is the scale : 0 is the darkest blue, up to bright red being the top ($150 billion). The Middle-Class Tax Credit is so large that little comes close to it. The Medicaid to States and State Fiscal Relief sections are in the middle, with blue as almost everything else.</p>
<p>I sort of overloaded this graph, with size and color showing the same thing ($US).</p>
<p>As a less-exciting-yet-more-readable graph, I present what is known as a Multi-Var graph or Variability Chart. It shows the details of the spending much better.</p>
<p><a href="http://www.flickr.com/photos/96971719@N00/3330685763/sizes/o/" title="View 'Stimulus-Package-Detail' on Flickr.com">
<div style="text-align:center;"><img src="http://farm4.static.flickr.com/3304/3330685763_5eea36d87e.jpg" alt="Stimulus-Package-Detail" border="0" width="300" /></div>
<p></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/leecreighton.wordpress.com/273/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/leecreighton.wordpress.com/273/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/leecreighton.wordpress.com/273/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/leecreighton.wordpress.com/273/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/leecreighton.wordpress.com/273/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/leecreighton.wordpress.com/273/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/leecreighton.wordpress.com/273/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/leecreighton.wordpress.com/273/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/leecreighton.wordpress.com/273/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/leecreighton.wordpress.com/273/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/leecreighton.wordpress.com/273/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/leecreighton.wordpress.com/273/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/leecreighton.wordpress.com/273/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/leecreighton.wordpress.com/273/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=leecreighton.wordpress.com&amp;blog=1898115&amp;post=273&amp;subd=leecreighton&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://leecreighton.wordpress.com/2009/03/05/obamas-stimulus-package/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a64cf0f84404fddc25f7a211669efc66?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Lee</media:title>
		</media:content>

		<media:content url="http://farm4.static.flickr.com/3639/3330641529_f85b946783.jpg" medium="image">
			<media:title type="html">Stimulus-Package</media:title>
		</media:content>

		<media:content url="http://farm4.static.flickr.com/3304/3330685763_5eea36d87e.jpg" medium="image">
			<media:title type="html">Stimulus-Package-Detail</media:title>
		</media:content>
	</item>
		<item>
		<title>One Hit Wonder</title>
		<link>http://leecreighton.wordpress.com/2009/01/13/one-hit-wonder/</link>
		<comments>http://leecreighton.wordpress.com/2009/01/13/one-hit-wonder/#comments</comments>
		<pubDate>Tue, 13 Jan 2009 19:43:58 +0000</pubDate>
		<dc:creator>Lee</dc:creator>
				<category><![CDATA[Trivia]]></category>

		<guid isPermaLink="false">http://leecreighton.wordpress.com/?p=267</guid>
		<description><![CDATA[Here, a graphical representation of a One Hit Wonder. Witness the raw power of Commander Cody and the Lost Planet Airmen.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=leecreighton.wordpress.com&amp;blog=1898115&amp;post=267&amp;subd=leecreighton&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Here, a graphical representation of a One Hit Wonder. Witness the raw power of Commander Cody and the Lost Planet Airmen.</p>
<p><a href="http://www.flickr.com/photos/96971719@N00/3194187819" title="View 'CCandLPA' on Flickr.com">
<div style="text-align:center;"><img src="http://farm4.static.flickr.com/3461/3194187819_3820b849c3.jpg" width="400" alt="CCandLPA" border="0"></div>
<p></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/leecreighton.wordpress.com/267/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/leecreighton.wordpress.com/267/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/leecreighton.wordpress.com/267/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/leecreighton.wordpress.com/267/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/leecreighton.wordpress.com/267/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/leecreighton.wordpress.com/267/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/leecreighton.wordpress.com/267/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/leecreighton.wordpress.com/267/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/leecreighton.wordpress.com/267/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/leecreighton.wordpress.com/267/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/leecreighton.wordpress.com/267/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/leecreighton.wordpress.com/267/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/leecreighton.wordpress.com/267/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/leecreighton.wordpress.com/267/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=leecreighton.wordpress.com&amp;blog=1898115&amp;post=267&amp;subd=leecreighton&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://leecreighton.wordpress.com/2009/01/13/one-hit-wonder/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a64cf0f84404fddc25f7a211669efc66?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Lee</media:title>
		</media:content>

		<media:content url="http://farm4.static.flickr.com/3461/3194187819_3820b849c3.jpg" medium="image">
			<media:title type="html">CCandLPA</media:title>
		</media:content>
	</item>
		<item>
		<title>Far ?</title>
		<link>http://leecreighton.wordpress.com/2009/01/12/far/</link>
		<comments>http://leecreighton.wordpress.com/2009/01/12/far/#comments</comments>
		<pubDate>Mon, 12 Jan 2009 15:37:50 +0000</pubDate>
		<dc:creator>Lee</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://leecreighton.wordpress.com/?p=265</guid>
		<description><![CDATA[I was recently reminded that &#8220;far away&#8221; is contextual, and has changed somewhat over time. Two stories, one in last week&#8217;s News and Observer, the other written in 1829 [FR (HTML) &#124; EN(PDF)]. The News and observer story tells of a Hooverville that exists in the woods off of Poole Road in Raleigh. It seems [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=leecreighton.wordpress.com&amp;blog=1898115&amp;post=265&amp;subd=leecreighton&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><img src="http://upload.wikimedia.org/wikipedia/commons/7/71/Corse_map.png" align="right"></p>
<p>I was recently reminded that &#8220;far away&#8221; is contextual, and has changed somewhat over time. Two stories, one in last week&#8217;s <a href="http://www.newsobserver.com/1253/story/1357246.html">News and Observer</a>, the other written in 1829 [<a href="http://ww3.ac-poitiers.fr/lettres/Docpeda/LP/BEP/OeuvInt/MatFalcone/MatFalconeText.htm">FR (HTML)</a> | <a href="http://www.horrormasters.com/Text/a0639.pdf">EN(PDF)</a>].</p>
<p><span id="more-265"></span></p>
<p>The News and observer story tells of a <a href="http://en.wikipedia.org/wiki/Hooverville">Hooverville</a> that exists in the woods off of Poole Road in Raleigh. It seems so distant to me &#8212; a woods deep enough to hide a rather large camp of people. Yet it&#8217;s practically in my back yard : one town over. At first blush, I thought I wouldn&#8217;t have much in common with these men, but the more I think of it, the closer I get. Said another way : I don&#8217;t have a lot of money in the bank. I have zero investments. I&#8217;m unmarried. There aren&#8217;t too many steps between me, the homeowner, to me <em>SDF</em> (<em>sans domicile fixé</em>, the French classification for those we would call &#8220;homeless&#8221;)</p>
<p>Prosper Merimée was a writer straight out of the late 18th / early 19th century. All the world was romanticism &#8212; Ô, lac! rochers muets ! forêt obscure ! &#8212; yet he wanted to leave behind the fjord-pining and try to imbue his stories with a little realism.</p>
<p><em>Mateo Falcone</em> is one of his earlier works (he&#8217;s remembered for writing <em>Carmen</em>, later made into an opera) and it is remarkable on several levels. It occurs in a place that, to modern French readers, is really close : the island of Corsica. Yet Merimée describes it as a thick, impenetrable wooded island (a <em>mâquis</em>), full of criminals and ne&#8217;er do wells who survive off the land, using their wits and their rifles.</p>
<blockquote><p>If you have killed a man, go into the mâquis of Porto-Vecchio. With a good gun and plenty of powder and balls, you can live there in safety. Do not forget a brown cloak furnished with a hood, which will serve you as both cover an mattress. the shepherds will give you chestnuts, milk, and cheese, and you will have nothing to fear from justice nor the relatives of the dead except when it is necessary for you to descend to the city to replenish your ammunition.</p></blockquote>
<p>Of course Merimée had never been to Corsica, so this was all either pure fiction, or the best that he could pull from traveler&#8217;s guides and newspapers like the N&amp;O. Realism to him was just a real-sounding situation that may or may not be reality. But even after nearly 200 years, Merimée could be researching from our contemporary local story:</p>
<blockquote><p>It&#8217;s a comfortable life once you get used to rain-wet hair and achy bones, they explain. But nobody bothers them, not even the police.</p></blockquote>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/leecreighton.wordpress.com/265/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/leecreighton.wordpress.com/265/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/leecreighton.wordpress.com/265/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/leecreighton.wordpress.com/265/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/leecreighton.wordpress.com/265/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/leecreighton.wordpress.com/265/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/leecreighton.wordpress.com/265/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/leecreighton.wordpress.com/265/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/leecreighton.wordpress.com/265/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/leecreighton.wordpress.com/265/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/leecreighton.wordpress.com/265/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/leecreighton.wordpress.com/265/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/leecreighton.wordpress.com/265/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/leecreighton.wordpress.com/265/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=leecreighton.wordpress.com&amp;blog=1898115&amp;post=265&amp;subd=leecreighton&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://leecreighton.wordpress.com/2009/01/12/far/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a64cf0f84404fddc25f7a211669efc66?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Lee</media:title>
		</media:content>

		<media:content url="http://upload.wikimedia.org/wikipedia/commons/7/71/Corse_map.png" medium="image" />
	</item>
		<item>
		<title>My manager made me eat one of these</title>
		<link>http://leecreighton.wordpress.com/2008/12/16/my-manager-made-me-eat-one-of-these/</link>
		<comments>http://leecreighton.wordpress.com/2008/12/16/my-manager-made-me-eat-one-of-these/#comments</comments>
		<pubDate>Tue, 16 Dec 2008 20:22:16 +0000</pubDate>
		<dc:creator>Lee</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://leecreighton.wordpress.com/?p=263</guid>
		<description><![CDATA[Here&#8217;s the wrapper: Note that it&#8217;s not just a mystery-flavored DumDum, but that it is Artificial MYSTERY FLAVOR™. I tasted it. I didn&#8217;t know &#8220;Blue Suede&#8221; was a flavor.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=leecreighton.wordpress.com&amp;blog=1898115&amp;post=263&amp;subd=leecreighton&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s the wrapper:</p>
<p><a href="http://www.flickr.com/photos/96971719@N00/3114227054" title="View 'Dum' on Flickr.com">
<div style="text-align:center;"><img src="http://farm4.static.flickr.com/3036/3114227054_928446498e.jpg" alt="Dum" border="0" width="500" height="453" /></div>
<p></a></p>
<p>Note that it&#8217;s not just a mystery-flavored DumDum, but that it is Artificial MYSTERY FLAVOR™.</p>
<p>I tasted it. I didn&#8217;t know &#8220;Blue Suede&#8221; was a flavor.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/leecreighton.wordpress.com/263/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/leecreighton.wordpress.com/263/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/leecreighton.wordpress.com/263/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/leecreighton.wordpress.com/263/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/leecreighton.wordpress.com/263/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/leecreighton.wordpress.com/263/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/leecreighton.wordpress.com/263/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/leecreighton.wordpress.com/263/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/leecreighton.wordpress.com/263/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/leecreighton.wordpress.com/263/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/leecreighton.wordpress.com/263/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/leecreighton.wordpress.com/263/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/leecreighton.wordpress.com/263/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/leecreighton.wordpress.com/263/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=leecreighton.wordpress.com&amp;blog=1898115&amp;post=263&amp;subd=leecreighton&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://leecreighton.wordpress.com/2008/12/16/my-manager-made-me-eat-one-of-these/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a64cf0f84404fddc25f7a211669efc66?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Lee</media:title>
		</media:content>

		<media:content url="http://farm4.static.flickr.com/3036/3114227054_928446498e.jpg" medium="image">
			<media:title type="html">Dum</media:title>
		</media:content>
	</item>
		<item>
		<title>Obama and Daylight Savings Time</title>
		<link>http://leecreighton.wordpress.com/2008/11/23/obama-and-daylight-savings-time/</link>
		<comments>http://leecreighton.wordpress.com/2008/11/23/obama-and-daylight-savings-time/#comments</comments>
		<pubDate>Sun, 23 Nov 2008 22:40:07 +0000</pubDate>
		<dc:creator>Lee</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://leecreighton.wordpress.com/?p=261</guid>
		<description><![CDATA[It makes little sense to re-blog something from Boing-Boing, but I&#8217;m thrilled to see the following post from them. Turns out, according to two academics on the NYT Op-Ed page, there is little scientific proof that this reduces energy consumption. It also turns out that this practice could be wasteful, a bit annoying, and a [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=leecreighton.wordpress.com&amp;blog=1898115&amp;post=261&amp;subd=leecreighton&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>It makes little sense to re-blog something from Boing-Boing, but I&#8217;m thrilled to see the following <a href="http://www.boingboing.net/2008/11/21/obama-might-get-rid.html">post</a> from them.</p>
<blockquote><p>
Turns out, according to two academics on the NYT Op-Ed page, there is little scientific proof that this reduces energy consumption. It also turns out that this practice could be wasteful, a bit annoying, and a lot of people want to get rid of it.<br />
A study in Indiana, a state that recently started DST, showed an overall increase of 1 percent in residential electricity use with occasional increases of 2 to 4 percent in late spring and early fall. So much for conserving energy.
</p></blockquote>
<p>Get rid of Daylight Savings Time !</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/leecreighton.wordpress.com/261/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/leecreighton.wordpress.com/261/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/leecreighton.wordpress.com/261/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/leecreighton.wordpress.com/261/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/leecreighton.wordpress.com/261/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/leecreighton.wordpress.com/261/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/leecreighton.wordpress.com/261/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/leecreighton.wordpress.com/261/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/leecreighton.wordpress.com/261/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/leecreighton.wordpress.com/261/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/leecreighton.wordpress.com/261/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/leecreighton.wordpress.com/261/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/leecreighton.wordpress.com/261/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/leecreighton.wordpress.com/261/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=leecreighton.wordpress.com&amp;blog=1898115&amp;post=261&amp;subd=leecreighton&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://leecreighton.wordpress.com/2008/11/23/obama-and-daylight-savings-time/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a64cf0f84404fddc25f7a211669efc66?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Lee</media:title>
		</media:content>
	</item>
	</channel>
</rss>
