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

<channel>
	<title>Michael Schulte-Mecklenbeck</title>
	<atom:link href="http://www.schulte-mecklenbeck.com/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://www.schulte-mecklenbeck.com</link>
	<description></description>
	<lastBuildDate>Wed, 18 Aug 2010 13:22:08 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Where you end up, having a PhD</title>
		<link>http://www.schulte-mecklenbeck.com/?p=128</link>
		<comments>http://www.schulte-mecklenbeck.com/?p=128#comments</comments>
		<pubDate>Wed, 18 Aug 2010 13:20:29 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[Science]]></category>

		<guid isPermaLink="false">http://www.schulte-mecklenbeck.com/?p=128</guid>
		<description><![CDATA[The illustrated guide from Kindergarten to PhD &#8230; http://matt.might.net/articles/phd-school-in-pictures/#resources]]></description>
			<content:encoded><![CDATA[<p>The illustrated guide  from Kindergarten to PhD &#8230;<br />
<a href="http://matt.might.net/articles/phd-school-in-pictures/#resources">http://matt.might.net/articles/phd-school-in-pictures/#resources</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schulte-mecklenbeck.com/?feed=rss2&amp;p=128</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>two good things come together</title>
		<link>http://www.schulte-mecklenbeck.com/?p=126</link>
		<comments>http://www.schulte-mecklenbeck.com/?p=126#comments</comments>
		<pubDate>Thu, 15 Jul 2010 08:49:54 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[LaTeX]]></category>
		<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://www.schulte-mecklenbeck.com/?p=126</guid>
		<description><![CDATA[http://docs.latexlab.org/docs LaTeX and Google Docs together in one nice (free)application &#8211; this is a brilliant idea, which gives you the power of LaTeX combined with the excellent collaboration possiblities of Google Docs &#8211; if I would have a button it would say &#8220;I like&#8221; &#8230; Here is a screenshot from the project page &#8211; with [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://docs.latexlab.org/docs">http://docs.latexlab.org/docs</a><br />
LaTeX and Google Docs together in one nice (free)application &#8211; this is a brilliant idea, which gives you the power of LaTeX combined with the excellent collaboration possiblities of Google Docs &#8211; if I would have a button it would say &#8220;I like&#8221; &#8230;</p>
<p>Here is a screenshot from the project page &#8211; with LaTeX code on one side and the final output on the other &#8230;<br />
<img alt="" src="http://reactor.bloo.us/images/ll-screen-2.png" title="Screenshot LaTeX and Google Docs" class="alignnone" width="300" height="150" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schulte-mecklenbeck.com/?feed=rss2&amp;p=126</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>R and the World Cup</title>
		<link>http://www.schulte-mecklenbeck.com/?p=119</link>
		<comments>http://www.schulte-mecklenbeck.com/?p=119#comments</comments>
		<pubDate>Tue, 13 Jul 2010 07:48:38 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[R]]></category>
		<category><![CDATA[Statistics]]></category>

		<guid isPermaLink="false">http://www.schulte-mecklenbeck.com/?p=119</guid>
		<description><![CDATA[Across the street at the Revolution blog a nice example of using R with data from the cloud (see another post on this topic here) shows us the distribution of fouls during the just finished World Cup in a nice barchart. Even more interesting than the fact that Holland rules this category is the way [...]]]></description>
			<content:encoded><![CDATA[<p>Across the street at the <a href="http://blog.revolutionanalytics.com/2010/07/charting-the-world-cup.html">Revolution blog</a> a nice example of using R with data from the cloud (see another post on this topic <a href="http://www.schulte-mecklenbeck.com/?p=105">here</a>) shows us the distribution of fouls during the just finished World Cup in a nice barchart. Even more interesting than the fact that Holland rules this category is the way the data are collected from a Google spreadsheet page. </p>
<p>With the following simple code line:<br />
<code>teams <- read.csv("http://spreadsheets.google.com/pub?key=tOM2qREmPUbv76waumrEEYg&#038;single=true&#038;gid=0&#038;range=A1%3AAG15&#038;output=csv")<br />
</code><br />
We can read a specific part from a spreadsheet hosted on Google into our local R environment. Some deatils: "&#038;gid=" (sheet number) and "%range=" (cell ranges: A1%3A ) and "&#038;output=csv" to download in CSV format.</p>
<p>With some more lines, using the awsome <a href="http://had.co.nz/ggplot2/">ggplot2</a><br />
<code><br />
library(qqplot2)<br />
FOULS=t(DF2)[,c('Fouls')]<br />
qplot(names(FOULS), as.numeric(FOULS), geom="bar", stat='identity', fill=Fouls) + xlab('Country') + ylab('Fouls') + coord_flip() + scale_fill_continuous(low="black", high="red") + labs(fill='Fouls')</code></p>
<p>We can produce the following chart:<br />
<a href="http://www.schulte-mecklenbeck.com/wp-content/uploads/2010/07/World_Cup_2010_Fouls.png"><img src="http://www.schulte-mecklenbeck.com/wp-content/uploads/2010/07/World_Cup_2010_Fouls-300x300.png" alt="" title="World_Cup_2010_Fouls" width="300" height="300" class="alignleft size-medium wp-image-121" /></a></p>
<p>Two things to note:<br />
<code>c('Fouls')</code> is a handy way to address columns in a R data frame by name<br />
<code>scale_fill_continuous(low="black", high="red") </code> takes care of the color coding of the bars in reference to the number of fouls </p>
<p>Easy and straight forward - ah - great job Spain <img src='http://www.schulte-mecklenbeck.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  !!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.schulte-mecklenbeck.com/?feed=rss2&amp;p=119</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>R goes cloud</title>
		<link>http://www.schulte-mecklenbeck.com/?p=105</link>
		<comments>http://www.schulte-mecklenbeck.com/?p=105#comments</comments>
		<pubDate>Sat, 17 Apr 2010 06:24:03 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[Methods]]></category>
		<category><![CDATA[R]]></category>
		<category><![CDATA[Statistics]]></category>
		<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://www.schulte-mecklenbeck.com/?p=105</guid>
		<description><![CDATA[Jeroen Ooms did for R what Google did for editing documents online. He created several software packages that help running R with a nice frontend over the Internet. I first learned about Jeroen&#8217;s website through his implementation of ggplot2 &#8211; this page is useful to generate graphs with the powerful ggplot2 package without R knowledge, [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.stat.ucla.edu/~jeroen/cv.html">Jeroen Ooms</a> did for R what Google did for editing documents online. He created several software packages that help running R with a nice frontend over the Internet.<br />
I first learned about Jeroen&#8217;s website through his <a href="http://www.stat.ucla.edu/~jeroen/ggplot2/">implementation of ggplot2 </a> &#8211; this page is useful to generate graphs with the powerful ggplot2 package without R knowledge, however it is even more helpful to learn ggplot2 code with the View-code panel function which displays the underlying R code. If you are into random effect models another package connected to <a href="http://www.stat.ucla.edu/~jeroen/lme4.html">lme4</a> will guide you step by step through model building.<br />
I think this is a great step forward for R and cloud computing! </p>
]]></content:encoded>
			<wfw:commentRss>http://www.schulte-mecklenbeck.com/?feed=rss2&amp;p=105</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>LaTeX looks more scientific</title>
		<link>http://www.schulte-mecklenbeck.com/?p=97</link>
		<comments>http://www.schulte-mecklenbeck.com/?p=97#comments</comments>
		<pubDate>Thu, 18 Mar 2010 13:42:04 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[LaTeX]]></category>

		<guid isPermaLink="false">http://www.schulte-mecklenbeck.com/?p=97</guid>
		<description><![CDATA[There are long discussions on the benefits of LaTeX over Word, but this statement from a (not too serious) paper of Andrew Gelman (a Professor of Statistics and Political Sciences at Columbia University) hits the spot:]]></description>
			<content:encoded><![CDATA[<p>There are long discussions on the benefits of LaTeX over Word, but this statement from a (not too serious) <a href="http://www.stat.columbia.edu/~gelman/research/unpublished/zombies.pdf">paper</a> of <a href="http://www.stat.columbia.edu/~gelman/">Andrew Gelman</a> (a Professor of Statistics and Political Sciences at Columbia University) hits the spot: <a href="http://www.schulte-mecklenbeck.com/wp-content/uploads/2010/03/Screen-shot-2010-03-18-at-2.29.06-PM1.png"><img src="http://www.schulte-mecklenbeck.com/wp-content/uploads/2010/03/Screen-shot-2010-03-18-at-2.29.06-PM1-300x56.png" alt="" title="Screen shot 2010-03-18 at 2.29.06 PM" width="300" height="56" class="alignleft size-medium wp-image-99" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schulte-mecklenbeck.com/?feed=rss2&amp;p=97</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Accepting to fail (in the name of science)</title>
		<link>http://www.schulte-mecklenbeck.com/?p=91</link>
		<comments>http://www.schulte-mecklenbeck.com/?p=91#comments</comments>
		<pubDate>Tue, 22 Dec 2009 12:00:24 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[Science]]></category>

		<guid isPermaLink="false">http://www.schulte-mecklenbeck.com/?p=91</guid>
		<description><![CDATA[Very interesting article in WIRED on accepting failure and how ignoring it changes the way scientists make progress (or not). Good theme for new years resolutions &#8230; In the meantime: Happy Holidays!]]></description>
			<content:encoded><![CDATA[<p>Very interesting <a href="http://www.wired.com/magazine/2009/12/fail_accept_defeat/all/1">article in WIRED</a> on accepting failure and how ignoring it changes the way scientists make progress (or not).</p>
<p>Good theme for new years resolutions &#8230;</p>
<p>In the meantime: Happy Holidays!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.schulte-mecklenbeck.com/?feed=rss2&amp;p=91</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How WEIRD subjects can be overcome &#8230; a comment on Henrich et al.</title>
		<link>http://www.schulte-mecklenbeck.com/?p=83</link>
		<comments>http://www.schulte-mecklenbeck.com/?p=83#comments</comments>
		<pubDate>Sat, 12 Dec 2009 13:11:14 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[Decision Making]]></category>
		<category><![CDATA[Methods]]></category>
		<category><![CDATA[Science]]></category>

		<guid isPermaLink="false">http://www.schulte-mecklenbeck.com/?p=83</guid>
		<description><![CDATA[Joe Henrich published a target article in BBS talking about how economics and psychology base their research on WEIRD (Western, Educated, Industrialized, Rich and Democratic) subjects. Here is the whole abstract: &#8212; Behavioral scientists routinely publish broad claims about human psychology and behavior in the world’s top journals based on samples drawn entirely from Western, [...]]]></description>
			<content:encoded><![CDATA[<p>Joe <a href="http://www.psych.ubc.ca/~henrich/home.html">Henrich</a> published a target article in BBS talking about how economics and psychology base their research on WEIRD (Western, Educated, Industrialized, Rich and Democratic) subjects. </p>
<p>Here is the whole abstract:<br />
&#8212;<br />
Behavioral scientists routinely publish broad claims about human psychology and behavior in the world’s top journals based on samples drawn entirely from Western, Educated, Industrialized, Rich and Democratic (WEIRD) societies. Researchers—often implicitly—assume that either there is little variation across human populations, or that these “standard subjects” are as representative of the species as any other population. Are these assumptions justified? Here, our review of the comparative database from across the behavioral sciences suggests both that there is substantial variability in experimental results across populations and that WEIRD subjects are particularly unusual compared with the rest of the species—frequent outliers. The domains reviewed include visual perception, fairness, cooperation, spatial reasoning, categorization and inferential induction, moral reasoning, reasoning styles, self-concepts and related motivations, and the heritability of IQ. The findings suggest that members of WEIRD societies, including young children, are among the least representative populations one could find for generalizing about humans. Many of these findings involve domains that are associated with fundamental aspects of psychology, motivation, and behavior—hence, there are no obvious a priori grounds for claiming that a particular behavioral phenomenon is universal based on sampling from a single subpopulation. Overall, these empirical patterns suggests that we need to be less cavalier in addressing questions of human nature on the basis of data drawn from this particularly thin, and rather unusual, slice of humanity. We close by proposing ways to structurally re-organize the behavioral sciences to best tackle these challenges.<br />
&#8212;</p>
<p>I would like to make three suggestions that could help to overcome the era of WEIRD subjects and generate more reliable and representative data. These suggestions will mainly touch contrasts 2, 3 and 4 elaborated by Henrich, Heine and Norezayan. While my suggestions tackle these contrasts from a technical and experimental perspective they do not provide a general solution for the first contrast on industrialized versus small scale societies. Here are my suggestions: 1) replications in multiple labs, 2) internet based experimentation and 3) drawing representative samples from a population.<br />
The first suggestion, replication in multiple labs, foremost touches aspects like replication, multiple populations and open data access. For a publication in a journal a replication of an experiment in a different lab would be obligatory. The replication would then be published with the original, e.g., in the form of a comment. This would ensure that other research labs in other states or countries are involved and very different parts of the population could be sampled. Also results of experiments would be freely available to the public and the data sharing problem in Psychology, as described in the target article, but also in other fields like Medicine (Savage &#038; Vieckers, 2009) would be a problem of the past. Of course such a step would be closely linked with certain standards on the one hand in building experiments and on the other hand in storing data. While a standard way to build experiments seems unlikely there are many methods available in computer science to store data in a reusable, for example through the usage of XML (Extensible Markup Language).<br />
The second suggestion is based on the drawing of representative samples from the population. As described in the target article, research often suffers from a restriction to extreme subgroups from the population, from which generalized results are drawn. However, there is published work that overcomes these restrictions. As an example I would like to use the Hertwig, Zangerl, Biedert and Margraf (2008) paper on probabilistic numeracy. The authors based their study on a random-quote sample from the Swiss population including indicators as language, area where participant is living, gender and age. To fulfill all the necessary criteria 1000 participants were recruited using telephone interviews. Such studies are certainly more expensive and somewhat restricted to simpler experimental setups (Hertwig et al., used telephone interviews based on questionnaires).<br />
The third suggestion adds additional data collection in a second location: the Internet. The emphasis in the last sentence should be set on ‘add’. Data collection solely Internet based is of course possible, already often performed and published in high impact journals. Online experimentation is technically much less demanding than ten years ago due to the availability of ready made solutions for questionnaires or even experiments. The point I would like to make here should not be built on a separation of lab and online based experiments. My suggestion combines these two research locations and enables a researcher to profit from the many benefits arising. A possible scenario could include running an experiment in the laboratory first to guarantee, among other things, high control on the situation in order to show an effect with a small, restricted sample. In a second step the experiment is transferred to the Web and run online, admittedly giving away some of the control but  providing the large benefit of having access to a diverse, large samples of participants from different populations easily. As an example I would like to point to a recent blog and related experiments started by Paolacci and Warglien (2009) at the University of Venice, Italy. These researchers started replicating well known experiments from the decision making literature like framing, anchoring or the conjunction fallacy with a service called the Mechanical Turk provided by Amazon. This service is based on the idea of crowdsourcing (outsourcing a task to a large group of people) and lets a researcher have easy access to a large group of motivated participants.<br />
Some final words on the combination and possible restrictions of the three suggestions. What would a combination of all three suggestions look like? It would be a replication of experiments, using representative samples of different populations in online experiments. This seems useful from a data quality, logistics and prize point of view. However, several issues were left untouched in my discussion, such as the question of independence of the second lab for replication studies, the restriction of representative samples to one country (as opposed to multiple comparisons as routinely found in, e.g., anthropological studies), the differences between online and lab based experimentation or the instances where equipment needed for an experiments (e.g., eye trackers or fMRI) does not allow for online experimentation. Keeping that in mind the above suggestions draw an idealized picture of how to run experiments and re-use the collected data, nevertheless I would argue that such steps could help to reduce the percentage of WEIRD subjects in research substantially.</p>
<p>References<br />
<a href="http://www.psycho.unibas.ch/index_html?content=person&#038;detail=cv&#038;abteilung=Angewandte&#038;person=Hertwig">Hertwig</a>, R., Zangerl, M.A., Biedert, E., &#038; Margraf, J. (2008). The Public’s Probabilistic Numeracy: How Tasks, Education and Exposure to Games of Chance Shape It. Journal of Behavioral Decision Making, 21, 457-570.</p>
<p>Paolacci, G., &#038;  Warglien, M. (2009). <a href="http://experimentalturk.wordpress.com/">Experimental turk: A blog on social science experiments on Amazon Mechanical Turk</a>. Accessed on November 17th 2009: </p>
<p>Savage, C.J., &#038; Vickers, A.J. (2009). Empirical Study of Data Sharing by Authors Publishing in PLoS Journals. PLoS ONE 4(9): e7078.doi:10.1371/journal.pone.0007078 </p>
]]></content:encoded>
			<wfw:commentRss>http://www.schulte-mecklenbeck.com/?feed=rss2&amp;p=83</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Lattice versus ggplot2</title>
		<link>http://www.schulte-mecklenbeck.com/?p=65</link>
		<comments>http://www.schulte-mecklenbeck.com/?p=65#comments</comments>
		<pubDate>Sun, 25 Oct 2009 03:15:50 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[R]]></category>
		<category><![CDATA[Statistics]]></category>

		<guid isPermaLink="false">http://www.schulte-mecklenbeck.com/?p=65</guid>
		<description><![CDATA[I really liked Lattice for generating graphs in R until I saw what ggplot2 can do &#8230; One of the big differences between the two is the theory on which ggplot2 is based upon. There are clear modular building blocks that can be applied in a consistent manner on any graph generated. Both packages are [...]]]></description>
			<content:encoded><![CDATA[<p>I really liked Lattice for generating graphs in R until I saw what ggplot2 can do &#8230;<br />
One of the big differences between the two is the theory on which ggplot2 is based upon. There are clear modular building blocks that can be applied in a consistent manner on any graph generated. Both packages are extremely versatile but at the end of the day I think ggplot2 provides a clearer structure and hence more flexibility &#8230;</p>
<p><a href="http://had.co.nz/">Hadley Wickham</a> (the author of ggplot2) has a book out on <a href="http://www.amazon.com/gp/product/0387981403?ie=UTF8&#038;tag=hadlwick-20&#038;linkCode=as2&#038;camp=1789&#038;creative=390957&#038;creativeASIN=0387981403">ggplot2</a> at Springer. Some sample chapters can be downloaded from his <a href="http://had.co.nz/ggplot2/book/">webpage</a>.</p>
<p>The <a href="http://learnr.wordpress.com/2009/06/28/ggplot2-version-of-figures-in-lattice-multivariate-data-visualization-with-r-part-1/">learningR</a> people have a long series of posts where they provide ggplot2 code for nearly all the graphs in the Lattice book &#8230; worth taking a look at!<br />
Here is an in depth </p>
]]></content:encoded>
			<wfw:commentRss>http://www.schulte-mecklenbeck.com/?feed=rss2&amp;p=65</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>R flashmob</title>
		<link>http://www.schulte-mecklenbeck.com/?p=68</link>
		<comments>http://www.schulte-mecklenbeck.com/?p=68#comments</comments>
		<pubDate>Mon, 07 Sep 2009 06:07:06 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[R]]></category>
		<category><![CDATA[Statistics]]></category>

		<guid isPermaLink="false">http://www.schulte-mecklenbeck.com/?p=68</guid>
		<description><![CDATA[From: The R Flashmob Project Subject: R Flashmob #2 You are invited to take part in R Flashmob, the project that makes the world a better place by posting helpful questions and answers about the R statistical language to the programmer’s Q &#038; A site stackoverflow.com Please forward this to other people you know who [...]]]></description>
			<content:encoded><![CDATA[<p>From: The R Flashmob Project<br />
Subject: R Flashmob #2</p>
<p>You are invited to take part in R Flashmob, the project that makes the<br />
world a better place by posting helpful questions and answers about the<br />
R statistical language to the programmer’s Q &#038; A site stackoverflow.com</p>
<p>Please forward this to other people you know who might like to join.</p>
<p>FAQ</p>
<p>Q. Why would I want to join an inexplicable R mob?</p>
<p>A. Tons of other people are doing it.</p>
<p>Q. Why else?</p>
<p>A. Stackoverflow was built specifically for handling programming questions.<br />
It’s a better mousetrap. It offers search (and is well indexed by search engines),<br />
tagging, voting, the ability to choose the “best” answer to a question, and the ability to<br />
edit questions and answers as technology progresses. It has a karma system to<br />
reward people who are happy to help and discourage MLJs (mailing list jerks).</p>
<p>Q. Do the organizers of this MOB have any commercial interest in stackoverflow?</p>
<p>A. None at all. We’re just convinced it is the best way to help and promote R. All<br />
the content submitted to stackoverflow is protected by a Creative Commons<br />
CC-Wiki License, meaning anyone is free to copy, distribute, transmit, and<br />
remix the information on stackoverflow. All the content on stackoverflow is<br />
regularly made available for download by the public.</p>
<p>INSTRUCTIONS – R MOB #2<br />
Location: stackoverflow.com<br />
Start Date: Tuesday, September 8th, 2009<br />
Start Time:<br />
10:04 AM – US Pacific<br />
11:04 AM – US Mountain<br />
12:04 PM – US Central<br />
1:04 PM – US Eastern<br />
6:04 PM – UK<br />
7:04 PM – Continental W. Europe<br />
5:04 AM (Weds) – New Zealand (birthplace of R)<br />
Duration: 50 minutes</p>
<p>(1) At some point during the day on September 8th, synchronize your watch to</p>
<p>http://timeanddate.com/worldclock/personal.html?cities=137,75,64,179,136,37,22</p>
<p>(2) The mob should form at precisely 4 minutes past the hour and not beforehand.</p>
<p>(3) At 4 minutes past the hour, you should arrive at stackoverflow.com, log in,<br />
and post 3 R questions. Be sure to tag the questions “R”. See the posting<br />
guidelines at http://stackoverflow.com/faq to understand what makes a good<br />
question.</p>
<p>(4) Follow R Flashmob updates at http://twitter.com/rstatsmob</p>
<p>(5) Post twitter messages tagged #rstats and #rstatsmob during the mob,<br />
providing links to your questions.</p>
<p>(6) During the R MOB, you can chat with other participants on the #R channel<br />
on IRC (freenode). To do this, install the Chatzilla extension on Firefox.<br />
Click “freenode” on the main screen. Then type /join #R in the field at the<br />
bottom of the screen. Then chat.</p>
<p>(7) If you finish posting your three questions within the 50 minutes, stick<br />
 around to answer questions and give “up votes” to good questions and answers.</p>
<p>(8) IMPORTANT: After posting, sign the R Flashmob guestbook at</p>
<p>http://bit.ly/6F8B2</p>
<p>(9) Return to what you would otherwise have been doing. Await<br />
instructions for R MOB #3.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.schulte-mecklenbeck.com/?feed=rss2&amp;p=68</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flashlight paper draft</title>
		<link>http://www.schulte-mecklenbeck.com/?p=50</link>
		<comments>http://www.schulte-mecklenbeck.com/?p=50#comments</comments>
		<pubDate>Mon, 13 Jul 2009 09:20:25 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[Papers]]></category>

		<guid isPermaLink="false">http://www.schulte-mecklenbeck.com/?p=50</guid>
		<description><![CDATA[We submitted our Flashlight paper today. Find a draft at the address below: Schulte-Mecklenbeck, Michael , Murphy, Ryan O. and Hutzler, Florian,Flashlight &#8211; an Online Eye-Tracking Tool(July 13, 2009). Available at SSRN: http://ssrn.com/abstract=1433225 The software will be uploaded to the project page http://schulte-mecklenbeck.com/flashlight today, too. Have fun playing with it!]]></description>
			<content:encoded><![CDATA[<p>We submitted our Flashlight paper today. Find a draft at the address below:<br />
Schulte-Mecklenbeck, Michael , Murphy, Ryan O. and Hutzler, Florian,Flashlight &#8211; an Online Eye-Tracking Tool(July 13, 2009). Available at SSRN: <a href="http://ssrn.com/abstract=1433225">http://ssrn.com/abstract=1433225<br />
</a><br />
The software will be uploaded to the project page <a href="http://schulte-mecklenbeck.com/flashlight ">http://schulte-mecklenbeck.com/flashlight </a>today, too.</p>
<p>Have fun playing with it!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.schulte-mecklenbeck.com/?feed=rss2&amp;p=50</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
