<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Have means, standard deviation, min, and max data for various groups. How to do statistical test in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Have-means-standard-deviation-min-and-max-data-for-various/m-p/73024#M35703</link>
    <description>&lt;P&gt;Oops I had a scoping error in the previous version of the script.&amp;nbsp; The updated versions is attached.&amp;nbsp; Read on for a discussion of teh scoping error.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;//--------------------------&lt;/P&gt;&lt;P&gt;The script&amp;nbsp; tasks were&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;SummaryOneway function scripting&lt;/LI&gt;&lt;LI&gt;Names Default to Here(1)&lt;/LI&gt;&lt;LI&gt;Regular oneway with raw data&lt;/LI&gt;&lt;LI&gt;Create summary table&lt;/LI&gt;&lt;LI&gt;SummaryOneway()&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;The last task throws an error because the function was defined outside of the Here scope, so to run, I could have changed the last task to ::SumaryOneway. Instead I made Names Default to Here(1) to be tht first task.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sat, 15 Sep 2018 08:04:32 GMT</pubDate>
    <dc:creator>gzmorgan0</dc:creator>
    <dc:date>2018-09-15T08:04:32Z</dc:date>
    <item>
      <title>Have means, standard deviation, min, and max data for various groups. How to do statistical tests?</title>
      <link>https://community.jmp.com/t5/Discussions/Have-means-standard-deviation-min-and-max-data-for-various/m-p/72334#M35591</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have multiple groups which each have a mean, min, standard deivation and max value. I don't know how many samples there were. How would I do statistical tests such as ANOVA with this data set?&lt;/P&gt;</description>
      <pubDate>Wed, 12 Sep 2018 14:34:16 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Have-means-standard-deviation-min-and-max-data-for-various/m-p/72334#M35591</guid>
      <dc:creator>TUStudent</dc:creator>
      <dc:date>2018-09-12T14:34:16Z</dc:date>
    </item>
    <item>
      <title>Re: Have means, standard deviation, min, and max data for various groups. How to do statistical test</title>
      <link>https://community.jmp.com/t5/Discussions/Have-means-standard-deviation-min-and-max-data-for-various/m-p/72495#M35631</link>
      <description>&lt;P&gt;TUStudent,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The bedrock of statistical power is "N" sample size.&amp;nbsp; &amp;nbsp;Suppose the group standard deviations are about the same, then a pooled&amp;nbsp; estimate of the std dev's can be compted. Then if you have some assurance that each group has a minimum number of independent samples,&amp;nbsp; that minimum number could be used for each group's sample size, and a worse case (lowest power) decision could be made.&amp;nbsp; &amp;nbsp; Similar to ANOM, Analysis of Means, assume minimum N =3:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Plot the group means, Y, versus the groups , X.&lt;/LI&gt;&lt;LI&gt;Add 3 reference lines to the Y axis: (1) the average of the group means; (2) that average + k*pooled std dev/sqrt(n); (3) that mean - k*pooled std dev/sqrt(n)&amp;nbsp; where k =Tukey HSD Quantile( .95, #groups, #groups*(3-1) ), assuming minimum N =3,&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;This is a visual exploration of means that are different from the overall mean. I was reluctant to respond, because this is a "what if" analysis, and the summary data could be biased by extreme outliers, etc.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have some formulas to compute the ANOVA using summary data, however, I found this JMP Usage Note circa JMP 8&amp;nbsp;&lt;A href="http://www.jmp.com/support/notes/35/253.html" target="_self"&gt;http://www.jmp.com/support/notes/35/253.html&lt;/A&gt;&amp;nbsp;that provides a surrogate method, attributed to David A. Larsen, to compute a Oneway Anova with summary data. It creates a visual display. This method&amp;nbsp;&lt;FONT color="#0000FF"&gt;&lt;U&gt;&lt;STRONG&gt;&amp;nbsp;does&lt;/STRONG&gt; &lt;/U&gt;&lt;/FONT&gt;require N.&amp;nbsp; I decided to write a simple script (caveat emptor, not much testing) to implement the method via a function SummaryAnova(). The script is attached with a usage example. The attached script example:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;uses the JMP sample data table Typying Data.jmp;&lt;/LI&gt;&lt;LI&gt;computes the raw data anova; creates a summary table;&amp;nbsp;&lt;/LI&gt;&lt;LI&gt;then calls the SummaryAnova() function to perform the surrogate analyses.&amp;nbsp;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;While the statistical tests are the same, it is not as informative as raw data to look for outliers and perform subsequent analyses.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I suppose this could be used which an assumed minimal N to do a worse case "what if" analysis.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Without N, that is all I have.&amp;nbsp; It always amazes me that so many summary reports that do not include N and N Missing. It is critical to any analyses.&amp;nbsp;&lt;/P&gt;&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;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 13 Sep 2018 09:23:32 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Have-means-standard-deviation-min-and-max-data-for-various/m-p/72495#M35631</guid>
      <dc:creator>gzmorgan0</dc:creator>
      <dc:date>2018-09-13T09:23:32Z</dc:date>
    </item>
    <item>
      <title>Re: Have means, standard deviation, min, and max data for various groups. How to do statistical test</title>
      <link>https://community.jmp.com/t5/Discussions/Have-means-standard-deviation-min-and-max-data-for-various/m-p/73024#M35703</link>
      <description>&lt;P&gt;Oops I had a scoping error in the previous version of the script.&amp;nbsp; The updated versions is attached.&amp;nbsp; Read on for a discussion of teh scoping error.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;//--------------------------&lt;/P&gt;&lt;P&gt;The script&amp;nbsp; tasks were&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;SummaryOneway function scripting&lt;/LI&gt;&lt;LI&gt;Names Default to Here(1)&lt;/LI&gt;&lt;LI&gt;Regular oneway with raw data&lt;/LI&gt;&lt;LI&gt;Create summary table&lt;/LI&gt;&lt;LI&gt;SummaryOneway()&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;The last task throws an error because the function was defined outside of the Here scope, so to run, I could have changed the last task to ::SumaryOneway. Instead I made Names Default to Here(1) to be tht first task.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 15 Sep 2018 08:04:32 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Have-means-standard-deviation-min-and-max-data-for-various/m-p/73024#M35703</guid>
      <dc:creator>gzmorgan0</dc:creator>
      <dc:date>2018-09-15T08:04:32Z</dc:date>
    </item>
  </channel>
</rss>

