<?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 proc glimmix error message - does not converge, I need help fixing this issue in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/proc-glimmix-error-message-does-not-converge-I-need-help-fixing/m-p/457379#M115958</link>
    <description>&lt;P&gt;I am using SAS 9.4. I have a factorial design for my experiment to try and establish common milkweed into a landscape using two main effects of: mowed plots vs unmowed plots, each of the main plots is divided into three sub-plots using three different rates of herbicide to suppress the grass in the landscape: a control rate, a low rate, and a high rate of glyphosate, and within the subplots I have four sub-subplots each with different milkweed seed densities: a control, a low density, a low density + mid-june mowing, and a high density. I am wanting to analyze the presence of common milkweed seedlings based seedlings being present or absent only. It runs fine up through the proc print data code; however once I try to run the Proc glimmix portion of the code it does not converge and I am needing help with trying to fix this so it converges. I attached my data excel file if that is useful in trying to help me.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is the code I have been trying to run:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;* Import the data;&lt;BR /&gt;proc import out = seedling_counts&lt;BR /&gt;datafile = '/folders/myfolders/AES Consulting/Lizotte-Hall, Sydney/Data/Aug2016counts.xlsx'&lt;BR /&gt;dbms = xlsx&lt;BR /&gt;replace;&lt;BR /&gt;getnames = yes;&lt;BR /&gt;datarow = 2;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;* Create a absense/presense variable for seedlings;&lt;BR /&gt;data seedling_counts;&lt;BR /&gt;set seedling_counts;&lt;BR /&gt;if seedling_counts &amp;gt; 0 then seedling_present = 1;&lt;BR /&gt;else seedling_present = 0;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;* Print the data;&lt;BR /&gt;proc print data = seedling_counts;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc glimmix data = seedling_counts plots = residualpanel;&lt;BR /&gt;class mowing herb seed rep;&lt;BR /&gt;model seedling_present = mowing herb seed rep / dist = binary link = logit;&lt;BR /&gt;random rep*mowing*herb;&lt;BR /&gt;lsmeans herb / diff;&lt;BR /&gt;run;&lt;/P&gt;</description>
    <pubDate>Wed, 25 Apr 2018 16:06:17 GMT</pubDate>
    <dc:creator>Sydneylh</dc:creator>
    <dc:date>2018-04-25T16:06:17Z</dc:date>
    <item>
      <title>proc glimmix error message - does not converge, I need help fixing this issue</title>
      <link>https://communities.sas.com/t5/SAS-Programming/proc-glimmix-error-message-does-not-converge-I-need-help-fixing/m-p/457379#M115958</link>
      <description>&lt;P&gt;I am using SAS 9.4. I have a factorial design for my experiment to try and establish common milkweed into a landscape using two main effects of: mowed plots vs unmowed plots, each of the main plots is divided into three sub-plots using three different rates of herbicide to suppress the grass in the landscape: a control rate, a low rate, and a high rate of glyphosate, and within the subplots I have four sub-subplots each with different milkweed seed densities: a control, a low density, a low density + mid-june mowing, and a high density. I am wanting to analyze the presence of common milkweed seedlings based seedlings being present or absent only. It runs fine up through the proc print data code; however once I try to run the Proc glimmix portion of the code it does not converge and I am needing help with trying to fix this so it converges. I attached my data excel file if that is useful in trying to help me.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is the code I have been trying to run:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;* Import the data;&lt;BR /&gt;proc import out = seedling_counts&lt;BR /&gt;datafile = '/folders/myfolders/AES Consulting/Lizotte-Hall, Sydney/Data/Aug2016counts.xlsx'&lt;BR /&gt;dbms = xlsx&lt;BR /&gt;replace;&lt;BR /&gt;getnames = yes;&lt;BR /&gt;datarow = 2;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;* Create a absense/presense variable for seedlings;&lt;BR /&gt;data seedling_counts;&lt;BR /&gt;set seedling_counts;&lt;BR /&gt;if seedling_counts &amp;gt; 0 then seedling_present = 1;&lt;BR /&gt;else seedling_present = 0;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;* Print the data;&lt;BR /&gt;proc print data = seedling_counts;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc glimmix data = seedling_counts plots = residualpanel;&lt;BR /&gt;class mowing herb seed rep;&lt;BR /&gt;model seedling_present = mowing herb seed rep / dist = binary link = logit;&lt;BR /&gt;random rep*mowing*herb;&lt;BR /&gt;lsmeans herb / diff;&lt;BR /&gt;run;&lt;/P&gt;</description>
      <pubDate>Wed, 25 Apr 2018 16:06:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/proc-glimmix-error-message-does-not-converge-I-need-help-fixing/m-p/457379#M115958</guid>
      <dc:creator>Sydneylh</dc:creator>
      <dc:date>2018-04-25T16:06:17Z</dc:date>
    </item>
    <item>
      <title>Re: proc glimmix error message - does not converge, I need help fixing this issue</title>
      <link>https://communities.sas.com/t5/SAS-Programming/proc-glimmix-error-message-does-not-converge-I-need-help-fixing/m-p/457397#M115962</link>
      <description>&lt;P&gt;I wonder if you can re-state the Random statement to make it more efficient. This paper by the SAS/STAT statisticians may provide tips on how to improve the specification of the model:&amp;nbsp;&lt;A href="https://support.sas.com/resources/papers/proceedings16/SAS6403-2016.pdf" target="_blank"&gt;https://support.sas.com/resources/papers/proceedings16/SAS6403-2016.pdf&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 25 Apr 2018 16:52:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/proc-glimmix-error-message-does-not-converge-I-need-help-fixing/m-p/457397#M115962</guid>
      <dc:creator>svh</dc:creator>
      <dc:date>2018-04-25T16:52:03Z</dc:date>
    </item>
  </channel>
</rss>

