<?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: MANOVA questions in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/MANOVA-questions/m-p/105836#M291633</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp; Thank you very much for the helpful reply.&amp;nbsp; As long as my code looks fine, then I'll assume the DFs are correct.&amp;nbsp; And, yes, I was thinking of DFs in a univariate sense.&amp;nbsp; So, if you know that the DFs tend to be different- which it sounds like you know this for a fact- then I feel comfortable going ahead and using this code and analysis.&amp;nbsp; Thank you for putting my mind at ease!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 14 Jul 2012 02:09:21 GMT</pubDate>
    <dc:creator>dwelsh</dc:creator>
    <dc:date>2012-07-14T02:09:21Z</dc:date>
    <item>
      <title>MANOVA questions</title>
      <link>https://communities.sas.com/t5/SAS-Programming/MANOVA-questions/m-p/105834#M291631</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp; I'm doing a MANOVA for the first time in SAS and I have a few questions.&amp;nbsp; I would appreciate any help that people can give.&lt;/P&gt;&lt;P&gt;&amp;nbsp; My design is kind of complicated, so let me briefly describe it.&amp;nbsp; I am measuring the shape of a fin of a fish.&amp;nbsp; To so this, I have 3 different metrics:&amp;nbsp; BLResid, SAResid, and AngleResid.&amp;nbsp; I want to know whether habitat, drainage, or sex (or any of their interactions) influence shape.&amp;nbsp; I also need to consider the population they are from in order to avoid pseudo-replication (different fish from the same population may not be considered independent).&amp;nbsp; Population is also nested within habitat*drainage.&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp; However, I need to specific the error term because I would like to test the main effects (habitat, drainage, or sex) or their interactions over either their interaction with population or sex*population.&lt;/P&gt;&lt;P&gt;&amp;nbsp; So, for instance, I need to test habitat over population(habitat*drainage).&amp;nbsp; The same is true for drainage and habitat*drainage.&amp;nbsp; For population(habitat*drainage), sex, and all interactions with sex (sex*habitat, sex*drainage, sex*habitat*drainage) I need to test over sex*population(habitat*drainage).&amp;nbsp; Really, the ONLY term being tested over the "normal" error is sex*population(habitat*drainage).&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp; Here is the code I'm using: &lt;/P&gt;&lt;P style="margin-bottom: 0.0001pt;"&gt;&lt;STRONG style="color: navy; background: none repeat scroll 0% 0% white; font-size: 10pt; font-family: 'Courier New';"&gt;proc&lt;/STRONG&gt; &lt;STRONG style="color: navy; background: none repeat scroll 0% 0% white; font-size: 10pt; font-family: 'Courier New';"&gt;glm&lt;/STRONG&gt; &lt;SPAN style="font-size: 10pt; font-family: 'Courier New'; color: blue; background: none repeat scroll 0% 0% white;"&gt;data&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt; font-family: 'Courier New'; color: black; background: none repeat scroll 0% 0% white;"&gt; = dfin0;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: 0.0001pt;"&gt;&amp;nbsp; &lt;SPAN lang="FR" style="font-size: 10pt; font-family: 'Courier New'; color: blue; background: none repeat scroll 0% 0% white;"&gt;class&lt;/SPAN&gt;&lt;SPAN lang="FR" style="font-size: 10pt; font-family: 'Courier New'; color: black; background: none repeat scroll 0% 0% white;"&gt; habitat sex drainage population;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: 0.0001pt;"&gt;&amp;nbsp; &lt;SPAN lang="FR" style="font-size: 10pt; font-family: 'Courier New'; color: blue; background: none repeat scroll 0% 0% white;"&gt;model&lt;/SPAN&gt;&lt;SPAN lang="FR" style="font-size: 10pt; font-family: 'Courier New'; color: black; background: none repeat scroll 0% 0% white;"&gt; BLResid SAResid AngleResid = habitat sex drainage habitat*drainage sex*drainage sex*habitat sex*habitat*drainage population(habitat*drainage) sex*population(habitat*drainage);&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: 0.0001pt;"&gt;&amp;nbsp; &lt;SPAN style="font-size: 10pt; font-family: 'Courier New'; color: blue; background: none repeat scroll 0% 0% white;"&gt;manova&lt;/SPAN&gt; &lt;SPAN style="font-size: 10pt; font-family: 'Courier New'; color: blue; background: none repeat scroll 0% 0% white;"&gt;h&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt; font-family: 'Courier New'; color: black; background: none repeat scroll 0% 0% white;"&gt; = _ALL_ &lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt; font-family: 'Courier New'; color: blue; background: none repeat scroll 0% 0% white;"&gt;e&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt; font-family: 'Courier New'; color: black; background: none repeat scroll 0% 0% white;"&gt; = sex*population(habitat*drainage);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: navy; background: none repeat scroll 0% 0% white; font-size: 10pt; font-family: 'Courier New';"&gt;run&lt;/STRONG&gt;&lt;SPAN style="font-size: 10pt; font-family: 'Courier New'; color: black; background: none repeat scroll 0% 0% white;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; font-family: 'Courier New'; color: black; background: none repeat scroll 0% 0% white;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; font-family: 'Courier New'; color: black; background: none repeat scroll 0% 0% white;"&gt;&amp;nbsp; What I've been doing is just changing the " &lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt; font-family: 'Courier New'; color: blue; background: none repeat scroll 0% 0% white;"&gt;e&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt; font-family: 'Courier New'; color: black; background: none repeat scroll 0% 0% white;"&gt; = " part to change it accordingly.&amp;nbsp; So, for habitat, drainage, and habitat*drainage " &lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt; font-family: 'Courier New'; color: blue; background: none repeat scroll 0% 0% white;"&gt;e&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt; font-family: 'Courier New'; color: black; background: none repeat scroll 0% 0% white;"&gt; = " is changed to " &lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt; font-family: 'Courier New'; color: blue; background: none repeat scroll 0% 0% white;"&gt;e&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt; font-family: 'Courier New'; color: black; background: none repeat scroll 0% 0% white;"&gt; = population(habitat*drainage) " (without the quotes, of course).&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; font-family: 'Courier New'; color: black; background: none repeat scroll 0% 0% white;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; font-family: 'Courier New'; color: black; background: none repeat scroll 0% 0% white;"&gt;&amp;nbsp; Here is the output I get (I apologize if the formatting is off):&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;MANOVA Test Criteria and Exact F Statistics for the Hypothesis of No Overall Habitat Effect&lt;/P&gt;&lt;P&gt;H = Type III SSCP Matrix for Habitat&lt;/P&gt;&lt;P&gt;E = Type III SSCP Matrix for Popul(Habita*Draina)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;S=1 M=0.5 N=-0.5&lt;/P&gt;&lt;P&gt;Statistic&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Value&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; F Value&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Num DF&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Den DF&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Pr &amp;gt; F&lt;/P&gt;&lt;P&gt;Wilks' Lambda&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0.52984406&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0.30&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 3&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0.8368&lt;/P&gt;&lt;P&gt;Pillai's Trace&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0.47015594&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0.30&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 3&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0.8368&lt;/P&gt;&lt;P&gt;Hotelling-Lawley Trace&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0.88734776&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0.30&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 3&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0.8368&lt;/P&gt;&lt;P&gt;Roy's Greatest Root&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0.88734776&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0.30&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 3&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0.8368&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; font-family: 'Courier New'; color: black; background: none repeat scroll 0% 0% white;"&gt;&amp;nbsp; That is the output for Habitat.&amp;nbsp; I have similar output for all terms in the model, but I didn't think it was necessary to copy them all into this forum.&amp;nbsp; &lt;SPAN style="font-size: 12pt;"&gt;&lt;STRONG&gt;Here are my questions:&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; font-family: 'Courier New'; color: black; background: none repeat scroll 0% 0% white;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: black; background: none repeat scroll 0% 0% white; font-size: 10pt; font-family: 'Courier New';"&gt;1.&amp;nbsp; Is my code correct for what I am trying to do?&lt;/STRONG&gt;&lt;SPAN style="font-size: 10pt; font-family: 'Courier New'; color: black; background: none repeat scroll 0% 0% white;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; font-family: 'Courier New'; color: black; background: none repeat scroll 0% 0% white;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; font-family: 'Courier New'; color: black; background: none repeat scroll 0% 0% white;"&gt;&lt;STRONG&gt;2.&amp;nbsp; Where are those DFs coming from?&lt;/STRONG&gt;&amp;nbsp; I only have 2 habitats (lakes and streams), so why is the "Num DF" &lt;SPAN style="text-decoration: underline;"&gt;3&lt;/SPAN&gt;?&amp;nbsp; Shouldn't it be 1 (2 minus 1)?&amp;nbsp; Similarly, if I'm testing over population(habitat*drainage), why is "Den DF" only &lt;SPAN style="text-decoration: underline;"&gt;1&lt;/SPAN&gt;?&amp;nbsp; I have 9 populations.&amp;nbsp; Shouldn't it be 8 (9 minus 1)?&amp;nbsp; &lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;SPAN style="font-size: 10pt; font-family: 'Courier New'; color: black; background: none repeat scroll 0% 0% white;"&gt;These are my questions and I'm hoping someone can help, because until someone does, I'm not confident I'm doing the MANOVA properly.&amp;nbsp; ANY help would be greatly appreciated!&amp;nbsp; Thank you!! &lt;/SPAN&gt;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; font-family: 'Courier New'; color: black; background: none repeat scroll 0% 0% white;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jul 2012 15:50:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/MANOVA-questions/m-p/105834#M291631</guid>
      <dc:creator>dwelsh</dc:creator>
      <dc:date>2012-07-12T15:50:01Z</dc:date>
    </item>
    <item>
      <title>Re: MANOVA questions</title>
      <link>https://communities.sas.com/t5/SAS-Programming/MANOVA-questions/m-p/105835#M291632</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;1. As far as I can tell, your code is fine; however you can put multiple manova statements into a single PROC GLM so you don't need to re-run PROC GLM each time to change the error term and hypothesis terms.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. The DF for a multivariate test is not the same as the DF for a univariate test, which obviously you are thinking about. I haven't gone back to the formulas for these multivariate tests, but I'm pretty sure SAS has done the job of coding these values properly.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Jul 2012 14:31:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/MANOVA-questions/m-p/105835#M291632</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2012-07-13T14:31:21Z</dc:date>
    </item>
    <item>
      <title>Re: MANOVA questions</title>
      <link>https://communities.sas.com/t5/SAS-Programming/MANOVA-questions/m-p/105836#M291633</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp; Thank you very much for the helpful reply.&amp;nbsp; As long as my code looks fine, then I'll assume the DFs are correct.&amp;nbsp; And, yes, I was thinking of DFs in a univariate sense.&amp;nbsp; So, if you know that the DFs tend to be different- which it sounds like you know this for a fact- then I feel comfortable going ahead and using this code and analysis.&amp;nbsp; Thank you for putting my mind at ease!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 14 Jul 2012 02:09:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/MANOVA-questions/m-p/105836#M291633</guid>
      <dc:creator>dwelsh</dc:creator>
      <dc:date>2012-07-14T02:09:21Z</dc:date>
    </item>
    <item>
      <title>Re: MANOVA questions</title>
      <link>https://communities.sas.com/t5/SAS-Programming/MANOVA-questions/m-p/105837#M291634</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi again,&lt;/P&gt;&lt;P&gt;&amp;nbsp; I have a somewhat related follow-up question.&amp;nbsp; I would appreciate anyone's thoughts...&lt;/P&gt;&lt;P&gt;&amp;nbsp; What's the best way to GRAPHICALLY show the results from a MANOVA analysis?&amp;nbsp; For example, sex (male vs female) comes out to be significant in my MANOVA analysis.&amp;nbsp; If this was a PCA, I would make a bar graph and put the PC score on the y-axis and sex on the x-axis.&amp;nbsp; Would I put the Wilk's test statistic on the y-axis instead?&amp;nbsp; That seems somewhat odd to me. Or would I make graphs showing the raw means?&amp;nbsp; That doesn't seem quite right, since MANOVA combines all three variables (BLResid, SAResid, and AngleResid) into one analysis.&lt;/P&gt;&lt;P&gt;&amp;nbsp; Does anyone out there have any suggestions on the best way to show results from a MANOVA (other than something text-based, like a Table)?&amp;nbsp; Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Jul 2012 14:16:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/MANOVA-questions/m-p/105837#M291634</guid>
      <dc:creator>dwelsh</dc:creator>
      <dc:date>2012-07-16T14:16:50Z</dc:date>
    </item>
    <item>
      <title>Re: MANOVA questions</title>
      <link>https://communities.sas.com/t5/SAS-Programming/MANOVA-questions/m-p/105838#M291635</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;For MANOVA, I usually go with something like a bi-plot. Although you can produce bi-plots in SAS, I'm not 100% sure I know how to create this plot in the MANOVA situation. It's pretty easy in JMP.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Jul 2012 14:42:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/MANOVA-questions/m-p/105838#M291635</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2012-07-16T14:42:37Z</dc:date>
    </item>
  </channel>
</rss>

