<?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 Demo: Performing a Post Hoc Pairwise Comparison Using PROC GLM (SAS Studio 3.8) in SAS Studio</title>
    <link>https://communities.sas.com/t5/SAS-Studio/Demo-Performing-a-Post-Hoc-Pairwise-Comparison-Using-PROC-GLM/m-p/698455#M9480</link>
    <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm working on a demo activity in SAS Studio and I read the instructions and explanations. After reading the instructions and explanations about each block of code in each statement, I ran the program and then I get one warning stating "&lt;FONT color="#FFFF00"&gt;&lt;FONT color="#FF9900"&gt;Output 'control plot' was not created. Make sure that the output object name, label, or path is spelled correctly. Also, verify that the appropriate procedure options are used to produce the requested output object. For example, verify that the NOPRINT option is not used&lt;/FONT&gt;.&lt;/FONT&gt;" and one error stating "&lt;SPAN&gt;&lt;FONT color="#FF0000"&gt;Cannot find control level for effect Heating_QC.&lt;/FONT&gt;" My code resembles the code viewed in the demo, but I got a warning and an error after running the program.&amp;nbsp; How can I resolve these issues? Any help will be greatly appreciated. Here is the code below for reference.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;/*st102d03.sas*/&lt;BR /&gt;ods graphics;&lt;/P&gt;&lt;P&gt;ods select lsmeans diff diffplot controlplot;&lt;BR /&gt;proc glm data=STAT1.ameshousing3&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;plots(only)=(diffplot(center) controlplot);&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; class Heating_QC;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; model SalePrice=Heating_QC;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; lsmeans Heating_QC / pdiff=all&lt;BR /&gt;&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;adjust=tukey;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; lsmeans Heating_QC / pdiff=control('Average/Typical')&lt;BR /&gt;&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;adjust=dunnett;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; format Heating_QC $Heating_QC.;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; title "Post-Hoc Analysis of ANOVA - Heating Quality as Predictor";&lt;BR /&gt;run;&lt;BR /&gt;quit;&lt;/P&gt;&lt;P&gt;title;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 17 Nov 2020 16:26:37 GMT</pubDate>
    <dc:creator>Matim</dc:creator>
    <dc:date>2020-11-17T16:26:37Z</dc:date>
    <item>
      <title>Demo: Performing a Post Hoc Pairwise Comparison Using PROC GLM (SAS Studio 3.8)</title>
      <link>https://communities.sas.com/t5/SAS-Studio/Demo-Performing-a-Post-Hoc-Pairwise-Comparison-Using-PROC-GLM/m-p/698455#M9480</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm working on a demo activity in SAS Studio and I read the instructions and explanations. After reading the instructions and explanations about each block of code in each statement, I ran the program and then I get one warning stating "&lt;FONT color="#FFFF00"&gt;&lt;FONT color="#FF9900"&gt;Output 'control plot' was not created. Make sure that the output object name, label, or path is spelled correctly. Also, verify that the appropriate procedure options are used to produce the requested output object. For example, verify that the NOPRINT option is not used&lt;/FONT&gt;.&lt;/FONT&gt;" and one error stating "&lt;SPAN&gt;&lt;FONT color="#FF0000"&gt;Cannot find control level for effect Heating_QC.&lt;/FONT&gt;" My code resembles the code viewed in the demo, but I got a warning and an error after running the program.&amp;nbsp; How can I resolve these issues? Any help will be greatly appreciated. Here is the code below for reference.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;/*st102d03.sas*/&lt;BR /&gt;ods graphics;&lt;/P&gt;&lt;P&gt;ods select lsmeans diff diffplot controlplot;&lt;BR /&gt;proc glm data=STAT1.ameshousing3&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;plots(only)=(diffplot(center) controlplot);&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; class Heating_QC;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; model SalePrice=Heating_QC;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; lsmeans Heating_QC / pdiff=all&lt;BR /&gt;&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;adjust=tukey;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; lsmeans Heating_QC / pdiff=control('Average/Typical')&lt;BR /&gt;&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;adjust=dunnett;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; format Heating_QC $Heating_QC.;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; title "Post-Hoc Analysis of ANOVA - Heating Quality as Predictor";&lt;BR /&gt;run;&lt;BR /&gt;quit;&lt;/P&gt;&lt;P&gt;title;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 17 Nov 2020 16:26:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/Demo-Performing-a-Post-Hoc-Pairwise-Comparison-Using-PROC-GLM/m-p/698455#M9480</guid>
      <dc:creator>Matim</dc:creator>
      <dc:date>2020-11-17T16:26:37Z</dc:date>
    </item>
    <item>
      <title>Re: Demo: Performing a Post Hoc Pairwise Comparison Using PROC GLM (SAS Studio 3.8)</title>
      <link>https://communities.sas.com/t5/SAS-Studio/Demo-Performing-a-Post-Hoc-Pairwise-Comparison-Using-PROC-GLM/m-p/825173#M10484</link>
      <description>&lt;P&gt;Hey, they failed to inform us that the values in the&lt;STRONG&gt;&amp;nbsp;&lt;/STRONG&gt;&lt;SPAN&gt;&lt;STRONG&gt;Heating_QC&lt;/STRONG&gt; were formated, if you look at the dataset, there are no&amp;nbsp;Average/Typical values present, if you use&amp;nbsp;&lt;STRONG&gt;lsmeans Heating_QC / pdiff=control('TA')&amp;nbsp;&lt;/STRONG&gt; the script is working properly.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 24 Jul 2022 23:26:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/Demo-Performing-a-Post-Hoc-Pairwise-Comparison-Using-PROC-GLM/m-p/825173#M10484</guid>
      <dc:creator>dhliakau</dc:creator>
      <dc:date>2022-07-24T23:26:47Z</dc:date>
    </item>
  </channel>
</rss>

