<?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: What is the &amp;quot;intercept&amp;quot; line in my output, and why don't I have any values for my last in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/What-is-the-quot-intercept-quot-line-in-my-output-and-why-don-t/m-p/916809#M45486</link>
    <description>&lt;P&gt;remove the "/" before NOINT.&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 19 Feb 2024 15:53:46 GMT</pubDate>
    <dc:creator>jiltao</dc:creator>
    <dc:date>2024-02-19T15:53:46Z</dc:date>
    <item>
      <title>What is the "intercept" line in my output, and why don't I have any values for my last treatment?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/What-is-the-quot-intercept-quot-line-in-my-output-and-why-don-t/m-p/916791#M45479</link>
      <description>&lt;P&gt;Hi, I have made my codes using the GlIMMIX procedure and the MIXED procedure. Both have resulted in an "intercept" line in the "Solution for fixed effects" table, and no values for my fourth treatment. Here is my code:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=""&gt;proc mixed data=ZOO_TRUIE;
  class TRAIT truie;
  model PDS_SAILLIE=TRAIT/alpha=0.05;
  repeated / group=TRAIT;
  ods output tests3=tests;
  lsmeans TRAIT / cl;
  ods output lsmeans=lsm;
run;
proc glimmix data=ZOO_TRUIE;
	class trait truie;
	model PDS_SAILLIE=trait/alpha=0.05;
  	lsmeans trait / adjust=tukey lines;
  output out=second predicted=pred residual=resid residual(noblup)=mresid student=studentresid student(noblup)=smresid;
Run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;Here is what the output table from both procedures look like:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="caroline_rg_1-1708353801328.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/93914i6921CC8C287AE726/image-size/medium?v=v2&amp;amp;px=400" role="button" title="caroline_rg_1-1708353801328.png" alt="caroline_rg_1-1708353801328.png" /&gt;&lt;/span&gt;&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;</description>
      <pubDate>Mon, 19 Feb 2024 14:44:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/What-is-the-quot-intercept-quot-line-in-my-output-and-why-don-t/m-p/916791#M45479</guid>
      <dc:creator>caroline_rg</dc:creator>
      <dc:date>2024-02-19T14:44:24Z</dc:date>
    </item>
    <item>
      <title>Re: What is the "intercept" line in my output, and why don't I have any values for my last</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/What-is-the-quot-intercept-quot-line-in-my-output-and-why-don-t/m-p/916799#M45480</link>
      <description>&lt;P&gt;The usage note below explains how to interpretate the parameter estimates for CLASS variables:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://support.sas.com/kb/38/384.html" target="_blank"&gt;38384 - Interpreting the results of the SOLUTION option in the MODEL statement of PROC GLM (sas.com)&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Hope this helps,&lt;/P&gt;
&lt;P&gt;Jill&lt;/P&gt;</description>
      <pubDate>Mon, 19 Feb 2024 15:11:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/What-is-the-quot-intercept-quot-line-in-my-output-and-why-don-t/m-p/916799#M45480</guid>
      <dc:creator>jiltao</dc:creator>
      <dc:date>2024-02-19T15:11:55Z</dc:date>
    </item>
    <item>
      <title>Re: What is the "intercept" line in my output, and why don't I have any values for my last</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/What-is-the-quot-intercept-quot-line-in-my-output-and-why-don-t/m-p/916802#M45482</link>
      <description>&lt;P&gt;Is there a way to run these code with no intercept line?&lt;/P&gt;</description>
      <pubDate>Mon, 19 Feb 2024 15:25:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/What-is-the-quot-intercept-quot-line-in-my-output-and-why-don-t/m-p/916802#M45482</guid>
      <dc:creator>caroline_rg</dc:creator>
      <dc:date>2024-02-19T15:25:48Z</dc:date>
    </item>
    <item>
      <title>Re: What is the "intercept" line in my output, and why don't I have any values for my last</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/What-is-the-quot-intercept-quot-line-in-my-output-and-why-don-t/m-p/916803#M45483</link>
      <description>&lt;P&gt;Add the NOINT option to your MODEL statement.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;SteveDenham&lt;/P&gt;</description>
      <pubDate>Mon, 19 Feb 2024 15:27:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/What-is-the-quot-intercept-quot-line-in-my-output-and-why-don-t/m-p/916803#M45483</guid>
      <dc:creator>SteveDenham</dc:creator>
      <dc:date>2024-02-19T15:27:13Z</dc:date>
    </item>
    <item>
      <title>Re: What is the "intercept" line in my output, and why don't I have any values for my last</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/What-is-the-quot-intercept-quot-line-in-my-output-and-why-don-t/m-p/916806#M45484</link>
      <description>&lt;P&gt;Thank you!!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I've added the NOINT option, but now my codes won't work and I'm not sure why.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is my code:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=""&gt;proc mixed data=GLANDES_TRUIE;
  class TRAIT truie;
  model BW=TRAIT/alpha=0.05/noint;
  repeated / group=TRAIT;
  ods output tests3=tests;
  lsmeans TRAIT / cl;
  ods output lsmeans=lsm;
run;

proc glimmix data=glandes_truie;
	class trait truie;
	model BW=trait/alpha=0.05/noint;
  	lsmeans trait / adjust=tukey lines;
  output out=second predicted=pred residual=resid residual(noblup)=mresid student=studentresid student(noblup)=smresid;
Run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is the error message:&lt;/P&gt;&lt;PRE&gt;70         proc mixed data=GLANDES_TRUIE;
 71           class TRAIT truie;
 72           model BW=TRAIT/alpha=0.05/noint;
                                       _
                                       22
                                       200
 ERROR 22-322: Syntax error, expecting one of the following: ;, ALPHA, ALPHAP, CHISQ, CL, CONTAIN, CORRB, COVB, COVBI, DDF, DDFM, 
               DDFMETHOD, DF, DFM, DFMETHOD, DFP, E, E1, E2, E3, E4, EST, FULLX, HTYPE, INFLUENCE, INTERCEPT, LCOMPONENTS, 
               NOCONTAIN, NOINT, NOTEST, NOUNIQUE, NOUNIQUENAME, OUTP, OUTPM, OUTPRED, OUTPREDM, RESIDUAL, RESIDUALS, SINGCHOL, 
               SINGRES, SINGULAR, SOLUTION, UNIQUE, UNIQUENAME, VCIRY, XPVIX, XPVIXC, XPVIXI, ZETA.  
 ERROR 200-322: The symbol is not recognized and will be ignored.
 73           repeated / group=TRAIT;
 74           ods output tests3=tests;
 75           lsmeans TRAIT / cl;
 76           ods output lsmeans=lsm;
 77         run;
 78    

                                     22
                                      200
 ERROR 22-322: Syntax error, expecting one of the following: ;, ALPHA, CENTER, CHISQ, CL, CORRB, COVB, COVBI, D, DDF, DDFM, 
               DDFMETHOD, DF, DFM, DFMETHOD, DIST, DISTRIBUTION, E, E1, E2, E3, EI, EII, EIII, ERR, ERROR, EST, HTYPE, INTERCEPT, 
               ITPRINT, LINK, LWEIGHT, LWEIGHTS, NOCENTER, NOINT, NOSCALE, OBSWEIGHT, ODDSRATIO, ODDSRATIOS, OFFSET, OR, REFLINP, 
               SOLUTION, SOLUTIONS, STANDARDIZE, STDC, STDCOEF, ZETA.  
 ERROR 200-322: The symbol is not recognized and will be ignored.
 82           lsmeans trait / adjust=tukey lines;
 83           output out=second predicted=pred residual=resid residual(noblup)=mresid student=studentresid student(noblup)=smresid;
 84         Run;
 85         
 86         OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;
 96   &lt;/PRE&gt;&lt;P&gt;Can I only have one option in the MODEL line? I've run codes before with more than one option. It says the symbol is not recognized by NOINT is an option listed in the symbols it's expecting.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I appreciate your help!! Thank you&lt;/P&gt;</description>
      <pubDate>Mon, 19 Feb 2024 15:35:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/What-is-the-quot-intercept-quot-line-in-my-output-and-why-don-t/m-p/916806#M45484</guid>
      <dc:creator>caroline_rg</dc:creator>
      <dc:date>2024-02-19T15:35:36Z</dc:date>
    </item>
    <item>
      <title>Re: What is the "intercept" line in my output, and why don't I have any values for my last</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/What-is-the-quot-intercept-quot-line-in-my-output-and-why-don-t/m-p/916809#M45486</link>
      <description>&lt;P&gt;remove the "/" before NOINT.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 19 Feb 2024 15:53:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/What-is-the-quot-intercept-quot-line-in-my-output-and-why-don-t/m-p/916809#M45486</guid>
      <dc:creator>jiltao</dc:creator>
      <dc:date>2024-02-19T15:53:46Z</dc:date>
    </item>
    <item>
      <title>Re: What is the "intercept" line in my output, and why don't I have any values for my last</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/What-is-the-quot-intercept-quot-line-in-my-output-and-why-don-t/m-p/916811#M45487</link>
      <description>&lt;P&gt;Your code:&lt;/P&gt;
&lt;PRE&gt;model BW=trait/alpha=0.05/noint;&lt;/PRE&gt;
&lt;P&gt;should be&lt;/P&gt;
&lt;PRE&gt;model BW=trait/alpha=0.05 noint;&lt;/PRE&gt;
&lt;P&gt;All options follow a single front-slash.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;SteveDenham&lt;/P&gt;</description>
      <pubDate>Mon, 19 Feb 2024 15:54:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/What-is-the-quot-intercept-quot-line-in-my-output-and-why-don-t/m-p/916811#M45487</guid>
      <dc:creator>SteveDenham</dc:creator>
      <dc:date>2024-02-19T15:54:35Z</dc:date>
    </item>
    <item>
      <title>Re: What is the "intercept" line in my output, and why don't I have any values for my last</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/What-is-the-quot-intercept-quot-line-in-my-output-and-why-don-t/m-p/916812#M45488</link>
      <description>Thank you!!</description>
      <pubDate>Mon, 19 Feb 2024 15:56:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/What-is-the-quot-intercept-quot-line-in-my-output-and-why-don-t/m-p/916812#M45488</guid>
      <dc:creator>caroline_rg</dc:creator>
      <dc:date>2024-02-19T15:56:05Z</dc:date>
    </item>
    <item>
      <title>Re: What is the "intercept" line in my output, and why don't I have any values for my last</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/What-is-the-quot-intercept-quot-line-in-my-output-and-why-don-t/m-p/916813#M45489</link>
      <description>Thanks!</description>
      <pubDate>Mon, 19 Feb 2024 15:56:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/What-is-the-quot-intercept-quot-line-in-my-output-and-why-don-t/m-p/916813#M45489</guid>
      <dc:creator>caroline_rg</dc:creator>
      <dc:date>2024-02-19T15:56:35Z</dc:date>
    </item>
  </channel>
</rss>

