<?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: about sas warning : obtaining minimum variance.. in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/about-sas-warning-obtaining-minimum-variance/m-p/424893#M22342</link>
    <description>&lt;P&gt;Thank you for your reply.&lt;/P&gt;&lt;P&gt;when i search about this problem, i read about the solution which suggest PARMS.&lt;/P&gt;&lt;P&gt;But i dont know which PARMS i have to put in my syntax.&lt;/P&gt;&lt;P&gt;Is there any guide to get PARMS which can solve my problem?&lt;/P&gt;</description>
    <pubDate>Thu, 04 Jan 2018 12:33:43 GMT</pubDate>
    <dc:creator>aliceyang1102</dc:creator>
    <dc:date>2018-01-04T12:33:43Z</dc:date>
    <item>
      <title>about sas warning : obtaining minimum variance..</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/about-sas-warning-obtaining-minimum-variance/m-p/421903#M22200</link>
      <description>&lt;P&gt;&lt;SPAN class="lia-search-match-lithium"&gt;Hi, all.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="lia-search-match-lithium"&gt;i am trying to get results using sas university v.94&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="lia-search-match-lithium"&gt;in the study, I want to know effect of sadness to acting.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="lia-search-match-lithium"&gt;variables are&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="lia-search-match-lithium"&gt;sad: sadness(0,1)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="lia-search-match-lithium"&gt;sadcb: between subject in sadness&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="lia-search-match-lithium"&gt;sadcw: withins subject in sadness&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="lia-search-match-lithium"&gt;timec: time&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="lia-search-match-lithium"&gt;when i try this, i got the results.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc glimmix data=work.import1;&lt;/P&gt;&lt;P&gt;class id time;&lt;/P&gt;&lt;P&gt;model acting(event="1") = sad_lag1 sadcb_lag1 timec / link=logit&lt;/P&gt;&lt;P&gt;dist=binary ddf=95, 94, 95 solution cl;&lt;/P&gt;&lt;P&gt;random intercept / subject=id type=un g solution cl;&lt;/P&gt;&lt;P&gt;random time/ subject=id type=ar(1) residual;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="lia-search-match-lithium"&gt;but when i try this syntax&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;PROC GLIMMIX DATA=work.import1;&lt;/P&gt;&lt;P&gt;CLASS id time;&lt;/P&gt;&lt;P&gt;MODEL acting (EVENT="1")=sadcw sadcb timec/LINK=logit&lt;/P&gt;&lt;P&gt;DIST=binary DDF=95, 94, 95 SOLUTION CL;&lt;/P&gt;&lt;P&gt;RANDOM intercept/SUBJECT=id TYPE=un g SOLUTION CL;&lt;/P&gt;&lt;P&gt;RANDOM time/SUBJECT=id TYPE=ar(1) RESIDUAL;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;i got this warning.&lt;/P&gt;&lt;P&gt;&lt;A href="https://communities.sas.com/t5/SAS-Statistical-Procedures/WARNING-Obtaining-minimum-variance-quadratic-unbiased-estimates/m-p/161080#M8380" target="_blank"&gt;&lt;SPAN class="lia-search-match-lithium"&gt;WARNING&lt;/SPAN&gt;: Obtaining&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN class="lia-search-match-lithium"&gt;minimum&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN class="lia-search-match-lithium"&gt;variance&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN class="lia-search-match-lithium"&gt;quadratic&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN class="lia-search-match-lithium"&gt;unbiased&lt;/SPAN&gt;&lt;SPAN class="lia-search-match-lithium"&gt;estimates&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN class="lia-search-match-lithium"&gt;as&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN class="lia-search-match-lithium"&gt;starting&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN class="lia-search-match-lithium"&gt;values&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN class="lia-search-match-lithium"&gt;for&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;the covariance parameters failed.&lt;/A&gt;&lt;/P&gt;&lt;P&gt;please help if you know about this problem.&lt;/P&gt;&lt;P&gt;thank you&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 18 Dec 2017 02:22:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/about-sas-warning-obtaining-minimum-variance/m-p/421903#M22200</guid>
      <dc:creator>aliceyang1102</dc:creator>
      <dc:date>2017-12-18T02:22:58Z</dc:date>
    </item>
    <item>
      <title>Re: about sas warning : obtaining minimum variance..</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/about-sas-warning-obtaining-minimum-variance/m-p/424639#M22328</link>
      <description>&lt;P&gt;Using a PARMS statement to specify your own starting values can often get around this message.&amp;nbsp; GLIMMIX usually does a pretty good job in coming up with starting values, but you occasionally need to try your own values if you get a message like this.&amp;nbsp; The message can also indicate that your model is either too complicated or a poor fit to your data.&amp;nbsp; If you cannot get the model to converge no matter what starting values you try, then your model is telling you that it will just not work with this particular set of data.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Also, you do not need the TYPE=UN on the first RANDOM statement.&amp;nbsp; With a single RANDOM effect on the G-side, TYPE=UN is no different than specifying no TYPE= effect.&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 03 Jan 2018 17:44:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/about-sas-warning-obtaining-minimum-variance/m-p/424639#M22328</guid>
      <dc:creator>StatsMan</dc:creator>
      <dc:date>2018-01-03T17:44:06Z</dc:date>
    </item>
    <item>
      <title>Re: about sas warning : obtaining minimum variance..</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/about-sas-warning-obtaining-minimum-variance/m-p/424893#M22342</link>
      <description>&lt;P&gt;Thank you for your reply.&lt;/P&gt;&lt;P&gt;when i search about this problem, i read about the solution which suggest PARMS.&lt;/P&gt;&lt;P&gt;But i dont know which PARMS i have to put in my syntax.&lt;/P&gt;&lt;P&gt;Is there any guide to get PARMS which can solve my problem?&lt;/P&gt;</description>
      <pubDate>Thu, 04 Jan 2018 12:33:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/about-sas-warning-obtaining-minimum-variance/m-p/424893#M22342</guid>
      <dc:creator>aliceyang1102</dc:creator>
      <dc:date>2018-01-04T12:33:43Z</dc:date>
    </item>
    <item>
      <title>Re: about sas warning : obtaining minimum variance..</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/about-sas-warning-obtaining-minimum-variance/m-p/424894#M22343</link>
      <description>&lt;P&gt;You can try fitting a simpler model and using the final estimates from that model as starting values for the parameters in your new model.&amp;nbsp; You can use a range of values for the new parameters, if you do not have any insight as to what those values should be.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Always review the iteration history to make sure your model estimation has converged cleanly.&amp;nbsp; If you see the optimization jumping around a lot during the iteration history, that can be a sign that your model may not have converged to the true optimal solution.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 04 Jan 2018 12:49:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/about-sas-warning-obtaining-minimum-variance/m-p/424894#M22343</guid>
      <dc:creator>StatsMan</dc:creator>
      <dc:date>2018-01-04T12:49:24Z</dc:date>
    </item>
    <item>
      <title>Re: about sas warning : obtaining minimum variance..</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/about-sas-warning-obtaining-minimum-variance/m-p/425694#M22381</link>
      <description>&lt;P&gt;Thank you. I will try!!!!&lt;/P&gt;&lt;P&gt;Have a good day&lt;/P&gt;</description>
      <pubDate>Mon, 08 Jan 2018 07:39:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/about-sas-warning-obtaining-minimum-variance/m-p/425694#M22381</guid>
      <dc:creator>aliceyang1102</dc:creator>
      <dc:date>2018-01-08T07:39:06Z</dc:date>
    </item>
  </channel>
</rss>

