<?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: Choosing multivariate multiple regression in GLIMMIX in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/Choosing-multivariate-multiple-regression-in-GLIMMIX/m-p/183020#M9500</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Steve, thank you so much for your input.&amp;nbsp; You are correct that my only dependent variable is count per plot.&amp;nbsp; But I have counts for each species group per sample unit, so I am unsure if each should be viewed as a separate variable or not. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My first instinct was to fit "species group" as a fixed effect, as you mentioned, but wasn't sure of the validity of this approach.&amp;nbsp; It seemed odd to include this as a fixed effect, because it is a classification of the dependent variable, and not a treatment or other independent variable.&amp;nbsp; But here is the code for my initial attempt at the problem, where I DID try to model &lt;EM&gt;species group &lt;/EM&gt; as a fixed effect (&lt;EM&gt;IND&lt;/EM&gt; in the model statement).&amp;nbsp; More info about my design is at this post &lt;A __default_attr="232281" __jive_macro_name="message" class="jive_macro jive_macro_message" href="https://communities.sas.com/" modifiedtitle="true" title="Choosing an Appropriate Procedure"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*"Site" identifies research site,"IND" is species group, "hydro" is a continuous variable, a measure of plot wetness, and "LAI" is a continuous variable, a measure of leaf area index. &lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;proc glimmix data=shrub maxopt=100;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;class site ind;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;model count=&amp;nbsp; hydro&amp;nbsp;&amp;nbsp; ind&amp;nbsp;&amp;nbsp;&amp;nbsp; ind*hydro&amp;nbsp; / dist=poisson link=log solution;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;random&amp;nbsp; site;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;covtest 'Global Test random effects' ZEROG / CL WALD;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;output out=glimmixout predicted=pred Pearson=PearsonRes; run;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;STRONG&gt;So, are you saying it is valid to model IND as a fixed effect, even though it is really just a category of the dependent variable?&lt;/STRONG&gt;&amp;nbsp; (e.g. all shrubs were counted, and tallied according to species groups.&amp;nbsp; IND identifies those species groups.&amp;nbsp;&amp;nbsp; &lt;STRONG&gt; IF SO, is my model statement stated correctly?&amp;nbsp; &lt;/STRONG&gt;I am wanting to know if the regression slopes of each species response (count) to hydrology differ from one another.&amp;nbsp; In other words, do species respond the same, or differently to increasing wetness?&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;Thank you again.&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;Meghan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 15 Oct 2014 02:11:00 GMT</pubDate>
    <dc:creator>mrlang02</dc:creator>
    <dc:date>2014-10-15T02:11:00Z</dc:date>
    <item>
      <title>Choosing multivariate multiple regression in GLIMMIX</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Choosing-multivariate-multiple-regression-in-GLIMMIX/m-p/183018#M9498</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you to all who read my previous pos, &lt;A __default_attr="232281" __jive_macro_name="message" class="jive_macro jive_macro_message" href="https://communities.sas.com/" modifiedtitle="true" title="Choosing an Appropriate Procedure, "&gt;&lt;/A&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;but I unfortunately did not get a response.&amp;nbsp; After rethinking my problem, I decided that Canonical Correspondence Analysis or Multivariate Multiple Regression might fit the bill.&amp;nbsp; I am first going to try using Multivariate Multiple Regression, as I can (presumably) do this in GLIMMIX, where I would be able to include random effects (research site is a random effect in my design), and specify non-normal distributions (Poisson, as I am using count data). &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="line-height: 1.5em; font-size: 10pt;"&gt; Briefly, my research question involves modeling how the density of 3 classes of wetland plants (my response variables) varies with plot hydrology (hydro) and leaf area index (LAI).&amp;nbsp; I want to be able to state results to answer these subquestions:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="line-height: 1.5em; font-size: 10pt;"&gt;-Does LAI, hydrology, and the interaction between these two factors affect the density of wetland plants?&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="line-height: 1.5em; font-size: 10pt;"&gt;-Do the different classes of plants respond differently to these factors and if so, in what direction?&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff;"&gt;&lt;STRONG&gt;My 2 questions at this point are &lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff;"&gt;&lt;STRONG&gt;1) Can I model this question in GLIMMIX, using multivariate multiple regression (I believe I have to use the BYOBS option) ?&amp;nbsp; &lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff;"&gt;&lt;STRONG&gt;2) Will I be able to draw the conclusions I aim to, as stated above, by using this method?&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If someone can answer this question, I have more questions about the coding, but I figure I need to start with basics right now!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Additionally, if you have other suggestions about how to model the data, please contribute!&lt;/P&gt;&lt;P&gt;Meghan&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MORE INFO ABOUT MY DATA:&lt;/P&gt;&lt;P&gt;I have 3 research sites&lt;/P&gt;&lt;P&gt;Within each research site, I have multiple plots, each with counts of each class of wetland plant, and measures of plot hydrology and LAI.&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Oct 2014 02:54:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Choosing-multivariate-multiple-regression-in-GLIMMIX/m-p/183018#M9498</guid>
      <dc:creator>mrlang02</dc:creator>
      <dc:date>2014-10-14T02:54:15Z</dc:date>
    </item>
    <item>
      <title>Re: Choosing multivariate multiple regression in GLIMMIX</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Choosing-multivariate-multiple-regression-in-GLIMMIX/m-p/183019#M9499</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I believe you are heading down the right road, but before I commit, one question?&amp;nbsp; What are the dependent variables.&amp;nbsp; From this description, I see only one dependent variable--count per plot.&amp;nbsp; If you have multiple species, I would fit that as a fixed effect, with possible different variances (GROUP= option).&amp;nbsp; Can you be a bit more specific on the design (number of species, number of observations, etc.)?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Steve Denham&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Oct 2014 11:43:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Choosing-multivariate-multiple-regression-in-GLIMMIX/m-p/183019#M9499</guid>
      <dc:creator>SteveDenham</dc:creator>
      <dc:date>2014-10-14T11:43:06Z</dc:date>
    </item>
    <item>
      <title>Re: Choosing multivariate multiple regression in GLIMMIX</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Choosing-multivariate-multiple-regression-in-GLIMMIX/m-p/183020#M9500</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Steve, thank you so much for your input.&amp;nbsp; You are correct that my only dependent variable is count per plot.&amp;nbsp; But I have counts for each species group per sample unit, so I am unsure if each should be viewed as a separate variable or not. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My first instinct was to fit "species group" as a fixed effect, as you mentioned, but wasn't sure of the validity of this approach.&amp;nbsp; It seemed odd to include this as a fixed effect, because it is a classification of the dependent variable, and not a treatment or other independent variable.&amp;nbsp; But here is the code for my initial attempt at the problem, where I DID try to model &lt;EM&gt;species group &lt;/EM&gt; as a fixed effect (&lt;EM&gt;IND&lt;/EM&gt; in the model statement).&amp;nbsp; More info about my design is at this post &lt;A __default_attr="232281" __jive_macro_name="message" class="jive_macro jive_macro_message" href="https://communities.sas.com/" modifiedtitle="true" title="Choosing an Appropriate Procedure"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*"Site" identifies research site,"IND" is species group, "hydro" is a continuous variable, a measure of plot wetness, and "LAI" is a continuous variable, a measure of leaf area index. &lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;proc glimmix data=shrub maxopt=100;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;class site ind;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;model count=&amp;nbsp; hydro&amp;nbsp;&amp;nbsp; ind&amp;nbsp;&amp;nbsp;&amp;nbsp; ind*hydro&amp;nbsp; / dist=poisson link=log solution;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;random&amp;nbsp; site;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;covtest 'Global Test random effects' ZEROG / CL WALD;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;output out=glimmixout predicted=pred Pearson=PearsonRes; run;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;STRONG&gt;So, are you saying it is valid to model IND as a fixed effect, even though it is really just a category of the dependent variable?&lt;/STRONG&gt;&amp;nbsp; (e.g. all shrubs were counted, and tallied according to species groups.&amp;nbsp; IND identifies those species groups.&amp;nbsp;&amp;nbsp; &lt;STRONG&gt; IF SO, is my model statement stated correctly?&amp;nbsp; &lt;/STRONG&gt;I am wanting to know if the regression slopes of each species response (count) to hydrology differ from one another.&amp;nbsp; In other words, do species respond the same, or differently to increasing wetness?&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;Thank you again.&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;Meghan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Oct 2014 02:11:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Choosing-multivariate-multiple-regression-in-GLIMMIX/m-p/183020#M9500</guid>
      <dc:creator>mrlang02</dc:creator>
      <dc:date>2014-10-15T02:11:00Z</dc:date>
    </item>
    <item>
      <title>Re: Choosing multivariate multiple regression in GLIMMIX</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Choosing-multivariate-multiple-regression-in-GLIMMIX/m-p/183021#M9501</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;IND is certainly a fixed effect to my way of thinking.&amp;nbsp; I don't see it as a classification of the dependent variable at all. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It appears that you went to a site, found a species, and counted the number of plants, found the next species, counted, etc. Hydro was measured for the entire site, while leaf area index is probably a composite(?) across the plants at a site.&amp;nbsp; Am I getting this right? If so, then try:&lt;/P&gt;&lt;P style="background-color: #ffffff; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;proc glimmix data=shrub maxopt=100;&lt;/P&gt;&lt;P style="background-color: #ffffff; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;class site ind;&lt;/P&gt;&lt;P style="background-color: #ffffff; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;model count=&amp;nbsp; hydro lai&amp;nbsp; ind&amp;nbsp;&amp;nbsp;&amp;nbsp; ind*hydro&amp;nbsp; ind*lai&amp;nbsp; ind*hydro*lai / dist=poisson link=log solution;&lt;/P&gt;&lt;P style="background-color: #ffffff; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;random&amp;nbsp; site;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="background-color: #ffffff; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;The solution vector is going to have a lot of zeroes, I suspect, so slopes will have to be calculated from the estimates OR you could try a "means model" approach where the model statement is something like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="background-color: #ffffff; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;model count=ind*hydro*lai/noint dist=poisson solution;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="background-color: #ffffff; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;One other consideration--ecological counts are almost always overdispersed, so you may want to consider a negative binomial distribution.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="background-color: #ffffff; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Steve Denham&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Oct 2014 11:44:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Choosing-multivariate-multiple-regression-in-GLIMMIX/m-p/183021#M9501</guid>
      <dc:creator>SteveDenham</dc:creator>
      <dc:date>2014-10-15T11:44:56Z</dc:date>
    </item>
    <item>
      <title>Re: Choosing multivariate multiple regression in GLIMMIX</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Choosing-multivariate-multiple-regression-in-GLIMMIX/m-p/183022#M9502</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Just saw on the other thread that you have a lot of zeroes.&amp;nbsp; Zero inflation is something that isn't handled well by GLIMMIX in its current version.&amp;nbsp; When you say "a lot", what proportion of zeroes do you have?&amp;nbsp; You may have to treat site as a fixed effect, and model this in PROC GENMOD to get reasonable values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Steve Denham&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Oct 2014 12:04:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Choosing-multivariate-multiple-regression-in-GLIMMIX/m-p/183022#M9502</guid>
      <dc:creator>SteveDenham</dc:creator>
      <dc:date>2014-10-15T12:04:11Z</dc:date>
    </item>
    <item>
      <title>Re: Choosing multivariate multiple regression in GLIMMIX</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Choosing-multivariate-multiple-regression-in-GLIMMIX/m-p/183023#M9503</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Steve, you anticipated a lot of my issues.&amp;nbsp; I have had a lot of trouble using my data sets in PROC GLIMMIX because of excess zeroes and even using the negative binomial doesn't help with many of the tests.&amp;nbsp; My next thoughts were to go to a zero-inflated model using NLMIXED, but it looks kind of complicated, so I've been trying to avoid that.&amp;nbsp; But maybe I will try genmod.&amp;nbsp; My only concern there is the number of random effects--for the purposes of asking the question in the forum, I simplified the random effects to SITE only.&amp;nbsp;&amp;nbsp; My sampling design didn't seem complicated at the time, but when I got to the stats, I realized it was.&amp;nbsp; There are three different spatial scales SITE, SIDE, TRANSECT1, TRANSECT 2, with each "nesting" inside the other.&amp;nbsp; TRANSECT 2 is the unit in which I actually sampled the plants.&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But I think this gives me a better idea of my options and confirms the issues I've been having getting the models to run.&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And in response to your comment "&lt;SPAN style="color: #333333; font-family: Arial, Helvetica, sans-serif; font-size: 12px; background-color: #ffffff;"&gt;IND is certainly a fixed effect to my way of thinking.&amp;nbsp; I don't see it as a classification of the dependent variable at all.".&amp;nbsp; I &lt;/SPAN&gt;just want to make sure you understand what how the IND (indicator status of each plant) variable relates to my data.&amp;nbsp; Let me clarify. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P dir="ltr" id="yiv0370939066yui_3_16_0_1_1413342678590_2758" style="color: #000000; font-family: HelveticaNeue, 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 10.3999996185303px;"&gt;&lt;SPAN id="yiv0370939066yui_3_16_0_1_1413342678590_2782" style="font-size: 12pt;"&gt;I counted all stems of all species in each sampling unit,&amp;nbsp; and each sampling unit also has a measure of Leaf Area Index (LAI), and the hydro variable.&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P dir="ltr" id="yiv0370939066yui_3_16_0_1_1413342678590_2758" style="color: #000000; font-family: HelveticaNeue, 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 10.3999996185303px;"&gt;&lt;/P&gt;&lt;P dir="ltr" id="yiv0370939066yui_3_16_0_1_1413342678590_2758" style="color: #000000; font-family: HelveticaNeue, 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 10.3999996185303px;"&gt;&lt;SPAN id="yiv0370939066yui_3_16_0_1_1413342678590_2781" style="font-size: 12pt;"&gt;Then, because it made more ecological sense, I aggregated stem counts of species with the same indicator status (IND).&amp;nbsp; So I have stem counts for each indicator group in each sampling unit, that were calculated simply by adding together counts of species with the same indicator status in each sampling unit.&amp;nbsp;&amp;nbsp; Indicator status is a property of the species, not the sampling unit.&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P dir="ltr" id="yiv0370939066yui_3_16_0_1_1413342678590_2758" style="color: #000000; font-family: HelveticaNeue, 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 10.3999996185303px;"&gt;&lt;/P&gt;&lt;P dir="ltr" style="color: #000000; font-family: HelveticaNeue, 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 10.3999996185303px;"&gt;&lt;/P&gt;&lt;P dir="ltr" id="yiv0370939066yui_3_16_0_1_1413342678590_2758" style="color: #000000; font-family: HelveticaNeue, 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 10.3999996185303px;"&gt;&lt;SPAN id="yui_3_16_0_1_1413342678590_33287" style="font-size: 12pt;"&gt;For example if I had this data for a sampling unit&lt;/SPAN&gt;&lt;/P&gt;&lt;P dir="ltr" id="yiv0370939066yui_3_16_0_1_1413342678590_2758" style="color: #000000; font-family: HelveticaNeue, 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 10.3999996185303px;"&gt;&lt;/P&gt;&lt;P dir="ltr" id="yiv0370939066yui_3_16_0_1_1413342678590_2758" style="color: #000000; font-family: HelveticaNeue, 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 10.3999996185303px;"&gt;&lt;STRONG style="font-size: 12pt;"&gt;SPECIES&amp;nbsp; STEM_COUNT&amp;nbsp;&amp;nbsp; IND&lt;/STRONG&gt;&lt;/P&gt;&lt;P dir="ltr" id="yiv0370939066yui_3_16_0_1_1413342678590_2758" style="color: #000000; font-family: HelveticaNeue, 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 10.3999996185303px;"&gt;&lt;SPAN style="font-size: 12pt;"&gt;A&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; FAC&lt;/SPAN&gt;&lt;/P&gt;&lt;P dir="ltr" id="yiv0370939066yui_3_16_0_1_1413342678590_2758" style="color: #000000; font-family: HelveticaNeue, 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 10.3999996185303px;"&gt;&lt;SPAN style="font-size: 12pt;"&gt;B&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; 2&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; FAC&lt;/SPAN&gt;&lt;/P&gt;&lt;P dir="ltr" id="yiv0370939066yui_3_16_0_1_1413342678590_2758" style="color: #000000; font-family: HelveticaNeue, 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 10.3999996185303px;"&gt;&lt;SPAN style="font-size: 12pt;"&gt;C&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; FACW&lt;/SPAN&gt;&lt;/P&gt;&lt;P dir="ltr" id="yiv0370939066yui_3_16_0_1_1413342678590_2758" style="color: #000000; font-family: HelveticaNeue, 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 10.3999996185303px;"&gt;&lt;SPAN style="font-size: 12pt;"&gt;D&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; FACW&lt;/SPAN&gt;&lt;/P&gt;&lt;P dir="ltr" id="yiv0370939066yui_3_16_0_1_1413342678590_2758" style="color: #000000; font-family: HelveticaNeue, 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 10.3999996185303px;"&gt;&lt;/P&gt;&lt;P dir="ltr" id="yiv0370939066yui_3_16_0_1_1413342678590_2758" style="color: #000000; font-family: HelveticaNeue, 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 10.3999996185303px;"&gt;&lt;SPAN style="font-size: 12pt;"&gt;Then I ended up with this summary data set, where the identify of individual species is omitted.&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P dir="ltr" id="yiv0370939066yui_3_16_0_1_1413342678590_2758" style="color: #000000; font-family: HelveticaNeue, 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 10.3999996185303px;"&gt;&lt;/P&gt;&lt;P dir="ltr" id="yiv0370939066yui_3_16_0_1_1413342678590_2758" style="color: #000000; font-family: HelveticaNeue, 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 10.3999996185303px;"&gt;&lt;SPAN style="font-size: 12pt;"&gt;&lt;STRONG id="yiv0370939066yui_3_16_0_1_1413342678590_3391"&gt;IND&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; STEM_COUNT&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P dir="ltr" id="yiv0370939066yui_3_16_0_1_1413342678590_2758" style="color: #000000; font-family: HelveticaNeue, 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 10.3999996185303px;"&gt;&lt;SPAN style="font-size: 12pt;"&gt;FAC&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 &lt;/SPAN&gt;&lt;/P&gt;&lt;P dir="ltr" id="yiv0370939066yui_3_16_0_1_1413342678590_2758" style="color: #000000; font-family: HelveticaNeue, 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 10.3999996185303px;"&gt;&lt;SPAN style="font-size: 12pt;"&gt;FACW&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2&lt;/SPAN&gt;&lt;/P&gt;&lt;P dir="ltr" id="yiv0370939066yui_3_16_0_1_1413342678590_2758" style="color: #000000; font-family: HelveticaNeue, 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 10.3999996185303px;"&gt;&lt;/P&gt;&lt;P dir="ltr" id="yiv0370939066yui_3_16_0_1_1413342678590_2758" style="color: #000000; font-family: HelveticaNeue, 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 10.3999996185303px;"&gt;&lt;SPAN style="font-size: 12pt;"&gt;And then, for each sampling unit I have data about hydrology and LAI.&amp;nbsp; I want to know if species of different indicator statuses respond significanty and differently to hydrology. &lt;/SPAN&gt;&lt;/P&gt;&lt;P dir="ltr" style="color: #000000; font-family: HelveticaNeue, 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 10.3999996185303px;"&gt;&lt;SPAN style="font-size: 12pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P dir="ltr" style="color: #000000; font-family: HelveticaNeue, 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 10.3999996185303px;"&gt;&lt;SPAN style="font-size: 12pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P dir="ltr" style="color: #000000; font-family: HelveticaNeue, 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 10.3999996185303px;"&gt;&lt;SPAN style="font-size: 12pt;"&gt;Thank you for all your help!&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Oct 2014 15:03:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Choosing-multivariate-multiple-regression-in-GLIMMIX/m-p/183023#M9503</guid>
      <dc:creator>mrlang02</dc:creator>
      <dc:date>2014-10-15T15:03:44Z</dc:date>
    </item>
    <item>
      <title>Re: Choosing multivariate multiple regression in GLIMMIX</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Choosing-multivariate-multiple-regression-in-GLIMMIX/m-p/183024#M9504</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So IND isn't really a species indicator.&amp;nbsp; Is it a "stage" indicator that can easily be seen to be similar from species to species?&amp;nbsp; I imagine something like (and pardon my ignorance of the proper botanical nomenclature) "pre-bloom", "bloom", "early fruit", "late fruit"--although maybe not so many categories.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now on to design.&amp;nbsp; It looks like SIDE, TRANSECT1, TRANSECT2 are all nested levels within SITE.&amp;nbsp; Since they really are random samples of something, why not allow GLIMMIX to sum the counts per site?&amp;nbsp; That's easily done by not specifying SIDE, TRANSECT1 and TRANSECT2 as effects--and it might overcome some of the zero inflation.&amp;nbsp; I would guess that you really don't have enough data to get good variance component estimates for a four-level hierarchical model.&amp;nbsp; And to really look at the effect of the two covariates, you would need to look at random slope models that accommodate all levels, plus the interaction of the fixed and random effects, fit as random effects.&amp;nbsp; I would really try to stay with the simpler, more aggregate model you have.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And since all of the variability is being model as G side variance component, I would consider method=laplace in the PROC GLIMMIX statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Steve Denham&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Oct 2014 18:43:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Choosing-multivariate-multiple-regression-in-GLIMMIX/m-p/183024#M9504</guid>
      <dc:creator>SteveDenham</dc:creator>
      <dc:date>2014-10-15T18:43:17Z</dc:date>
    </item>
  </channel>
</rss>

