<?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: Graphics using the lsmeans of proc glimmix in SAS Enterprise Guide</title>
    <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Graphics-using-the-lsmeans-of-proc-glimmix/m-p/452701#M29209</link>
    <description>Thanks ballardw, the problem has been solved!</description>
    <pubDate>Tue, 10 Apr 2018 01:26:38 GMT</pubDate>
    <dc:creator>Rodolfo_Mingoti</dc:creator>
    <dc:date>2018-04-10T01:26:38Z</dc:date>
    <item>
      <title>Graphics using the lsmeans of proc glimmix</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Graphics-using-the-lsmeans-of-proc-glimmix/m-p/452411#M29189</link>
      <description>&lt;P&gt;Hello everyone!&lt;BR /&gt;I have a longitudinal data base and I created one graphics using the Lsmeans of Proc Glimmix (using the Enterprise guide).&lt;BR /&gt;However, the axis "x" didn't result in a correct order (Firstly the SAS got the output 'D10' folling 'D7', 'D8' and 'D9')&lt;BR /&gt;However, I am trying to organize the axes "x" in a respective order: 'D7', 'D8', 'D9', and 'D10'.&lt;BR /&gt;How can I do that?&lt;BR /&gt;I will be really grateful if someone could help-me!!!&lt;BR /&gt;Best regards,&lt;BR /&gt;Rodolfo Mingoti.&lt;BR /&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 09 Apr 2018 05:47:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Graphics-using-the-lsmeans-of-proc-glimmix/m-p/452411#M29189</guid>
      <dc:creator>Rodolfo_Mingoti</dc:creator>
      <dc:date>2018-04-09T05:47:23Z</dc:date>
    </item>
    <item>
      <title>Re: Graphics using the lsmeans of proc glimmix</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Graphics-using-the-lsmeans-of-proc-glimmix/m-p/452427#M29192</link>
      <description>&lt;P&gt;Please do not post Excel files (unless your problem lies in importing those).&lt;/P&gt;
&lt;P&gt;Use the macro provided in &lt;A href="https://communities.sas.com/t5/SAS-Communities-Library/How-to-create-a-data-step-version-of-your-data-AKA-generate/ta-p/258712" target="_blank"&gt;https://communities.sas.com/t5/SAS-Communities-Library/How-to-create-a-data-step-version-of-your-data-AKA-generate/ta-p/258712&lt;/A&gt; to create a data step from your dataset, and post the resulting code here as advised in &lt;A href="https://communities.sas.com/t5/help/faqpage/faq-category-id/posting#posting" target="_blank"&gt;https://communities.sas.com/t5/help/faqpage/faq-category-id/posting#posting&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Are you sure your post should stay in Enterprise Guide, or should I move it to the SAS Statistical Procedures forum?&lt;/P&gt;</description>
      <pubDate>Mon, 09 Apr 2018 07:52:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Graphics-using-the-lsmeans-of-proc-glimmix/m-p/452427#M29192</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2018-04-09T07:52:55Z</dc:date>
    </item>
    <item>
      <title>Re: Graphics using the lsmeans of proc glimmix</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Graphics-using-the-lsmeans-of-proc-glimmix/m-p/452435#M29193</link>
      <description>&lt;P&gt;Yes, it is sorting the text items.&amp;nbsp; Simplest way of getting round this is to create a format:&lt;/P&gt;
&lt;PRE&gt;proc format;
  value days
    1="D1"
    2="D2"
    ...
    10="D10";
run;
data yourdata;
  set yourdata;
  format xaxisvariable days.;
run;&lt;/PRE&gt;
&lt;P&gt;So I don't know your data as not opening an excel file, but I assume you have a variable which is used on the Xaxis, make this a number, with just the number of the day, e.g. 1, 2 etc.&amp;nbsp; Then apply the format which will display the data as D1, D2 etc.&amp;nbsp; This way the data will sort correctly on the Xaxis and display per the format.&lt;/P&gt;</description>
      <pubDate>Mon, 09 Apr 2018 08:26:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Graphics-using-the-lsmeans-of-proc-glimmix/m-p/452435#M29193</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2018-04-09T08:26:54Z</dc:date>
    </item>
    <item>
      <title>Re: Graphics using the lsmeans of proc glimmix</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Graphics-using-the-lsmeans-of-proc-glimmix/m-p/452508#M29196</link>
      <description>&lt;P&gt;That is the order character data will sort. Character sorting goes character by character left to right. And since "1" is less than "2", "3" or other character digits except "0"m "10" comes before "2".&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Since the graphics options in most of the analysis procedures have limited appearance control options your have limited choices. One is creating a variable that will sort as required. The other is to export the data to a data set and plot with a procedure like SGPLOT&amp;nbsp;where you have options to control and axis with the XAXIS statement such as a value list where you can explicitly order variable.&lt;/P&gt;</description>
      <pubDate>Mon, 09 Apr 2018 14:53:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Graphics-using-the-lsmeans-of-proc-glimmix/m-p/452508#M29196</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2018-04-09T14:53:19Z</dc:date>
    </item>
    <item>
      <title>Re: Graphics using the lsmeans of proc glimmix</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Graphics-using-the-lsmeans-of-proc-glimmix/m-p/452701#M29209</link>
      <description>Thanks ballardw, the problem has been solved!</description>
      <pubDate>Tue, 10 Apr 2018 01:26:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Graphics-using-the-lsmeans-of-proc-glimmix/m-p/452701#M29209</guid>
      <dc:creator>Rodolfo_Mingoti</dc:creator>
      <dc:date>2018-04-10T01:26:38Z</dc:date>
    </item>
  </channel>
</rss>

