<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.3.1" -->
<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/"
	>

<channel>
	<title>Izabela Korwel</title>
	<link>http://izabela.korwel.net</link>
	<description>Things making my days funny, iritating, or simply strange</description>
	<pubDate>Thu, 02 Oct 2008 20:14:59 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.3.1</generator>
	<language>en</language>
			<item>
		<title>Data transformation in R</title>
		<link>http://izabela.korwel.net/2008/08/23/data-transformation-in-r/</link>
		<comments>http://izabela.korwel.net/2008/08/23/data-transformation-in-r/#comments</comments>
		<pubDate>Sat, 23 Aug 2008 19:28:16 +0000</pubDate>
		<dc:creator>izabela</dc:creator>
		
		<category><![CDATA[R project]]></category>

		<guid isPermaLink="false">http://izabela.korwel.net/2008/08/23/data-transformation-in-r/</guid>
		<description><![CDATA[I just dug out from the bottom of my drawer a very old set of data. The story is long, but in an essence what I am trying to do is to make the data look normal (normally distributed). Let&#8217;s see how it would progress in R.
Step 1- I drew Q-Q plots for all my [...]]]></description>
			<content:encoded><![CDATA[<p>I just dug out from the bottom of my drawer a very old set of data. The story is long, but in an essence what I am trying to do is to make the data look normal (normally distributed). Let&#8217;s see how it would progress in R.<br />
Step 1- I drew Q-Q plots for all my 73 variables only to discover, that 5 look decently close to normal. Most of them look long-tail skewed, long-tail symmetric at best:</p>
<p><a href='http://izabela.korwel.net/wp-content/uploads/2008/06/slide1.BMP' title='Non-transformed data'><img src='http://izabela.korwel.net/wp-content/uploads/2008/06/slide1.BMP' alt='Non-transformed data' /></a></p>
<p>For anybody interested, two simple commands in R:</p>
<p><em>qqnorm(variable1, main=&#8217;text you want above plot&#8217;)<br />
qqline(variable1)</em></p>
<p>Step 2- basic thing to do, log transformation:</p>
<p><em>log.data <- log(data)</em></p>
<p>and re-check the Q-Q plots. Seemed that the transformation helped the long-tailed skewed data:</p>
<p><a href='http://izabela.korwel.net/wp-content/uploads/2008/06/slide2.BMP' title='Log transformation'><img src='http://izabela.korwel.net/wp-content/uploads/2008/06/slide2.BMP' alt='Log transformation' /></a></p>
<p>but not the symmetric. It also seemed to mess up previously looking normal data :(. Anyway, 17 variables still needed to be taken care of.</p>
<p>Step 3- when I was at it, I tried square root transformation, with effect similar as above. It mostly helped the long-tailed skewed, especially the ones with outliers on this end. By the way, to do it in R (I know,it&#8217;s  basic):</p>
<p><em>sqrt(data)</em></p>
<p>Step 4 - looking through some literature, I found <a href="http://www.sciencedirect.com/science?_ob=ArticleURL&#038;_udi=B6V8V-47YXTXT-2&#038;_user=440026&#038;_rdoc=1&#038;_fmt=&#038;_orig=search&#038;_sort=d&#038;view=c&#038;_acct=C000020939&#038;_version=1&#038;_urlVersion=0&#038;_userid=440026&#038;md5=c5d17383ca41e025960379b5cd8b4253">a paper</a> with idea of hyperbolic sinus (sinh) or inverse hyperbolic sinus (asinh) transformations for symmetric non-normal data. The idea is to do it on median adjusted data. </p>
<p>Step 5- I got ready for some power transformations.<br />
<em><a href="http://stat.ethz.ch/R-manual/R-patched/library/MASS/html/boxcox.html">Boxcox</a></em> in MASS library works only with <em>lm</em> and <em>aov</em> models, so I dismissed it quickly.<br />
I Googled <a href="https://stat.ethz.ch/pipermail/bioconductor/2005-March/008154.html">bctrans</a> command in <a href="http://stat.ethz.ch/R-manual/R-patched/library/MASS/html/boxcox.html">alr3 package</a>. Error quickly stopped me:<br />
<em>Error in optim(start, neg.kernel.profile.logL, hessian = TRUE, method = &#8220;L-BFGS-B&#8221;,  :<br />
L-BFGS-B needs finite values of &#8216;fn&#8217;</em><br />
Looks like maybe two variables are too similar, as suggested <a href="https://stat.ethz.ch/pipermail/bioconductor/2005-March/008154.html">here</a>?</p>
<p>Before I figured out Box-Cox in R, the project went back into the drawer. Anyway, some thoughts on data transformations by a chemist, not statistician&#8230;.<br />
What I find interesting is that in case of multivariate data set, like mine, you have all kind of distributions, and some are closer and some are further from normality, almost each one is of its kind. By trying to apply one transformation to all of them, you also affect them all.<br />
Just to compare how different transformations affected my &#8220;good&#8221; and &#8220;bad&#8221; data:</p>
<p><a href='http://izabela.korwel.net/wp-content/uploads/2008/07/slide3.BMP' title='Tranformations comparison'><img src='http://izabela.korwel.net/wp-content/uploads/2008/07/slide3.BMP' alt='Tranformations comparison' /></a></p>
<p>And I am not convinced that this is a good thing. I also realize that statisticians used it for years and probably proved it superior to not transformed data. But I would love to see some comments from people working with &#8220;real life&#8221; problems.</p>
<p>Technorati Tags: <a href="http://technorati.com/tag/normally+distributed" rel="tag">normally distributed</a>, <a href="http://technorati.com/tag/Q-Q+plots" rel="tag">Q-Q plots</a>, <a href="http://technorati.com/tag/long-tail+skewed" rel="tag">long-tail skewed</a>, <a href="http://technorati.com/tag/long-tail+symmetric" rel="tag">long-tail symmetric</a>, <a href="http://technorati.com/tag/log+transformation" rel="tag">log transformation</a>, <a href="http://technorati.com/tag/power+transformations" rel="tag">power transformations</a></p>]]></content:encoded>
			<wfw:commentRss>http://izabela.korwel.net/2008/08/23/data-transformation-in-r/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Terrible NA&#8217;s</title>
		<link>http://izabela.korwel.net/2008/07/03/terrible-nas/</link>
		<comments>http://izabela.korwel.net/2008/07/03/terrible-nas/#comments</comments>
		<pubDate>Thu, 03 Jul 2008 20:32:18 +0000</pubDate>
		<dc:creator>izabela</dc:creator>
		
		<category><![CDATA[R project]]></category>

		<guid isPermaLink="false">http://izabela.korwel.net/2008/07/03/terrible-nas/</guid>
		<description><![CDATA[In R project, most of stuff is simple unless you have NA values (missing data). I struggled with them already in PCA. This time, I am not talking about any complicated programming, models or what not. No. All I want to do in this moment is to calculate a median!
I discovered on more than one [...]]]></description>
			<content:encoded><![CDATA[<p>In R project, most of stuff is simple unless you have NA values (missing data). I struggled with them already in PCA. This time, I am not talking about any complicated programming, models or what not. No. All I want to do in this moment is to calculate a median!<br />
I discovered on more than <a href="http://www.biostat.jhsph.edu/~bcaffo/statcomp/files/ingo.R.2.notes.pdf">one page</a> on the Net that summary functions like <em>mean(data), median(data), var(data)</em> or <em>range(data)</em> when data set contains NA, require <em>na.rm=T</em> to work:</p>
<p><em>median(data, na.rm=T)</em></p>
<p>Surprisingly, <em>summary(data)</em> will work without NA argument. Who would guess.<br />
But, to make my life more miserable, <em>mean(data, na.rm=T)</em> on my data set works, while <em>median(data, na.rm=T)</em> produces only an error <img src='http://izabela.korwel.net/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> :</p>
<p><em>Error in median.default(set) : need numeric data</em></p>
<p>(Problem unsolved so far. E-mailed my R-guru, but he is on vacation till next week)</p>
<p>After few e-mail exchange with my R guru, there are following conclusions:</p>
<p><em>median(as.matrix(data), na.rm=T)</em></p>
<p> gives you median for whole data set, not variable by variable. Useless. </p>
<p><em>median(data[,3],na.rm=T)</em></p>
<p>gives you median for variable in column 3. If you have 120 variables, I guess you need to do it one by one. Not more helpful.<br />
Bottom line? No solution at this time&#8230;</p>
<p>Technorati Tags: <a href="http://technorati.com/tag/R+project" rel="tag">R project</a>, <a href="http://technorati.com/tag/NA+values" rel="tag">NA values</a>, <a href="http://technorati.com/tag/missing+data" rel="tag">missing data</a>, <a href="http://technorati.com/tag/summary+functions" rel="tag">summary functions</a>, <a href="http://technorati.com/tag/mean" rel="tag">mean</a>, <a href="http://technorati.com/tag/median" rel="tag">median</a>, <a href="http://technorati.com/tag/na.rm" rel="tag">na.rm</a></p>]]></content:encoded>
			<wfw:commentRss>http://izabela.korwel.net/2008/07/03/terrible-nas/feed/</wfw:commentRss>
		</item>
		<item>
		<title>R for Dummies</title>
		<link>http://izabela.korwel.net/2008/07/03/r-for-dummies/</link>
		<comments>http://izabela.korwel.net/2008/07/03/r-for-dummies/#comments</comments>
		<pubDate>Thu, 03 Jul 2008 19:57:39 +0000</pubDate>
		<dc:creator>izabela</dc:creator>
		
		<category><![CDATA[R project]]></category>

		<guid isPermaLink="false">http://izabela.korwel.net/2008/07/03/r-for-dummies/</guid>
		<description><![CDATA[Just a short note on what I just discovered on the Internet, looking for some R stuff. It turns out, there is something like R-Commander. In simple words- R with pull-down menus and basic features, something like R for Dummies :). And by basic features I mean data summaries and graphs, t-test, ANOVA, clusters, PCA, [...]]]></description>
			<content:encoded><![CDATA[<p>Just a short note on what I just discovered on the Internet, looking for some R stuff. It turns out, there is something like <a href="http://www.jstatsoft.org/v14/i09/paper">R-Commander</a>. In simple words- R with pull-down menus and basic features, something like R for Dummies :). And by basic features I mean data summaries and graphs, t-test, ANOVA, clusters, PCA, distributions and some more!<br />
I am installing it on my computer right now. All you need to do is to <a href="http://socserv.mcmaster.ca/jfox/Misc/Rcmdr/installation-notes.html">install package <em>Rcmdr</em></a>, and load it. If you are missing any packages (quite many, in my case), you get a message and R takes care of it by itself.<br />
R-Commander itself seems to be rather intuitive and easy to use.</p>
<p>Technorati Tags: <a href="http://technorati.com/tag/%3Ca+href%3D%22http%3A%2F%2Fwww.jstatsoft.org%2Fv14%2Fi09%2Fpaper%22%3ER-Commander%3C%2Fa%3E" rel="tag"><a href="http://www.jstatsoft.org/v14/i09/paper">R-Commander</a></a>, <a href="http://technorati.com/tag/R" rel="tag">R</a></p>]]></content:encoded>
			<wfw:commentRss>http://izabela.korwel.net/2008/07/03/r-for-dummies/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Hotelling T2 test</title>
		<link>http://izabela.korwel.net/2008/07/02/hotelling-t2-test/</link>
		<comments>http://izabela.korwel.net/2008/07/02/hotelling-t2-test/#comments</comments>
		<pubDate>Wed, 02 Jul 2008 16:06:38 +0000</pubDate>
		<dc:creator>izabela</dc:creator>
		
		<category><![CDATA[R project]]></category>

		<guid isPermaLink="false">http://izabela.korwel.net/2008/07/02/hotelling-t2-test/</guid>
		<description><![CDATA[This time an easy assignment for R project. I needed Hotelling T-test, to compare multivariate means between two data sets. It turns out, all you need to do is to load the package ICSNP, and use function HotellingsT2. OK, with R there always needs to be a trick, and you always have to learn something [...]]]></description>
			<content:encoded><![CDATA[<p>This time an easy assignment for R project. I needed Hotelling T-test, to compare multivariate means between two data sets. It turns out, all you need to do is to load the package ICSNP, and use function <em>HotellingsT2</em>. OK, with R there always needs to be a trick, and you always have to learn something else meantime. And here, you need to have you data divided into two sets, by group, with no group labels. So, if you have everything in one data frame, function <em>subset</em> comes in handy. Nicely described in <a href="http://cran.r-project.org/doc/contrib/Verzani-SimpleR.pdf">Verzani book</a>, the function allows you to restrict rows using logical phrase in subset= or columns, using numbers in select= as in example below:</p>
<p><em>X <- subset(data, subset = group == 'group1', select = 2:10)<br />
Y <- subset(data, subset = group == 'group2', select = 2:10)</em></p>
<p>and then it is simple as that:</p>
<p><em>HotellingsT2 ( X, Y, test = &#8216;f&#8217; )</em></p>
<p>The other option for <em>test</em> is <em>&#8216;chi&#8217;</em>, if your data is not-so-perfectly-normal (you can check <a href="http://cran.r-project.org/web/packages/ICSNP/ICSNP.pdf">package manual</a> for more details). </p>
<p>Short note- this needs to be told what to do with outliers. na.action=na.omit or similar solves the problem.</p>
<p>Technorati Tags: <a href="http://technorati.com/tag/R+project" rel="tag">R project</a>, <a href="http://technorati.com/tag/Hotelling+T-test" rel="tag">Hotelling T-test</a>, <a href="http://technorati.com/tag/ICSNP" rel="tag">ICSNP</a>, <a href="http://technorati.com/tag/%3Cem%3EHotellingsT2%3C%2Fem%3E" rel="tag"><em>HotellingsT2</em></a>, <a href="http://technorati.com/tag/%3Cem%3Esubset%3C%2Fem%3E" rel="tag"><em>subset</em></a></p>]]></content:encoded>
			<wfw:commentRss>http://izabela.korwel.net/2008/07/02/hotelling-t2-test/feed/</wfw:commentRss>
		</item>
		<item>
		<title>PCBs in Miami</title>
		<link>http://izabela.korwel.net/2008/06/10/pcbs-in-miami/</link>
		<comments>http://izabela.korwel.net/2008/06/10/pcbs-in-miami/#comments</comments>
		<pubDate>Tue, 10 Jun 2008 21:23:03 +0000</pubDate>
		<dc:creator>izabela</dc:creator>
		
		<category><![CDATA[Books]]></category>

		<category><![CDATA[University]]></category>

		<guid isPermaLink="false">http://izabela.korwel.net/2008/06/10/pcbs-in-miami/</guid>
		<description><![CDATA[As much as I love my job, sometimes I wonder how really important is what I do. Well, I am starting almost each scientific paper from &#8220;Polychlorinated biphenyls are important environmental contaminants&#8221; or something of this sort. But are they really? To keep me going believing in it, I really need from time to time [...]]]></description>
			<content:encoded><![CDATA[<p>As much as I love my job, sometimes I wonder how really important is what I do. Well, I am starting almost each scientific paper from &#8220;Polychlorinated biphenyls are important environmental contaminants&#8221; or something of this sort. But are they really? To keep me going believing in it, I really need from time to time to read the articles like <a href="http://ngm.nationalgeographic.com/ngm/0504/feature6/learn.html">this</a>  about PCBs being found in whales or like <a href="http://ngm.nationalgeographic.com/ngm/0610/feature4/index.html?fs=www3.nationalgeographic.com&#038;fs=plasma.nationalgeographic.com">that</a>,  featuring PCBs and other currently monitored pollutants in human blood, both published by National Geographic. But in fact I never seen PCBs being present in more &#8220;contemporary&#8221; literature before. Until today. I am currently &#8220;reading out&#8221; <a href="http://www.ednabuchanan.com/">Edna Buchanan</a> crime stories, and here it is, on page 43 of &#8220;Suitable for framing&#8221;. They are talking about PCBs which were found in copier ink and are contaminating air in the office. Can be as well true! I guess it means that somebody, not just us scientist, not only knows, but also cares about those PCBs around them. And it reminds me as well about the interesting <a href="http://pcbinschools.org/"> PCB-related web page</a> somebody mentioned on last meeting. It was started by a parent who found out that PCBs may be present in caulk, and contaminate soil around schools, where children play. Really, when I think how little research translation most of us, scientist do, I wonder where people really find all this information! I am sure they don&#8217;t read our scientific papers and journals, I don&#8217;t read them myself! I will print out and read articles related to my work, and that&#8217;s it. They are just plain boring. But that&#8217;s good that they do, and that&#8217;s good that I am working on something that matters. After all.</p>
<p>Technorati Tags: <a href="http://technorati.com/tag/Polychlorinated+biphenyls" rel="tag">Polychlorinated biphenyls</a>, <a href="http://technorati.com/tag/National+Geographic" rel="tag">National Geographic</a>, <a href="http://technorati.com/tag/PCBs" rel="tag">PCBs</a>, <a href="http://technorati.com/tag/Edna+Buchanan" rel="tag">Edna Buchanan</a>, <a href="http://technorati.com/tag/research+translation" rel="tag">research translation</a></p>]]></content:encoded>
			<wfw:commentRss>http://izabela.korwel.net/2008/06/10/pcbs-in-miami/feed/</wfw:commentRss>
		</item>
		<item>
		<title>IKEA bike</title>
		<link>http://izabela.korwel.net/2008/06/05/ikea-bike/</link>
		<comments>http://izabela.korwel.net/2008/06/05/ikea-bike/#comments</comments>
		<pubDate>Thu, 05 Jun 2008 21:32:56 +0000</pubDate>
		<dc:creator>izabela</dc:creator>
		
		<category><![CDATA[Life]]></category>

		<category><![CDATA[bike]]></category>

		<category><![CDATA[IKEA]]></category>

		<category><![CDATA[self-assembly]]></category>

		<guid isPermaLink="false">http://izabela.korwel.net/2008/06/05/ikea-bike/</guid>
		<description><![CDATA[I guess most of you know what IKEA is? The self-assembly Swedish style furniture, in Europe wide-known and ubiquitous chain? And I know they don&#8217;t make bikes. However&#8230;.
My husband bought me a bike. One just like this one. It arrived in a nice box:

And with the know-how knowledge of my husband, when I came back [...]]]></description>
			<content:encoded><![CDATA[<p>I guess most of you know what <a href="http://www.ikea.com/us/en/">IKEA</a> is? The self-assembly Swedish style furniture, in Europe wide-known and ubiquitous chain? And I know they don&#8217;t make bikes. However&#8230;.<br />
My husband bought me a bike. One just like <a href="http://www.bikesdirect.com/products/motobecane/fantom_comp08.htm">this one</a>. It arrived in a nice box:</p>
<p><a href='http://izabela.korwel.net/wp-content/uploads/2008/06/dsc_3263.jpg' title='Bike in a box'><img src='http://izabela.korwel.net/wp-content/uploads/2008/06/dsc_3263.jpg' alt='Bike in a box' /></a></p>
<p>And with the know-how knowledge of my husband, when I came back from work, the bike was ready to ride. What a disappointment for me! I am getting bike for assembly, and don&#8217;t even get to see the assembling process? Luckily, the frame was not exactly for my height, so I needed to get a new frame. This time, instructed step by step, I disassembled the bike with my own hands into pieces, and when the new frame arrived, mostly assembled it myself. The final result:</p>
<p><a href='http://izabela.korwel.net/wp-content/uploads/2008/06/dsc_3898.jpg' title='IKEA bike'><img src='http://izabela.korwel.net/wp-content/uploads/2008/06/dsc_3898.jpg' alt='IKEA bike' /></a></p>
<p>I guess most fun was from using the torque wrench :).</p>
<p>Technorati Tags: <a href="http://technorati.com/tag/%3Ca+href%3D%22http%3A%2F%2Fwww.ikea.com%2Fus%2Fen%2F%22%3EIKEA%3C%2Fa%3E" rel="tag"><a href="http://www.ikea.com/us/en/">IKEA</a></a>, <a href="http://technorati.com/tag/self-assembly" rel="tag">self-assembly</a>, <a href="http://technorati.com/tag/bike" rel="tag">bike</a></p>]]></content:encoded>
			<wfw:commentRss>http://izabela.korwel.net/2008/06/05/ikea-bike/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Magazines subscritpion</title>
		<link>http://izabela.korwel.net/2008/05/30/magazines-subscritpion/</link>
		<comments>http://izabela.korwel.net/2008/05/30/magazines-subscritpion/#comments</comments>
		<pubDate>Fri, 30 May 2008 17:48:49 +0000</pubDate>
		<dc:creator>izabela</dc:creator>
		
		<category><![CDATA[Life]]></category>

		<category><![CDATA[National Geographic]]></category>

		<category><![CDATA[renwal notice]]></category>

		<category><![CDATA[subscription]]></category>

		<guid isPermaLink="false">http://izabela.korwel.net/2008/05/30/magazines-subscritpion/</guid>
		<description><![CDATA[The logic of America still fascinates me. Yeah, I know this is money driven country, but..
What I am talking about now, is the magazine subscription. For example, I enjoy reading National Geographic, leaving alone the fact that their photos and photographers are considered the best. The easiest way not to worry about not missing next [...]]]></description>
			<content:encoded><![CDATA[<p>The logic of America still fascinates me. Yeah, I know this is money driven country, but..<br />
What I am talking about now, is the magazine subscription. For example, I enjoy reading <a href="http://www.nationalgeographic.com/">National Geographic</a>, leaving alone the fact that their photos and photographers are considered the best. The easiest way not to worry about not missing next issue is of course to subscribe to it. That&#8217;s what I do. First year, it was OK- I used the piece of paper in the magazine I bought, got special price, was happy. Next year, I got the renewal suggestion for &#8230; 30$. Guess what? If instead of renewing I would buy a new subscription, my price would be what? Whole 19$. I was enraged and e-mailed them about it. I succeeded in getting the price of 19$. This year, situation is less ridiculous, but still&#8230; My offer? 19$, doesn&#8217;t sound bad at all. But, if I decide to buy a new one, this time is <a href="http://www.nationalgeographic.com/magazines/index.html?intcmp=PRO19A">15$</a>. So I am being punished for being loyal? Doesn&#8217;t make sense to me at all.<br />
I am not even mentioning the fact, that the minute I click and buy a new subscription, their Customer Service will send me a  subscription renewal offer. For another year. Already. Rigth away, in case I forgot I just did it. And then for another year. I think I am getting up to 6 offers per year. If I react to all of them, I would quickly have a subscription till the end of my life!<br />
Anyway, I am renewing 3 months in advance only. What a waste of money for sending out this notices. My money, I should add.</p>
<p>Technorati Tags: <a href="http://technorati.com/tag/magazine+subscription" rel="tag">magazine subscription</a>, <a href="http://technorati.com/tag/%3Ca+href%3D%22http%3A%2F%2Fwww.nationalgeographic.com%2F%22%3ENational+Geographic%3C%2Fa%3E" rel="tag"><a href="http://www.nationalgeographic.com/">National Geographic</a></a>, <a href="http://technorati.com/tag/subscription+renewal" rel="tag">subscription renewal</a></p>]]></content:encoded>
			<wfw:commentRss>http://izabela.korwel.net/2008/05/30/magazines-subscritpion/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Talk at the conference</title>
		<link>http://izabela.korwel.net/2008/05/16/talk-at-the-conference/</link>
		<comments>http://izabela.korwel.net/2008/05/16/talk-at-the-conference/#comments</comments>
		<pubDate>Fri, 16 May 2008 15:32:04 +0000</pubDate>
		<dc:creator>izabela</dc:creator>
		
		<category><![CDATA[University]]></category>

		<guid isPermaLink="false">http://izabela.korwel.net/2008/05/16/talk-at-the-conference/</guid>
		<description><![CDATA[Next week, it is a big day in my scientific carrier. I am going to give a talk at the international conference. I am very exited. I find it as a great chance to kind of force people to notice my research ;). It just seems to be more direct interaction than poster, at which [...]]]></description>
			<content:encoded><![CDATA[<p>Next week, it is a big day in my scientific carrier. I am going to give a talk at the international conference. I am very exited. I find it as a great chance to kind of force people to notice my research ;). It just seems to be more direct interaction than poster, at which people may stop or may not, depending on how interesting graphical explanation of your results you prepare. The problem is that my research is rather inter-disciplinary. It is too biological for chemists to notice, and too chemical for biologist to care.<br />
At the same time, I am stressed like hell. Not only my boss already twice removed some slides from my posters, making me to invent my story from the very beginning. Also, telling the presentation is one thing, answering all the questions people may ask is another. They can ask me about anything they like, most probably- anything they are experts in. Which not necessarily is something connected to my research&#8230;<br />
Anyway, I know a lot of people preparing for a presentation like that would prepare slides in Power Point, then sit down and write their whole presentation. And then I guess try to learn it by heart?<br />
I don&#8217;t do that. I prepare slides, thinking how I am going to talk about them. And then I just run the presentation and  just talk about them. It seem like harder way of doing that. But at least, I will find myself in front of 150 people in big room and if I freeze, I won&#8217;t need to remind myself what the heck was the first word of the first sentence of my introduction to my talk&#8230;.<br />
My boss already gave me one the advice I really like. Focus on your plot- explain axis and what is presented on the plot, and the story will come to you&#8230;<br />
Anyway, I wonder how many people really write the presentation down, and how many prefer to go live?</p>
<p>Technorati Tags: <a href="http://technorati.com/tag/talk" rel="tag">talk</a>, <a href="http://technorati.com/tag/international+conference" rel="tag">international conference</a>, <a href="http://technorati.com/tag/poster" rel="tag">poster</a>, <a href="http://technorati.com/tag/presentation" rel="tag">presentation</a></p>]]></content:encoded>
			<wfw:commentRss>http://izabela.korwel.net/2008/05/16/talk-at-the-conference/feed/</wfw:commentRss>
		</item>
		<item>
		<title>On Open access publishing</title>
		<link>http://izabela.korwel.net/2008/05/01/on-open-access-publishing/</link>
		<comments>http://izabela.korwel.net/2008/05/01/on-open-access-publishing/#comments</comments>
		<pubDate>Thu, 01 May 2008 17:35:42 +0000</pubDate>
		<dc:creator>izabela</dc:creator>
		
		<category><![CDATA[University]]></category>

		<guid isPermaLink="false">http://izabela.korwel.net/2008/05/01/on-open-access-publishing/</guid>
		<description><![CDATA[The big issue this year is the new NIH policy requiring to provide the copy of accepted manuscript resulting from NIH sponsored grant to open access repository in biological sciences database PubMed. As much as I was always thrilled by open access publishing, I am starting to seriously rethink this opinion. New policy requires that [...]]]></description>
			<content:encoded><![CDATA[<p>The big issue this year is the new NIH policy requiring to provide the copy of accepted manuscript resulting from NIH sponsored grant to open access repository in biological sciences database <a href="http://www.ncbi.nlm.nih.gov/pubmed/">PubMed</a>. As much as I was always thrilled by open access publishing, I am starting to seriously rethink this opinion. New policy requires that every manuscript accepted after April 7, 2007, describing research financed by NIH, needs to be submitted to PubMed. You have some options though. You may send the &#8220;dirty manuscript&#8221;- your file as of the day the manuscript was accepted - or, in some cases - the final published paper (after proofing, journal style re-wording etc.).</p>
<p>The &#8220;case&#8221; depends on the journal in which final manuscript is published, or really what copyrights you retained when submitting. The article, depending on your choice of way to submit it, may appear in PubMed right away, or after 6 or 12 months. It may be exactly the same file as published paper, or it may differ quite considerably (but not in the scientific content!).</p>
<p>Of course, the publishers of non-open-access journals worry about their profits, and it looks that they have the basis for that. Some, like American Chemical Society, suggest that you pay $1000 (per manuscript!) to retain the right to open access distribution of that article, and thus it may be published on PubMed (or your own web page for that matter) right away. Seems to be a bit costly to me. As somebody commented today, it is a week or two worth of supplies, not a spare change really.</p>
<p>Now, in the beginning the whole open access was invented as the way to provide to everybody - be it the US taxpayers or whole scientific community even in poor countries - non limited access to all the results, papers and ideas. The question is, if it is not going to block or at least seriously limit the possibility for the scientists in poorer countries to publish in popular, and thus probably expensive journals? They currently have an option, because only NIH requires posting papers, and if you don&#8217;t want to buy open access, you don&#8217;t have to. The questions is, if paying large amounts of money to have your paper published (which to some extent is already present as per page fee in some journals, but not in many) is not the direction in which the open access movement is going? And this is my impression it may be the case.</p>
<p>Technorati Tags: <a href="http://technorati.com/tag/NIH" rel="tag">NIH</a>, <a href="http://technorati.com/tag/open+access" rel="tag">open access</a>, <a href="http://technorati.com/tag/PubMed" rel="tag">PubMed</a></p>]]></content:encoded>
			<wfw:commentRss>http://izabela.korwel.net/2008/05/01/on-open-access-publishing/feed/</wfw:commentRss>
		</item>
		<item>
		<title>On scientific review</title>
		<link>http://izabela.korwel.net/2008/03/26/on-scientific-review/</link>
		<comments>http://izabela.korwel.net/2008/03/26/on-scientific-review/#comments</comments>
		<pubDate>Wed, 26 Mar 2008 18:54:05 +0000</pubDate>
		<dc:creator>izabela</dc:creator>
		
		<category><![CDATA[University]]></category>

		<guid isPermaLink="false">http://izabela.korwel.net/2008/03/26/on-scientific-review/</guid>
		<description><![CDATA[If you are a scientist, from time to time you hear a discussion about Open Access or Impact Factors&#8230; You for sure have your opinion on those &#8220;hot topics&#8221;. Now, is anybody ever thinking about how unfair the peer review procedure is? The reviewer always knows who wrote the paper he is reviewing, and I [...]]]></description>
			<content:encoded><![CDATA[<p>If you are a scientist, from time to time you hear a discussion about <a href="http://www.doaj.org/">Open Access</a> or <a href="http://scientific.thomson.com/free/essays/journalcitationreports/impactfactor/">Impact Factors</a>&#8230; You for sure have your opinion on those &#8220;hot topics&#8221;. Now, is anybody ever thinking about how unfair the peer review procedure is? The reviewer always knows who wrote the paper he is reviewing, and I am sure quite often people who should do not refuse. Isn&#8217;t reviewing somebody&#8217;s paper the best way to get to them? And you will never know, because the reviewer remains anonymous. I am leaving alone the fact how often reviewers know little about the subject and ask really&#8230;.. trivial questions.<br />
Now, there are two possible ways to change the peer review process. My favorite would be to make it double blind- reviewer doesn&#8217;t know whose paper he is reviewing and the author doesn&#8217;t know who reviewed his manuscript. Sounds fair to me. But recently discussing it with my husband, he came up with another idea- the double-open peer review. Scientists prepare manuscript and simply put it out to the open discussion by everybody who cares. Of course if you ever read all the comments to news stories on any news web page, you realize that the discussion to be constructive needs to be somehow moderated. Moderated, not censored! I cannot think of simply making that type of open review happen, but I like the idea.</p>
<p>Technorati Tags: <a href="http://technorati.com/tag/peer+review" rel="tag">peer review</a></p>]]></content:encoded>
			<wfw:commentRss>http://izabela.korwel.net/2008/03/26/on-scientific-review/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
