<?xml version="1.0" encoding="iso-8859-1"?>

<rdf:RDF 
	xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns="http://purl.org/rss/1.0/"
>
		
	<channel rdf:about="http://graphpad.com/blog/index.cfm">
	<title>Harvey Motulsky's GraphPad Blog</title>
	<description>The GraphPad Blog</description>
	<link>http://graphpad.com/blog/index.cfm</link>
	
	<items>
		<rdf:Seq>
			
			<rdf:li rdf:resource="http://graphpad.com/blog/index.cfm?mode=entry&amp;entry=56A412B1-1A4B-0BEA-815B0A92496CCDDE" />
			
			<rdf:li rdf:resource="http://graphpad.com/blog/index.cfm?mode=entry&amp;entry=7118E839-1A4B-0BEA-81A079A2C4D669EB" />
			
			<rdf:li rdf:resource="http://graphpad.com/blog/index.cfm?mode=entry&amp;entry=5250CF03-1A4B-0BEA-81702A491A045862" />
			
			<rdf:li rdf:resource="http://graphpad.com/blog/index.cfm?mode=entry&amp;entry=386F6A21-1A4B-0BEA-8171731B018FB6B8" />
			
			<rdf:li rdf:resource="http://graphpad.com/blog/index.cfm?mode=entry&amp;entry=2B303FC2-1A4B-0BEA-81DF0195F67408A2" />
			
			<rdf:li rdf:resource="http://graphpad.com/blog/index.cfm?mode=entry&amp;entry=059490C8-1A4B-0BEA-8131C7B726EB6B31" />
			
			<rdf:li rdf:resource="http://graphpad.com/blog/index.cfm?mode=entry&amp;entry=79C41EA9-1635-5B5F-C54325BD304BFE99" />
			
			<rdf:li rdf:resource="http://graphpad.com/blog/index.cfm?mode=entry&amp;entry=60816C17-EBE4-047F-94A8B4A7C77BB81F" />
			
			<rdf:li rdf:resource="http://graphpad.com/blog/index.cfm?mode=entry&amp;entry=57236745-C581-DCAD-699D84F6CE026620" />
			
			<rdf:li rdf:resource="http://graphpad.com/blog/index.cfm?mode=entry&amp;entry=38E7D2CC-AE26-FA1E-7A21032E1711EFF5" />
			
			<rdf:li rdf:resource="http://graphpad.com/blog/index.cfm?mode=entry&amp;entry=1DAF2B61-1635-5B5F-C54E541F8F9D47CD" />
			
			<rdf:li rdf:resource="http://graphpad.com/blog/index.cfm?mode=entry&amp;entry=1CDB3CB8-A3A7-1D3C-A66296B4DF686C7A" />
			
			<rdf:li rdf:resource="http://graphpad.com/blog/index.cfm?mode=entry&amp;entry=F96592A7-A2BF-BEBE-C3A7C0FD2EB47347" />
			
			<rdf:li rdf:resource="http://graphpad.com/blog/index.cfm?mode=entry&amp;entry=EF6AD51A-C501-C3CB-C548215F99683EAF" />
			
			<rdf:li rdf:resource="http://graphpad.com/blog/index.cfm?mode=entry&amp;entry=D06D115C-B65B-65DD-49D0E4D5EE843E6D" />
			
		</rdf:Seq>
	</items>
	
	</channel>
		
  	<item rdf:about="http://graphpad.com/blog/index.cfm?mode=entry&amp;entry=56A412B1-1A4B-0BEA-815B0A92496CCDDE">
	<title>Fitting dose-response curve when X is dose, rather than log(dose).</title>
	<description>&lt;p&gt;&amp;nbsp;The dose-response equations built-in to Prism all assume that the X values are log(dose). You can either enter the data with X values as logarithms of doses, or use the Transform analysis to create a results table with the data arranged that way which can then be graphed and fit.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;It is possible to fit data where X values are concentrations, rather than log(concentrations). It is necessary to adjust the equation accordingly.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Here is the equation built-in to Prism for fitting a variable slope (four-parameter) log(dose) response curve:&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;Y=Bottom + (Top-Bottom)/(1+10^((LogEC50-X)*HillSlope))&lt;/p&gt;
&lt;p&gt;Here is the equation modified to expect X values to be concentrations, not logarithms, so the concentration does not need to be raised to the tenth power to antilog it:&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&amp;nbsp;Y=Bottom + (Top-Bottom)/(1+ (10^logEC50 /X)^HillSlope)&lt;/p&gt;
&lt;p&gt;The equation still fits the logEC50, rather than the EC50. Why? Because the confidence intervals computed by Prism are always symmetrical around the parameter value. But the true uncertainty is only symmetrical on a logEC50 scale. &amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;/faq/file/1552(1).pzf&quot;&gt;Download this Prism file&lt;/a&gt; to see how it works. The same data are fit &amp;nbsp;and graphed twice.&lt;/p&gt;
&lt;ul&gt;
    &lt;li&gt;In one version the X values are transformed to logarithms, and then fit to the equation built-in to Prism. Here the graph has a linear X axis, but the numbering is converted to powers-of-ten to show that the X values represent logarithms.&lt;/li&gt;
    &lt;li&gt;In the other version, the data are fit with the X values remaining as concentrations and fit to the equation showed above. Here the X axis is stretched to a logarithmic scale (top right of Format Graph dialog).&amp;nbsp;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;The two graphs look identical. The results of the two fits are identical.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Note that the second graph will only look good in Prism 5, which is smart about plotting curves on axes stretched to a logarithmic scale. Prism 4 was not smart about this, and the resulting curve looks very choppy.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://www.graphpad.com/faq/viewfaq.cfm?faq=763&quot;&gt;Why is the HillSlope applied to the EC50 as well as the X values?&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://www.graphpad.com/faq/viewfaq.cfm?faq=34&quot;&gt;Why doesn&apos;t Prism report the standard error of the EC50?&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;</description>
	<link>http://graphpad.com/blog/index.cfm?mode=entry&amp;entry=56A412B1-1A4B-0BEA-815B0A92496CCDDE</link>
	<dc:date>2009-11-18T10:59:16-08:00</dc:date>
	
	</item>
		
  	<item rdf:about="http://graphpad.com/blog/index.cfm?mode=entry&amp;entry=7118E839-1A4B-0BEA-81A079A2C4D669EB">
	<title>GraphPad programs and  OSX 10.6 (Snow Leopard)</title>
	<description>&lt;p&gt;Apple released a new version of OSX, 10.6 Snow Leopard, on Aug. 28 2009.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Prism 5&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;We know of one problem using Prism 5.0b on Snow Leopard: Fill patterns don&apos;t render well. We recommend that you use solid fills for bars, and simply avoid fill patterns altogether if you use Snow Leopard (and even otherwise, fill patterns are a hold over from the days of plotters, and solid fills look better). It is likely that Apple will fix this glitch in Snow Leopard. If they don&apos;t, we&apos;ll try to bypass the problem in release 5.0c.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Other minor glitches:&lt;/p&gt;
&lt;ul&gt;
    &lt;li&gt;Black colors appear gray when the graph is exported to a pdf file using CMYK colors, and viewed in Preview. Choose RGB colors instead, and the pdfs look fine. &amp;nbsp;Or export a tiff file with CMYK colors. Note that the pdf file is fine, but is just rendered incorrectly by the new version of Preview.&lt;/li&gt;
    &lt;li&gt;The Send-to-Powerpoint button and command don&apos;t work. Use Copy and Paste instead.&lt;/li&gt;
    &lt;li&gt;When running a Prism script, the script log is always empty.&lt;/li&gt;
    &lt;li&gt;Editing sheet names in the navigator looks ragged.&lt;/li&gt;
    &lt;li&gt;The slider on the info page separating info constants from notes looks corrupted.&lt;/li&gt;
    &lt;li&gt;Exporting to the PICT format doesn&apos;t work.&amp;nbsp;&lt;/li&gt;
    &lt;li&gt;Exporting using the monochrome color model (to export colorful graphs as black and white) doesn&apos;t work.&lt;/li&gt;
    &lt;li&gt;If you save a Prism file as XML, its icon is blank.&lt;/li&gt;
    &lt;li&gt;One person found that the updater from 5.0a to 5.0b did not work under Snow Leopard. But the full 5.0b installer worked fine.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&amp;nbsp;We will investigate these problems, and any others we discover or are told about, and fix in release 5.0c coming soon. Let us know if you encounter other problems.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;InStat, StatMate, and Prism 4&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;InStat 3, StatMate 2 and Prism 4&amp;nbsp;use an older style of Mac programming. They run perfectly on current macs using an Intel chip, but do so by relying on Apple&apos;s Rosetta system. Apple created Rosetta so&amp;nbsp;programs written for the earlier generation of Macs that use a PowerPC chip will also work on newer Intel Macs. This is truly amazing software that just works. You don&apos;t even know it is there.&lt;/p&gt;
&lt;p&gt;With OSX 10.4 (Tiger) and 10.5 (Leopard), Rosetta was automatically installed and simply works when it is needed. You don&apos;t have to configure it, and won&apos;t even know when it is running. The only exception is that a few people have had problems after&amp;nbsp;updating to OSX 10.5.6.&amp;nbsp;&lt;a href=&quot;http://support.apple.com/downloads/Mac_OS_X_10-5-6_Combo_Update&quot;&gt;This page from the Apple web site&lt;/a&gt; explains how to fix the problem, which requires running the &apos;combo update&apos; rather than the &apos;incremental update&apos; .&lt;/p&gt;
&lt;p&gt;Rosetta is not automatically installed with &amp;nbsp;OSX 10.6 (Snow Leopard). If you are updating to Snow Leopard and plan to run InStat 3, StatMate 2, or Prism 4,&amp;nbsp;click the &amp;quot;Customize&amp;quot; button in the Mac OS X Snow Leopard installer and select the option to install Rosetta.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;If you don&apos;t install Rosetta at the time you install Snow Leopard, or get a new Mac without it, &amp;nbsp;InStat, StatMate and Prism 4 will still work just fine. The first time you run one of these programs under Snow Leopard, OSX detects that you need Rosetta and provides an easy way to install it.&amp;nbsp;You only have to do this once. Rosetta will be installed from Apple&apos;s server if you are connected to the internet. Otherwise, you&apos;ll need to insert your Mac OS X Snow Leopard installation disc, open the Optional Installs folder, and double-click Optional Installs.&lt;/p&gt;</description>
	<link>http://graphpad.com/blog/index.cfm?mode=entry&amp;entry=7118E839-1A4B-0BEA-81A079A2C4D669EB</link>
	<dc:date>2009-08-31T08:35:40-08:00</dc:date>
	
	</item>
		
  	<item rdf:about="http://graphpad.com/blog/index.cfm?mode=entry&amp;entry=5250CF03-1A4B-0BEA-81702A491A045862">
	<title>Guidelines for presenting statistics in published papers.</title>
	<description>&lt;p&gt;&lt;a href=&quot;http://www.icmje.org/&quot;&gt;Uniform Requirements for Manuscripts Submitted to Biomedical Journals:&amp;nbsp;Writing and Editing for Biomedical Publications&lt;/a&gt;&amp;nbsp;is a lengthy document with guidelines for authors and publishers. But it has only one paragraph about statistics:&lt;/p&gt;
&lt;p style=&quot;margin-left: 80px; &quot;&gt;&amp;quot;Describe statistical methods with enough detail to enable a knowledgeable reader with access to the original data to verify the reported results. When possible, quantify findings and present them with appropriate indicators of measurement error or uncertainty (such as confidence intervals). Avoid relying solely on statistical hypothesis testing, such as P values, which fail to convey important information about effect size. References for the design of the study and statistical methods should be to standard works when possible (with pages stated). Define statistical terms, abbreviations, and most symbols. Specify the computer software used.&amp;quot;&lt;/p&gt;
&lt;p&gt;These two papers give sensible guidelines for presenting statistical calculations and conclusions:&lt;/p&gt;
&lt;p style=&quot;margin-left: 40px; &quot;&gt;Curran-Everett and Benos. &lt;a href=&quot;http://ajpgi.physiology.org/cgi/reprint/287/2/G307&quot;&gt;Guidelines for reporting statistics in journals published by the American Physiological Society&lt;/a&gt;. AJP - Gastrointestinal and Liver Physiology (2004) vol. 287 (2) pp. G307.&amp;nbsp;Those authors later published a &lt;a href=&quot;http://0-advan.physiology.org.library.pcc.edu/cgi/reprint/31/4/295&quot;&gt;sequel&lt;/a&gt;, with additional comments. This sequel references a bunch of papers which critique the guidelines.&lt;/p&gt;
&lt;p style=&quot;margin-left: 40px; &quot;&gt;Ludbrook. &lt;a href=&quot;http://pt.wkhealth.com/pt/re/cepp/pdfhandler.00003041-200810000-00024.pdf;jsessionid=KT1dQ4V2T5gZ4phbdmxTTJ929rTvMT20DMSpnHdwFzT1b52fG12k!1642465697!181195628!8091!-1&quot;&gt;The presentation of statistics in Clinical and Experimental Pharmacology and Physiolog&lt;/a&gt;y. Clin Exp Pharmacol Physiol (2008) vol. 35 (10) pp. 1271-4).&amp;nbsp;Ludbrook has also self published a t&lt;a href=&quot;http://128.250.176.236/symbols.pdfVictoria, Australia  &quot;&gt;wo-page set of guidelines for mathematical operators and statistical symbols.&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;These authors agree on two points (regarding style, not substance) that I was not aware of, so the GraphPad manuals and help screens (and my book &lt;a href=&quot;http://www.intuitivebiostatistics.com&quot;&gt;Intuitive Biostatistics&lt;/a&gt;) have done differently:&lt;/p&gt;
&lt;ul&gt;
    &lt;li&gt;They say that the standard error of the mean should be abbreviated as SE, rather than SEM.&lt;/li&gt;
    &lt;li&gt;They say that the mean and standard deviation should be written as mean (SD), rather than mean&amp;nbsp;&amp;plusmn; SD. if the mean is 11.2 and the standard deviation is 2.4, they suggest reporting 11.2 (2.4) rather than 11.2&amp;nbsp;&amp;nbsp;&amp;plusmn; 2.4. They recommend using that latter syntax only for standard errors, not standard deviations.&amp;nbsp;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;</description>
	<link>http://graphpad.com/blog/index.cfm?mode=entry&amp;entry=5250CF03-1A4B-0BEA-81702A491A045862</link>
	<dc:date>2009-08-25T09:08:30-08:00</dc:date>
	
	</item>
		
  	<item rdf:about="http://graphpad.com/blog/index.cfm?mode=entry&amp;entry=386F6A21-1A4B-0BEA-8171731B018FB6B8">
	<title>How does Prism compute and plot residuals from nonlinear regression?</title>
	<description>&lt;p&gt;If you choose (or accept the default) standard weighting, then the residuals are the difference between the actual Y value you entered and the Y value predicted by the model. If the data point is above the curve, the residual is positive. If the data point is below the curve, the residual is negative. &amp;nbsp;Least-squares regression works to minimize the sum of the squares of these residuals.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;If you choose another weighting scheme, Prism 5 adjusts the definition of the residuals accordingly. The residual that Prism tabulates and plots equals the residual defined in the prior paragraph, divided by the weighting factor. &amp;nbsp;The most common common alternative weighting is &amp;quot;Weight by 1/Y&lt;sup&gt;2&lt;/sup&gt; (minimize relative distances squared)&amp;quot;. In this case, the residual is defined to be the distance of the point from the curve divided by the Y value of the curve. Weighted nonlinear regression minimizes the sum of these residuals squared.&lt;/p&gt;
&lt;p&gt;Note the ambiguity in defining weighting. The Prism dialog gives the choice to weight by 1/Y&lt;sup&gt;2&lt;/sup&gt;. This means that the squared residual is divided by Y&lt;sup&gt;2&lt;/sup&gt;. The weighted residual is defined as the residual divided by Y. Prism minimizes the sum of the squares of these weighted residuals.&lt;/p&gt;
&lt;p&gt;Earlier versions of Prism (up to Prism 4) always plotted basic unweighted residuals, even if you chose to weight the points unequally.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;When performing linear regression, Prism does not offer weighting so the residuals are always unweighted residuals as defined in the first paragraph above.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://www.graphpad.com/faq/viewfaq.cfm?faq=1355&quot;&gt;How Prism computes R&lt;/a&gt;&lt;sup&gt;&lt;a href=&quot;http://www.graphpad.com/faq/viewfaq.cfm?faq=1355&quot;&gt;2&lt;/a&gt;&lt;/sup&gt;&lt;a href=&quot;http://www.graphpad.com/faq/viewfaq.cfm?faq=1355&quot;&gt; with weighted nonlinear regression.&amp;nbsp;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://www.graphpad.com/faq/viewfaq.cfm?faq=1388&quot;&gt;How weighted nonlinear regression works.&lt;/a&gt;&lt;/p&gt;</description>
	<link>http://graphpad.com/blog/index.cfm?mode=entry&amp;entry=386F6A21-1A4B-0BEA-8171731B018FB6B8</link>
	<dc:date>2009-08-20T08:31:48-08:00</dc:date>
	
	</item>
		
  	<item rdf:about="http://graphpad.com/blog/index.cfm?mode=entry&amp;entry=2B303FC2-1A4B-0BEA-81DF0195F67408A2">
	<title>Adjusted P values as part of multiple comparisons.</title>
	<description>&lt;p&gt;&amp;nbsp;Many people ask why multiple comparisons tests following one-way (or two-way) ANOVA can&apos;t report individual P values for each comparison. When you correct for multiple comparisons, &lt;a href=&quot;http://www.graphpad.com/faq/viewfaq.cfm?faq=189&quot;&gt;it really doesn&apos;t make much sense&lt;/a&gt; to talk about individual P values. All you can do is divide the comparisons into two groups -- statistically significant and not -- at some defined significance level (usually 5%) that applies to the entire family of comparisons.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;However SAS reports adjusted P values, and these are explained in the book by Westfall &amp;nbsp;(citation below).&lt;/p&gt;
&lt;p&gt;The idea is pretty simple. There is nothing special about 0.05 or 0.01... You can set the significance level to any probability you want. The adjusted P value is the smallest probability at which a particular comparison will be declared statistically significant (as part of the multiple comparison testing). Each comparison will have a unique adjusted P value. But these P values are computed from all the comparisons, and really can&apos;t be interpreted for just one comparison.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Computing the adjusted P value is trivial for Bonferroni multiple comparison tests. It is harder for Tukey and Dunnett tests, as it requires &lt;a href=&quot;http://www.graphpad.com/faq/viewfaq.cfm?faq=1517&quot;&gt;computing critical values&lt;/a&gt; beyond those that have been tabulated.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;We are considering including adjusted P values as part of the reporting of one-way ANOVA with Tukey, Bonferroni or Dunnett multiple comparison tests. I hesitate to do this (the programming is far from trivial) because I don&apos;t really know how to explain how to interpret the results, and fear that they will be misinterpreted.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;I don&apos;t know of any program except SAS that computes adjusted P values, and don&apos;t know of any book except Westfall that explains them. They do not seem to be mainstream.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Please let us know if you would like to see adjusted P values in future versions of Prism, and explain why.&lt;/p&gt;
&lt;table cellpadding=&quot;0&quot; width=&quot;600&quot; border=&quot;0&quot;&gt;
	&lt;tr&gt;
		&lt;td width=&quot;10%&quot; rowspan=&quot;4&quot;&gt;
			
				&lt;a title=&quot;Multiple Comparisons and Multiple Tests (Text and Workbook Set)&quot; target=&quot;_new&quot; href=&quot;http://www.amazon.com/Multiple-Comparisons-Tests-Text-Workbook/dp/1580258336%3FSubscriptionId%3D1EJNRTWJHMX1HXN1FX02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3D1580258336&quot;&gt;
					&lt;img border=&quot;0&quot; alt=&quot;Multiple Comparisons and Multiple Tests (Text and Workbook Set)&quot; src=&quot;http://ecx.images-amazon.com/images/I/41SN3WC244L._SL75_.jpg&quot;&gt;
				&lt;/a&gt;
			
		&lt;/td&gt;
		&lt;td&gt;&lt;strong&gt;Multiple Comparisons and Multiple Tests (Text and Workbook Set)&lt;/strong&gt;&lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr&gt;
		&lt;td&gt;by Peter H. Westfall, Randall D. Tobias, Dror Rom&lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr&gt;
		&lt;td&gt;IBSN:1580258336. List price:$62.32&lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr&gt;
		&lt;td&gt;
			&lt;a title=&quot;Multiple Comparisons and Multiple Tests (Text and Workbook Set)&quot; target=&quot;_new&quot; href=&quot;http://www.amazon.com/Multiple-Comparisons-Tests-Text-Workbook/dp/1580258336%3FSubscriptionId%3D1EJNRTWJHMX1HXN1FX02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3D1580258336&quot;&gt;Buy from amazon.com for $50.18&lt;/a&gt;
		&lt;/td&gt;	
	&lt;/tr&gt;
&lt;/table&gt;</description>
	<link>http://graphpad.com/blog/index.cfm?mode=entry&amp;entry=2B303FC2-1A4B-0BEA-81DF0195F67408A2</link>
	<dc:date>2009-08-17T18:47:45-08:00</dc:date>
	
	</item>
		
  	<item rdf:about="http://graphpad.com/blog/index.cfm?mode=entry&amp;entry=059490C8-1A4B-0BEA-8131C7B726EB6B31">
	<title>Bug with Fisher&apos;s Exact test in Prism 5.02 and 5.0b</title>
	<description>Prism 5.02 (Windows) and 5.0b (Mac) included a fix to a trivial bug in Fisher&apos;s exact test (when the two groups are identical, the P value should be 1.00 but earlier versions of Prism sometimes reported P values slightly greater than 1.0). Unfortunately, that fix introduced a new bug that occurs only when:&lt;/p&gt;
&lt;ul&gt;
    &lt;li&gt;You are using Prism 5.02 (Windows) or 5.0b (Mac). Earlier versions did not have this bug. Neither does InStat 3.0 or 3.1.&amp;nbsp;&lt;/li&gt;
    &lt;li&gt;You have entered a symmetrical contingency table. A table is symmetrical when either the two row totals are identical, or the two column totals are identical.&amp;nbsp;&lt;/li&gt;
    &lt;li&gt;You have chosen a two-tail (two-sided) P value. One-tail P values are computed correctly.&amp;nbsp;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;The result of the bug is that the P value will be too low in some, but not all cases. In many cases, the discrepancy is tiny and won&apos;t affect your conclusions. In other cases, the discrepancy is larger and may affect your conclusion.&lt;/p&gt;
&lt;p&gt;Of course, we will fix the bug in the next release of Prism: 5.03 and 5.0c.&lt;/p&gt;

&lt;p&gt;It is easy to determine whether you have encountered this bug, and to compute the correct two-tail P value. With symmetrical contingency tables, the two-tail P value is exactly twice the one-tail P value (that is not always true with contingency tables that are not symmetrical). Therefore, to bypass the bug, ask Prism to compute a one-tail (one-sided) P value. This is a choice in the Parameters dialog for analyzing contingency table. To compute a two-tail P value, simply double the one-tail P value.&amp;nbsp;&lt;/p&gt;
 
&lt;P&gt;&lt;a href=&quot;http://helpdesk.graphpad.com/faq/viewfaq.cfm?faq=1514&quot;&gt;More details and example. &lt;/a&gt;</description>
	<link>http://graphpad.com/blog/index.cfm?mode=entry&amp;entry=059490C8-1A4B-0BEA-8131C7B726EB6B31</link>
	<dc:date>2009-08-10T11:31:45-08:00</dc:date>
	
	</item>
		
  	<item rdf:about="http://graphpad.com/blog/index.cfm?mode=entry&amp;entry=79C41EA9-1635-5B5F-C54325BD304BFE99">
	<title>GraphPad InStat 3.1 is available</title>
	<description>If you own a license for InStat 3, please &lt;a href=&quot;http://www.graphpad.com/instat/instatupdate.htm&quot;&gt;update free to version 3.1&lt;/a&gt;. Updates are available for both Mac and Windows versions. 

The biggest change is that we&apos;ve increased the size of the data table, which can now have 10,000 rows and 52 columns. Other changes are &lt;a href=&quot;http://www.graphpad.com/faq/viewfaq.cfm?faq=1501&quot;&gt; listed here&lt;/a&gt;. 

If you are not familiar with InStat, it is a very simple statistics program -- so simple, anyone can master it in just a few minutes. &lt;a href=&quot;http://www.graphpad.com/instat/instat.htm&quot;&gt;Learn more&lt;/a&gt;.</description>
	<link>http://graphpad.com/blog/index.cfm?mode=entry&amp;entry=79C41EA9-1635-5B5F-C54325BD304BFE99</link>
	<dc:date>2009-07-14T07:56:51-08:00</dc:date>
	
	</item>
		
  	<item rdf:about="http://graphpad.com/blog/index.cfm?mode=entry&amp;entry=60816C17-EBE4-047F-94A8B4A7C77BB81F">
	<title>The dangers of smoothing.</title>
	<description>Matt Briggs has previously written about the dangers of smoothing&amp;nbsp;&lt;a href=&quot;http://wmbriggs.com/blog/?p=195&quot;&gt;here&lt;/a&gt; and &lt;a href=&quot;http://wmbriggs.com/blog/?p=86&quot;&gt;here.&lt;/a&gt;&amp;nbsp;The problem is simple:&amp;nbsp;&amp;nbsp;&lt;a href=&quot;http://www.graphpad.com/faq/viewfaq.cfm?faq=1313&quot;&gt;smoothing induces spurious correlations&lt;/a&gt;. His &lt;a href=&quot;http://wmbriggs.com/blog/?p=735&quot;&gt;latest post&lt;/a&gt; points out that smoothing can make it appear that a prediction or forecast is far more accurate than it really is. 

I had a hard time following his argument, so &lt;a href=&quot;http://helpdesk.graphpad.com/faq/viewfaq.cfm?faq=1510&quot;&gt;I wrote a page which includes my own set of  simulations and smoothing and my own explanations for why smoothing leads to problems&lt;/a&gt;. 

Here is another way to see the dangers of smoothing. Steve McIntyre at ClimateAudit.org showed &lt;a href=&quot;http://www.climateaudit.org/?p=6519&quot;&gt;how the S&amp;P500 looks with and without smoothing&lt;/a&gt;. If you only saw the smoothed data, you&apos;d get a very wrong impression about the state of the stock market.</description>
	<link>http://graphpad.com/blog/index.cfm?mode=entry&amp;entry=60816C17-EBE4-047F-94A8B4A7C77BB81F</link>
	<dc:date>2009-07-09T10:13:30-08:00</dc:date>
	
	</item>
		
  	<item rdf:about="http://graphpad.com/blog/index.cfm?mode=entry&amp;entry=57236745-C581-DCAD-699D84F6CE026620">
	<title>The sum of two Gaussian distributions is not always bimodal.&lt;/p&gt;</title>
	<description>&lt;p&gt;&amp;nbsp;Is the distribution of height bimodal? It depends on who you include.&lt;/p&gt;
&lt;p&gt;If you include both men and women, most people expect to see a bimodal distribution. In fact, it is not....&lt;a href=&quot; http://helpdesk.graphpad.com/faq/viewfaq.cfm?faq=1509&quot;&gt;Read more...&lt;/a&gt;</description>
	<link>http://graphpad.com/blog/index.cfm?mode=entry&amp;entry=57236745-C581-DCAD-699D84F6CE026620</link>
	<dc:date>2009-07-07T14:34:13-08:00</dc:date>
	
	</item>
		
  	<item rdf:about="http://graphpad.com/blog/index.cfm?mode=entry&amp;entry=38E7D2CC-AE26-FA1E-7A21032E1711EFF5">
	<title>The distinction between confidence, prediction and tolerance intervals</title>
	<description>&lt;p&gt;&amp;nbsp;When you fit a parameter to a model, the accuracy or precision can be expressed as a confidence interval, a prediction interval or a tolerance interval. The three are quite distinct. The discussion below explains the three different intervals for the simple case of fitting a mean to a sample of data (assuming sampling from a Gaussian distribution). The same ideas can be applied to intervals for any best-fit parameter determined by regression.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Confidence intervals&lt;/strong&gt; tell you about how well you have determined the mean. Assume that the data really are randomly sampled from a Gaussian distribution. If you do this many times, and calculate a confidence interval of the mean from each sample, you&apos;d expect&amp;nbsp;about 95 % of those intervals to include &amp;nbsp;the true value of the population mean. The key point is that the confidence interval tells you about the likely location of the true population parameter.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Prediction intervals&lt;/strong&gt; tell you where you can expect to see the next data point sampled.&amp;nbsp;Assume that the data really are randomly sampled from a Gaussian distribution. Collect a sample of data and calculate a prediction interval. Then sample one more value from the population. If you do this many times, you&apos;d expect that next value to lie within that prediction interval in 95% of the samples.The key point is that the prediction interval tells you about the distribution of values, not the uncertainty in determining the population mean.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Prediction intervals must account for both the uncertainty in knowing the value of the population mean, plus data scatter. So a prediction interval is always wider than a confidence interval.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Before moving on to tolerance intervals, let&apos;s define that word &apos;expect&apos; used in defining a prediction interval. It means there is a 50% chance that you&apos;d see the value within the interval in more than 95% of the samples, and a 50% chance that you&apos;d see the value within the interval in less than 50% of the samples. What if you want to be 95% sure that the interval contains 95% of the values? Or 90% sure that the interval contains 99% of the values?&lt;/p&gt;
&lt;p&gt;Those latter questions are answered by a&lt;strong&gt; tolerance interval&lt;/strong&gt;. To compute, or understand, a tolerance interval you have to specify two different percentages. One expresses how sure you want to be, and the other expresses what fraction of the values the interval will contain. If you set the first value (how sure) to 50%, then a tolerance interval is the same as a prediction interval. If you set it to a higher value (say 90% or 99%) then the tolerance interval is wider.&amp;nbsp;&lt;/p&gt;</description>
	<link>http://graphpad.com/blog/index.cfm?mode=entry&amp;entry=38E7D2CC-AE26-FA1E-7A21032E1711EFF5</link>
	<dc:date>2009-07-01T17:40:32-08:00</dc:date>
	
	</item>
		
  	<item rdf:about="http://graphpad.com/blog/index.cfm?mode=entry&amp;entry=1DAF2B61-1635-5B5F-C54E541F8F9D47CD">
	<title>The use and abuse of logarithmic axes</title>
	<description>&lt;p&gt;Logarithmic axes are widely used by students and scientists, and are a frequent source of confusion and frustration. I wrote this &lt;a href=&quot;http://helpdesk.graphpad.com/faq/file/1487logaxes.pdf&quot;&gt;13 page article &lt;/a&gt;(table of contents below) to explain the uses and abuses of logarithmic axes. The article is written for users of GraphPad Prism, but almost all the information will be useful no matter how you make your graphs.&amp;nbsp;&lt;/p&gt;
&lt;hr /&gt;
&lt;p&gt;What is a logarithmic axis?&lt;/p&gt;
&lt;ul&gt;
    &lt;li&gt;A logarithmic axis changes the scale of an axis.&lt;/li&gt;
    &lt;li&gt;Interpolating between log ticks&lt;/li&gt;
    &lt;li&gt;Why &amp;amp;ldquo;logarithmic&amp;amp;rdquo;?&lt;/li&gt;
    &lt;li&gt;Lingo&lt;/li&gt;
    &lt;li&gt;Other Bases&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Logarithmic axes cannot contain zero or negative numbers&lt;/p&gt;
&lt;ul&gt;
    &lt;li&gt;The logarithms of negative numbers and zero are simply not defined&lt;/li&gt;
    &lt;li&gt;A trick to plot zero on a logarithmic axis in Prism&lt;/li&gt;
    &lt;li&gt;Logarithmic axes on bar graphs are misleading&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;When to use a logarithmic axis&lt;/p&gt;
&lt;ul&gt;
    &lt;li&gt;A logarithmic X axis is useful when the X values are logarithmically spaced&lt;/li&gt;
    &lt;li&gt;A logarithmic axis is useful for plotting ratios&lt;/li&gt;
    &lt;li&gt;A logarithmic axis linearizes compound interest and exponential growth&lt;/li&gt;
    &lt;li&gt;An exponential decay curve is linear on a logarithmic axis, but only when it decays to zero&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Lognormal distributions&lt;/p&gt;
&lt;ul&gt;
    &lt;li&gt;Plotting lognormal distributions on a logarithmic axis&lt;/li&gt;
    &lt;li&gt;The mean and geometric mean&lt;/li&gt;
    &lt;li&gt;Displaying variability on a lognormal distributions&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Distinguish using a logarithmic axis from plotting logarithms&lt;/p&gt;
&lt;ul&gt;
    &lt;li&gt;Regression fits the data, not the graph&lt;/li&gt;
    &lt;li&gt;Use antilog or powers-of-ten numbering when plotting values that are logs&lt;/li&gt;
&lt;/ul&gt;
&lt;hr /&gt;</description>
	<link>http://graphpad.com/blog/index.cfm?mode=entry&amp;entry=1DAF2B61-1635-5B5F-C54E541F8F9D47CD</link>
	<dc:date>2009-06-26T10:48:55-08:00</dc:date>
	
	</item>
		
  	<item rdf:about="http://graphpad.com/blog/index.cfm?mode=entry&amp;entry=1CDB3CB8-A3A7-1D3C-A66296B4DF686C7A">
	<title>Copy and &#xa0;paste tabular results from InStat to Excel. Aligned!&lt;/p&gt;</title>
	<description>&lt;p&gt;&amp;nbsp;InStat presents the results in text tables, using multiple spaces to align columns. It looks great within InStat, and prints fine. But if you copy the results and paste into Excel, it becomes a mess. The problem is that Excel only sees a paragraph, not a table, so it pastes everything into one column.&lt;/p&gt;
&lt;p&gt;But it is easy to fix things so the results are tabular within Excel:&lt;/p&gt;
&lt;ol&gt;
    &lt;li&gt;Select and copy a block of tabular results from InStat.&lt;/li&gt;
    &lt;li&gt;Go to an empty table in Excel. Put the insertion point in the top left cell and paste.&lt;/li&gt;
    &lt;li&gt;Select the first column in Excel. This column contains everything you pasted.&lt;/li&gt;
    &lt;li&gt;Drop the Data menu. In Excel 2007, go to the Data tab.&lt;/li&gt;
    &lt;li&gt;Choose the Text to Columns command. In Excel 2007, click the button with that name.&lt;/li&gt;
    &lt;li&gt;Choose Fixed Width.&lt;/li&gt;
    &lt;li&gt;Finish the wizard, and your data will be in aligned Excel columns.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;I&apos;ve tested this with Excel 2007 (Win) and 2008 (Mac). It ought to work with earlier versions as well. I was not able to find a similar command in Numbers (part of iWork for Mac).&lt;/p&gt;</description>
	<link>http://graphpad.com/blog/index.cfm?mode=entry&amp;entry=1CDB3CB8-A3A7-1D3C-A66296B4DF686C7A</link>
	<dc:date>2009-06-26T06:57:25-08:00</dc:date>
	
	</item>
		
  	<item rdf:about="http://graphpad.com/blog/index.cfm?mode=entry&amp;entry=F96592A7-A2BF-BEBE-C3A7C0FD2EB47347">
	<title>We are testing InStat 3.1</title>
	<description>Our programmer have completed the work on InStat 3.1. The biggest change is that we&apos;ve increased the maximum number of rows by a factor of ten, and doubled the maximum number of columns. &lt;a href=&quot;http://helpdesk.graphpad.com/faq/viewfaq.cfm?faq=1501&quot;&gt;Full list of changes&lt;/a&gt;.  Contact me if you&apos;d like to beta test InStat 3.1.</description>
	<link>http://graphpad.com/blog/index.cfm?mode=entry&amp;entry=F96592A7-A2BF-BEBE-C3A7C0FD2EB47347</link>
	<dc:date>2009-06-19T09:42:12-08:00</dc:date>
	
	</item>
		
  	<item rdf:about="http://graphpad.com/blog/index.cfm?mode=entry&amp;entry=EF6AD51A-C501-C3CB-C548215F99683EAF">
	<title>&lt;p style=&quot;text-align: left; &quot;&gt;The essential concepts of statistics&lt;/p&gt;</title>
	<description>&lt;p style=&quot;text-align: right; &quot;&gt;&lt;i&gt;If you know twelve concepts about a given topic you will look like an expert to people who only know two or three.&lt;/i&gt;&lt;/p&gt;
&lt;p style=&quot;text-align: right; &quot;&gt;&lt;a href=&quot;http://www.dilbert.com/blog/entry/rule_of_twelve&quot;&gt;Scott Adams&lt;/a&gt;, creator of&amp;nbsp;&lt;a href=&quot;http://www.dilbert.com/strips/&quot;&gt;Dilbert&lt;/a&gt;&lt;/p&gt;
&lt;p style=&quot;text-align: left; &quot;&gt;When learning statistics, it is easy to get bogged down in the details, and lose track of the big picture. Here are the twelve most important concepts in statistical inference.&lt;/p&gt;
&lt;ul&gt;
    &lt;li style=&quot;text-align: left; &quot;&gt;&lt;b&gt;Statistics lets you make general conclusions from limited data.&lt;/b&gt;&lt;/li&gt;
    &lt;p&gt;The whole point of inferential statistics is to extrapolate from limited data to make a general conclusion.&amp;nbsp;&amp;quot;Descriptive statistics&amp;quot; simply describes data without reaching any general conclusions. But the challenging and difficult aspects of statistics are all about reaching general conclusions from limited data.&amp;nbsp;&lt;/p&gt;
    &lt;li&gt;&lt;b&gt;Statistics is not intuitive.&lt;/b&gt;&lt;/li&gt;
    &lt;p&gt;The word &amp;lsquo;intuitive&amp;rsquo; has two meanings. One meaning is &amp;ldquo;easy to use and understand.&amp;rdquo; That was my goal when I wrote&amp;nbsp;&lt;i&gt;Intuitive Biostatistics&lt;/i&gt;&amp;nbsp;.The other meaning of &apos;intuitive&apos; is &amp;ldquo;instinctive, or acting on what one feels to be true even without reason.&amp;rdquo; Using this definition, statistical reasoning is far from intuitive. When thinking about data,&amp;nbsp;intuition often leads us astray.&amp;nbsp;People frequently see patterns in random data and often jump to unwarranted conclusions. Statistical rigor is needed to make valid conclusions from data.&amp;nbsp;&lt;/p&gt;
    &lt;li&gt;&lt;b&gt;Statistical conclusions are always presented in terms of probability.&amp;nbsp;&lt;/b&gt;&lt;/li&gt;
    &lt;p&gt;&amp;quot;Statistics means never having to say you are certain.&amp;quot; &amp;nbsp; If a statistical conclusion ever seems certain, you probably are misunderstanding something. The whole point of statistics is to quantify uncertainty.&amp;nbsp;&lt;/p&gt;
    &lt;li&gt;&lt;b&gt;All statistical tests are based on assumptions.&lt;/b&gt;&lt;/li&gt;
    &lt;p&gt;Every statistical inference is based on a list of assumptions. Don&apos;t try to interpret any statistical results until after you have reviewed that list. An assumption behind every statistical calculation is that&amp;nbsp;the data were randomly sampled, or at least representative of, a larger population of values that could have been collected. If your data are not representative of a larger set of data you could have collected (but didn&apos;t), then statistical inference makes no sense.&lt;/p&gt;
    &lt;li&gt;&lt;b&gt;Decisions about how to analyze data should be made in advance.&lt;/b&gt;&lt;/li&gt;
    &lt;p&gt;Analyzing data requires many decisions. &amp;nbsp;Parametric or nonparametric test? Eliminate outliers or not? Transform the data first? Normalize to external control values? Adjust for covariates? Use weighting factors in regression? All these decisions (and more) should be part of experimental design. When decisions about statistical analysis are made after inspecting the data, it is too easy for statistical analysis to become a high-tech&amp;nbsp;&lt;a href=&quot;http://en.wikipedia.org/wiki/Ouija&quot;&gt;Ouja board&lt;/a&gt;&amp;nbsp;-- a method to produce preordained results,&amp;nbsp;rather an objective method of analyzing data.&lt;/p&gt;
    &lt;li&gt;&lt;b&gt;A confidence interval quantifies precision, and is easy to interpret.&lt;/b&gt;&lt;/li&gt;
    &lt;p&gt;Say you&apos;ve computed the mean of a set of values you&apos;ve collected,or the proportion of subjects where some event happened. Those values describe the sample you&apos;ve analyzed. But what about the overall population you sampled from? The true population mean (or proportion) might be higher, or it might be lower. The calculation of a 95% confidence interval takes into account sample size and scatter. &amp;nbsp;Given a set of assumptions, &amp;nbsp;you can be 95% sure that the confidence interval includes the true population value (which you could only know for sure by collecting an infinite amount of data). Of course, there is nothing special about 95% except tradition. Confidence itnervals can be computed for any degree of desired confidence. Amost all results -- proportions, relative risks, odds ratios, means, differences between means, slopes, rate constants... -- should be accompanied with a confidence interval.&amp;nbsp;&lt;/p&gt;
    &lt;li&gt;&lt;b&gt;A P values tests a null hypothesis, and is had to understand at first.&lt;/b&gt;&lt;/li&gt;
    &lt;p&gt;The logic of a P value seems strange at first. When testing whether two groups differ (different mean, different proportion, etc.), first hypothesize that the two populations are, in fact, identical. This is called the null hypothesis. Then ask: If thenull hypothesis were true, how unlikely would it be to randomly obtain samples where the difference is as large (or even larger) than actually observed? If the P value is large, your data are consistent with the null hypothesis. If the P value is small, there is only a small chance that random chance would have created as large a difference as actually observed. This makes you question whether the null hypothesis is true. &amp;nbsp;&amp;nbsp;&lt;/p&gt;
    &lt;li&gt;&lt;b&gt;&amp;quot;Statistically significant&amp;quot; does not mean the effect is large or scientifically important.&lt;/b&gt;&lt;/li&gt;
    &lt;p&gt;If the P value is less than 0.05 (an arbitrary, but well accepted threshold), the results are deemed to be statistically significant. That phrase sounds so definitive. But all it means is that, by chance alone, the difference (or association or correlation..) you observed (or one even larger) would happen less than 5% of the time. That&apos;s it. A tiny effect that is scientifically or clinically trivial can be statistically significant (especially with large samples). That conclusion can also be wrong, as you&apos;ll reach a conclusion that results are statistically significant 5% of the time just by chance.&amp;nbsp;&lt;/p&gt;
    &lt;b&gt;
    &lt;li&gt;&amp;quot;Not statistically significant&amp;quot; does not mean there is no difference (or association . . .).&lt;/li&gt;
    &lt;/b&gt;
    &lt;p&gt;If a difference is not statistically significant, you can conclude that the observed results are not inconsistent with the null hypothesis. Note the double negative. You cannot conclude that the null hypothesis is true. It is quite possible that the null hypothesis is false, and that there really is a difference between the populations. This is especially a problem with small sample sizes. &amp;nbsp;It makes sense to define a result as being statistically significant or not statistically significant when you need to make a decision based on this one result. Othewise, the concept of statistical significance adds little to data analysis.&lt;br /&gt;
    &lt;b&gt;     &lt;/b&gt;&lt;/p&gt;
    &lt;b&gt;
    &lt;li&gt;Multiple comparisons make it hard to interpret statistical results.&lt;/li&gt;
    &lt;/b&gt;
    &lt;p&gt;When many hypotheses are tested at once, the problem of multiple comparisons makes it very easy to be fooled. If 5% of tests will be &amp;quot;statistically significant&amp;quot; by chance, you expect lots of statistically significant results if you test many hypotheses. Special methods can be used to reduce the problem of &amp;nbsp;finding false, but statistically significant, results, but these methods also make it harder to find true effects.&amp;nbsp;Multiple comparisons can be insidious. It is only possible to correclty interpret statistical analyses when all analyses are planned, and all planned analyses are conducted and reported. However, these simple rules are widely broken.&amp;nbsp;&lt;/p&gt;
    &lt;b&gt;
    &lt;li&gt;Correlation does not mean causation.&lt;/li&gt;
    &lt;/b&gt;
    &lt;p&gt;A statistically significant correlation or association between two variables may indicate that one variable causes the other. But it may just mean that both are influenced by a third variable. Or it may be a coincidence.&lt;/p&gt;
    &lt;b&gt;
    &lt;li&gt;Published statistics tend to be optimistic.&lt;/li&gt;
    &lt;/b&gt;&lt;br /&gt;
    By the time you read a paper, a great deal of selection has occurred. When experiments are successful, scientists continue the project. Lots of other projects get abandoned.When the project is done, scientists are more likely to write up projects that lead to remarkable results, or to keep analyzing the data in various ways to extract a &amp;quot;statistically significant&amp;quot; conclusion. Finally, journals are more likely to publish &amp;ldquo;positive&amp;rdquo; studies. If the null hypothesis were true, you would expect a statistically significant result in 5% of experiments. But those 5% are more likely to get published than the other 95%.&lt;br /&gt;
    &amp;nbsp;
    &lt;p&gt;&amp;nbsp;&lt;/p&gt;
    &lt;p&gt;&amp;nbsp;&lt;/p&gt;
    &lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;/ul&gt;</description>
	<link>http://graphpad.com/blog/index.cfm?mode=entry&amp;entry=EF6AD51A-C501-C3CB-C548215F99683EAF</link>
	<dc:date>2009-06-17T11:11:44-08:00</dc:date>
	
	</item>
		
  	<item rdf:about="http://graphpad.com/blog/index.cfm?mode=entry&amp;entry=D06D115C-B65B-65DD-49D0E4D5EE843E6D">
	<title>&lt;p&gt;&amp;nbsp;Confidence intervals vs. confidence bands for survival curves&lt;/p&gt;</title>
	<description>&lt;p&gt;When Prism computes survival curves, it can also compute the 95% confidence interval at each time point (&lt;a href=&quot;http://www.graphpad.com/faq/viewfaq.cfm?faq=1397&quot;&gt;using two alternative methods&lt;/a&gt;). The methods are approximations, but can be interpreted like any confidence interval. You know the observed survival percentage at a certain time in your study, and can be 95% confident (given a set of &lt;a href=&quot;http://www.graphpad.com/help/Prism5/Prism5Help.html?checklist_survival_analyses.htm&quot;&gt;assumptions&lt;/a&gt;) that the confidence interval contains the true population value (which you could only know for sure if you had an infinite amount of data).&amp;nbsp;&lt;/p&gt;
&lt;p&gt;When these confidence intervals are plotted as error bars (left graph below) there is no problem. Prism can also connect the ends of the error bars, and create a shaded region (right graph below). This survival curve plots the survival of a sample of only seven people, so the confidence intervals are very wide. Prism file.&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;text-align: center; &quot;&gt;&lt;img width=&quot;662&quot; height=&quot;229&quot; alt=&quot;&quot; src=&quot;/faq/images/1499prism.png&quot; /&gt;&lt;/p&gt;
&lt;p&gt;The shaded region looks like the confidence bands computed by linear and nonlinear regression, so it is tempting to interpret these regions as confidence bands. But it is not correct to say that you can be 95% certain that these bands contain the entire survival curve. It is only correct to say that at any time point, there is a 95% chance that the interval contains the true percentage survival. The true survival curve (which you can&apos;t know) may be within the confidence intervals at some time points and outside the confidence intervals at other time points.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;It is possible (but not with Prism) to compute true confidence bands for survival curves, and these are wider than the confidence intervals shown above. The graph below (from &lt;a href=&quot;http://fmwww.bc.edu/repec/isug2008/coviello_2008.pdf&quot;&gt;Coviello&lt;/a&gt;) shows the survival curve in black (the sample was large, so the steps are small), the confidence limits in green, and the confidence bands in red. Confidence bands that are 95% certain to contain the entire survival curve (red) are wider than the confidence intervals for individual time points.&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;text-align: center; &quot;&gt;&lt;img width=&quot;575&quot; height=&quot;422&quot; alt=&quot;&quot; src=&quot;/faq/images/1499bands.png&quot; /&gt;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;text-align: center; &quot;&gt;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;text-align: left; &quot;&gt;(Thanks to Joe Felsenstein for pointing out the distinction between confidence intervals and confidence bands in survival curves. )&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;</description>
	<link>http://graphpad.com/blog/index.cfm?mode=entry&amp;entry=D06D115C-B65B-65DD-49D0E4D5EE843E6D</link>
	<dc:date>2009-06-11T10:45:57-08:00</dc:date>
	
	</item>
		</rdf:RDF> 