<?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 What is student's t lsmeans called in SAS studio in SAS Software for Learning Community</title>
    <link>https://communities.sas.com/t5/SAS-Software-for-Learning/What-is-student-s-t-lsmeans-called-in-SAS-studio/m-p/868512#M1066</link>
    <description>&lt;P&gt;&lt;SPAN&gt;I am using SAS studio to run a data file with lsmeans of tukey. I used JMP which is package within SAS to run the same data file and found that student's t lsmeans works better for my data than tukey. I wanted to ask what is the equivalent of student's t in SAS studio specifically for the "adjust =" line to JMP student's t?&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;In JMP you have an option to choose which lsmeans you want to run. In SAS studio you have to specify in the "adjust=NAME_HERE". What would the NAME_HERE be to run the data for the same lsmeans?&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;Simply stated what is the student's t lsmeans called in SAS studio?&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Thu, 06 Apr 2023 20:18:02 GMT</pubDate>
    <dc:creator>pnpatel2</dc:creator>
    <dc:date>2023-04-06T20:18:02Z</dc:date>
    <item>
      <title>What is student's t lsmeans called in SAS studio</title>
      <link>https://communities.sas.com/t5/SAS-Software-for-Learning/What-is-student-s-t-lsmeans-called-in-SAS-studio/m-p/868512#M1066</link>
      <description>&lt;P&gt;&lt;SPAN&gt;I am using SAS studio to run a data file with lsmeans of tukey. I used JMP which is package within SAS to run the same data file and found that student's t lsmeans works better for my data than tukey. I wanted to ask what is the equivalent of student's t in SAS studio specifically for the "adjust =" line to JMP student's t?&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;In JMP you have an option to choose which lsmeans you want to run. In SAS studio you have to specify in the "adjust=NAME_HERE". What would the NAME_HERE be to run the data for the same lsmeans?&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;Simply stated what is the student's t lsmeans called in SAS studio?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 06 Apr 2023 20:18:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Software-for-Learning/What-is-student-s-t-lsmeans-called-in-SAS-studio/m-p/868512#M1066</guid>
      <dc:creator>pnpatel2</dc:creator>
      <dc:date>2023-04-06T20:18:02Z</dc:date>
    </item>
    <item>
      <title>Re: What is student's t lsmeans called in SAS studio</title>
      <link>https://communities.sas.com/t5/SAS-Software-for-Learning/What-is-student-s-t-lsmeans-called-in-SAS-studio/m-p/868520#M1067</link>
      <description>&lt;P&gt;You didn't say what SAS PROC you are using.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In PROC GLM, you can choose the T option in the MEANS statement. &lt;A href="https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.4/statug/statug_glm_syntax15.htm" target="_blank"&gt;https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.4/statug/statug_glm_syntax15.htm&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 06 Apr 2023 20:55:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Software-for-Learning/What-is-student-s-t-lsmeans-called-in-SAS-studio/m-p/868520#M1067</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2023-04-06T20:55:05Z</dc:date>
    </item>
    <item>
      <title>Re: What is student's t lsmeans called in SAS studio</title>
      <link>https://communities.sas.com/t5/SAS-Software-for-Learning/What-is-student-s-t-lsmeans-called-in-SAS-studio/m-p/868528#M1069</link>
      <description>&lt;P&gt;Here is the code I am using. If I change the "adjust=tukey" to "adjust=t" the code crashes. Am I doing something wrong? I want to test the lsmeans for student's t comparisons. How do I do this?&lt;/P&gt;&lt;P&gt;proc import datafile='/home/u48644977/Priyanka/305_All_Dry_Yield_Data_Adjusted.xlsx'&lt;BR /&gt;out=work.dryYield dbms=xlsx replace;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;proc mixed plot=all covtest data=work.dryYield;&lt;BR /&gt;class year harvest block treatment;&lt;BR /&gt;model yield = block treatment|harvest|year /residual outp=resid s;&lt;BR /&gt;random block*treatment;&lt;BR /&gt;repeated / type=un subject=plot r;&lt;BR /&gt;lsmeans treatment|harvest|year/ adjust=tukey;&lt;BR /&gt;ods output diffs=ppp lsmeans=mmm;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;proc univariate noprint data=resid;&lt;BR /&gt;histogram resid/ normal;&lt;BR /&gt;inset n mean std="Std Dev" skewness;&lt;BR /&gt;ppplot resid/normal (L=1 mu=est sigma=est);&lt;BR /&gt;qqplot resid /normal (L=1 mu=est sigma=est) square;&lt;BR /&gt;inset n mean std="Std Dev" skewness;&lt;BR /&gt;run;&lt;BR /&gt;&lt;BR /&gt;%include '/home/u48644977/Priyanka/pdmix800.sas';&lt;BR /&gt;%pdmix800(ppp,mmm,alpha=.1,sort=yes);&lt;BR /&gt;run;&lt;/P&gt;</description>
      <pubDate>Thu, 06 Apr 2023 21:09:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Software-for-Learning/What-is-student-s-t-lsmeans-called-in-SAS-studio/m-p/868528#M1069</guid>
      <dc:creator>pnpatel2</dc:creator>
      <dc:date>2023-04-06T21:09:59Z</dc:date>
    </item>
    <item>
      <title>Re: What is student's t lsmeans called in SAS studio</title>
      <link>https://communities.sas.com/t5/SAS-Software-for-Learning/What-is-student-s-t-lsmeans-called-in-SAS-studio/m-p/868530#M1070</link>
      <description>&lt;P&gt;There is no such option in PROC MIXED. In fact, I don't think there is a Student's T test for LSMEANS, it exists only for MEANS.&lt;/P&gt;</description>
      <pubDate>Thu, 06 Apr 2023 21:23:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Software-for-Learning/What-is-student-s-t-lsmeans-called-in-SAS-studio/m-p/868530#M1070</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2023-04-06T21:23:09Z</dc:date>
    </item>
  </channel>
</rss>

