<?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: No more SliceLines output in Glimmix? in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/No-more-SliceLines-output-in-Glimmix/m-p/569877#M160643</link>
    <description>If you include some sample data or change the code to work with other data we can run and test it and help you out better. &lt;BR /&gt;&lt;BR /&gt;You check if ODS GRAPHICS ON; is set properly, if you're not getting any graphs that could be why.</description>
    <pubDate>Fri, 28 Jun 2019 15:48:53 GMT</pubDate>
    <dc:creator>Reeza</dc:creator>
    <dc:date>2019-06-28T15:48:53Z</dc:date>
    <item>
      <title>No more SliceLines output in Glimmix?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/No-more-SliceLines-output-in-Glimmix/m-p/569834#M160621</link>
      <description>&lt;P&gt;I recently upgraded to SAS 9.4 m6 and for some reason am unable to get the SliceLines output that I was able to prior.&lt;/P&gt;&lt;P&gt;Basic code is as follows:&lt;/P&gt;&lt;P&gt;proc glimmix data=data nobound plots=studentpanel;;&lt;BR /&gt;class block trt week date;&lt;BR /&gt;model aphidmean=trt|week/ddfm=kr2;&lt;BR /&gt;random int/subject=block;&lt;BR /&gt;random week/ subject=trt*block type=ar(1);&lt;BR /&gt;lsmeans trt*week / adjust=tukey lines;&lt;BR /&gt;slice trt*week/sliceby=week lines adjust=tukey;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Prior to the upgrade I was able to get results sliced by week, with tukey lettering for individual week time points. This is not not available. Is there an error in my code or has this been changed in the upgrade?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;David&lt;/P&gt;</description>
      <pubDate>Fri, 28 Jun 2019 14:33:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/No-more-SliceLines-output-in-Glimmix/m-p/569834#M160621</guid>
      <dc:creator>dsuchoff1</dc:creator>
      <dc:date>2019-06-28T14:33:11Z</dc:date>
    </item>
    <item>
      <title>Re: No more SliceLines output in Glimmix?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/No-more-SliceLines-output-in-Glimmix/m-p/569872#M160640</link>
      <description>&lt;P&gt;What SAS Stat version are you on now? This would show it.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc product_status;run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Slice is still listed in the documentation. Is there any issues in your log or anywhere else?&lt;/P&gt;
&lt;P&gt;Did this exact code work before?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/240053"&gt;@dsuchoff1&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;I recently upgraded to SAS 9.4 m6 and for some reason am unable to get the SliceLines output that I was able to prior.&lt;/P&gt;
&lt;P&gt;Basic code is as follows:&lt;/P&gt;
&lt;P&gt;proc glimmix data=data nobound plots=studentpanel;;&lt;BR /&gt;class block trt week date;&lt;BR /&gt;model aphidmean=trt|week/ddfm=kr2;&lt;BR /&gt;random int/subject=block;&lt;BR /&gt;random week/ subject=trt*block type=ar(1);&lt;BR /&gt;lsmeans trt*week / adjust=tukey lines;&lt;BR /&gt;slice trt*week/sliceby=week lines adjust=tukey;&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Prior to the upgrade I was able to get results sliced by week, with tukey lettering for individual week time points. This is not not available. Is there an error in my code or has this been changed in the upgrade?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;David&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 28 Jun 2019 15:35:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/No-more-SliceLines-output-in-Glimmix/m-p/569872#M160640</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-06-28T15:35:21Z</dc:date>
    </item>
    <item>
      <title>Re: No more SliceLines output in Glimmix?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/No-more-SliceLines-output-in-Glimmix/m-p/569876#M160642</link>
      <description>&lt;P&gt;Base SAS Software 9.4_M6&lt;/P&gt;&lt;P&gt;Image version information: 9.04.01M6P110718&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And yes, this used to work prior. The output generates the Trt*week F test, Trt*week diffs, and trt*week diffogram.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;David&lt;/P&gt;</description>
      <pubDate>Fri, 28 Jun 2019 15:46:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/No-more-SliceLines-output-in-Glimmix/m-p/569876#M160642</guid>
      <dc:creator>dsuchoff1</dc:creator>
      <dc:date>2019-06-28T15:46:13Z</dc:date>
    </item>
    <item>
      <title>Re: No more SliceLines output in Glimmix?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/No-more-SliceLines-output-in-Glimmix/m-p/569877#M160643</link>
      <description>If you include some sample data or change the code to work with other data we can run and test it and help you out better. &lt;BR /&gt;&lt;BR /&gt;You check if ODS GRAPHICS ON; is set properly, if you're not getting any graphs that could be why.</description>
      <pubDate>Fri, 28 Jun 2019 15:48:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/No-more-SliceLines-output-in-Glimmix/m-p/569877#M160643</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-06-28T15:48:53Z</dc:date>
    </item>
    <item>
      <title>Re: No more SliceLines output in Glimmix?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/No-more-SliceLines-output-in-Glimmix/m-p/569882#M160645</link>
      <description>&lt;P&gt;Data attached&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I noticed this warning in the log:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;WARNING: MIVQUE0 estimate of profiled variance is linearly related to other covariance parameters&lt;/P&gt;&lt;P&gt;Here's the code:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc glimmix data=data nobound plots=studentpanel;;
class block trt date;
model aphidmean=trt|date/ddfm=kr2;
random int/subject=block;
random date/ subject=trt*block type=ar(1);
lsmeans trt*date / adjust=tukey lines;
slice trt*date/sliceby=date lines adjust=tukey;
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 28 Jun 2019 15:56:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/No-more-SliceLines-output-in-Glimmix/m-p/569882#M160645</guid>
      <dc:creator>dsuchoff1</dc:creator>
      <dc:date>2019-06-28T15:56:49Z</dc:date>
    </item>
    <item>
      <title>Re: No more SliceLines output in Glimmix?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/No-more-SliceLines-output-in-Glimmix/m-p/572731#M161653</link>
      <description>&lt;P&gt;Try adding LINESTABLE into your slice statement.&lt;/P&gt;</description>
      <pubDate>Thu, 11 Jul 2019 13:32:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/No-more-SliceLines-output-in-Glimmix/m-p/572731#M161653</guid>
      <dc:creator>Ohiopp20</dc:creator>
      <dc:date>2019-07-11T13:32:42Z</dc:date>
    </item>
    <item>
      <title>Re: No more SliceLines output in Glimmix?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/No-more-SliceLines-output-in-Glimmix/m-p/572739#M161655</link>
      <description>&lt;P&gt;In SAS 9.4M5, a change was made to the LINES plot. You can read about it in&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://blogs.sas.com/content/graphicallyspeaking/2017/10/04/introducing-new-sasstat-lines-plot/" target="_self"&gt;"Introducing the new SAS/STAT lines plot"&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;and&lt;/P&gt;
&lt;P&gt;&lt;A href="https://blogs.sas.com/content/iml/2017/10/16/multiple-comparisons-lines-plot.html" target="_self"&gt;"Graphs for multiple comparisons of means: The lines plot"&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;As mentioned in the second article, the LINES plot can be misleading if you have unbalanced groups. In my opinion, the diffogram is a more faithful visualization of the test. &lt;A href="https://blogs.sas.com/content/iml/2017/10/18/diffogram-multiple-comparisons-sas.html" target="_self"&gt;The diffogram is explained in this article.&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;By the way, if you want the old "table with letters," you can get it by turning off ODS graphics. But I don't recommend that tabular display b/c it can be misleading.&lt;/P&gt;</description>
      <pubDate>Thu, 11 Jul 2019 14:02:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/No-more-SliceLines-output-in-Glimmix/m-p/572739#M161655</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2019-07-11T14:02:16Z</dc:date>
    </item>
  </channel>
</rss>

