<?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: Proc Sgpanel order of category in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/Proc-Sgpanel-order-of-category/m-p/864832#M82597</link>
    <description>If you are running SAS 9.4, you can use the SORT= option that was added to the PANELBY statement. There are multiple options for sorting the data. My guess is you could 1) derive a group variable that is an integer instead of the formatted values, 2) apply the format below (just a few statements are there, you can add rest), and then 3) try the SORT=ASCFORMAT option in your sgpanel code.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;proc format; /*make a format for your group*/&lt;BR /&gt;value grp&lt;BR /&gt;1 = "-10 -6"&lt;BR /&gt;2 = "-6 -2"&lt;BR /&gt;/*and so on*/&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/grstatproc/n0wqazuv6959fnn1fask7mi68lla.htm#p09ubjs13icn5gn1ca2at8g7cr1p" target="_blank"&gt;https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/grstatproc/n0wqazuv6959fnn1fask7mi68lla.htm#p09ubjs13icn5gn1ca2at8g7cr1p&lt;/A&gt;</description>
    <pubDate>Fri, 17 Mar 2023 13:15:17 GMT</pubDate>
    <dc:creator>svh</dc:creator>
    <dc:date>2023-03-17T13:15:17Z</dc:date>
    <item>
      <title>Proc Sgpanel order of category</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Proc-Sgpanel-order-of-category/m-p/864764#M82595</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;I need help for a graph with proc sgpanel.&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="HwtZe"&gt;&lt;SPAN class="jCAhz ChMk0b"&gt;&lt;SPAN class="ryNqvb"&gt;I made a graph with categories but they don't come out in the right order.&lt;/SPAN&gt;&lt;/SPAN&gt; &lt;SPAN class="jCAhz ChMk0b"&gt;&lt;SPAN class="ryNqvb"&gt;This is the method variable based on the locpm variable divided into categories "-10 -6", "-6 -2", "-2 2", "2 6" and "6 8".&lt;/SPAN&gt;&lt;/SPAN&gt; &lt;SPAN class="jCAhz ChMk0b"&gt;&lt;SPAN class="ryNqvb"&gt;But category -2 2 is before category -6 -2.&lt;/SPAN&gt;&lt;/SPAN&gt; &lt;SPAN class="jCAhz ChMk0b"&gt;&lt;SPAN class="ryNqvb"&gt;I searched everywhere, I made sorts but it does not change anything.&lt;/SPAN&gt;&lt;/SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="HwtZe"&gt;I have 1827 rows and 7 variables. &lt;/SPAN&gt;&lt;SPAN class="HwtZe"&gt;&lt;SPAN class="jCAhz ChMk0b"&gt;&lt;SPAN class="ryNqvb"&gt;Thanks for your help.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt; /* Création de la variable group*/
  	data v2myosi.group2;
	set V2myosi.fc2;
	if logcpm &amp;lt;-6 then group = "-10 -6";
	if -6 =&amp;lt; logcpm &amp;lt; -2 then group = "-6 -2";
	if -2 =&amp;lt; logcpm &amp;lt; 2 then group = "-2 2";
	if 2 =&amp;lt; logcpm &amp;lt; 6 then group = "2 6";
	if 6 =&amp;lt; logcpm  then group = "6 11";
	run;

/*Création de la variable méthode*/
	Data V2myosi.group1;
set V2myosi.group;
if total = 3 then methode = "D E L";
if total = 2 and Edge = 1 and Deseq = 1 then methode = "E D";
if total = 2 and Edge = 1 and Limma = 1 then methode = "E L";
if total = 2 and Deseq = 1 and Limma = 1 then methode = "D L";
if total = 1 and Edge = 1 then methode = "E";
if total = 1 and Deseq = 1 then methode = "D";
if total = 1 and Limma = 1 then methode = "L";
run;
	

 title 'Myosite : LogCPM en groupes et par méthode';
	proc sgpanel data=V2myosi.group1;
  styleattrs datacolors=(lightgray lightred mediumpurple  orange cyan green yellow) datacontrastcolors=(black black);
  panelby group  / layout=columnlattice onepanel HEADERBACKCOLOR=pink HEADERATTRS=GraphLabelText 
          colheaderpos=bottom rows=1 novarname noborder  ;
  vbar methode / group=methode  stat=sum  nostatlabel datalabel ;
  colaxis display=none;
  rowaxis grid;
  run;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Nathalie1_0-1679045742925.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/81704iE15D8DC306F10F7E/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Nathalie1_0-1679045742925.png" alt="Nathalie1_0-1679045742925.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 17 Mar 2023 09:36:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Proc-Sgpanel-order-of-category/m-p/864764#M82595</guid>
      <dc:creator>Nathalie1</dc:creator>
      <dc:date>2023-03-17T09:36:07Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Sgpanel order of category</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Proc-Sgpanel-order-of-category/m-p/864832#M82597</link>
      <description>If you are running SAS 9.4, you can use the SORT= option that was added to the PANELBY statement. There are multiple options for sorting the data. My guess is you could 1) derive a group variable that is an integer instead of the formatted values, 2) apply the format below (just a few statements are there, you can add rest), and then 3) try the SORT=ASCFORMAT option in your sgpanel code.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;proc format; /*make a format for your group*/&lt;BR /&gt;value grp&lt;BR /&gt;1 = "-10 -6"&lt;BR /&gt;2 = "-6 -2"&lt;BR /&gt;/*and so on*/&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/grstatproc/n0wqazuv6959fnn1fask7mi68lla.htm#p09ubjs13icn5gn1ca2at8g7cr1p" target="_blank"&gt;https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/grstatproc/n0wqazuv6959fnn1fask7mi68lla.htm#p09ubjs13icn5gn1ca2at8g7cr1p&lt;/A&gt;</description>
      <pubDate>Fri, 17 Mar 2023 13:15:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Proc-Sgpanel-order-of-category/m-p/864832#M82597</guid>
      <dc:creator>svh</dc:creator>
      <dc:date>2023-03-17T13:15:17Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Sgpanel order of category</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Proc-Sgpanel-order-of-category/m-p/864871#M82599</link>
      <description>&lt;P&gt;Skip this entire step&lt;/P&gt;
&lt;LI-CODE lang="sas"&gt;data v2myosi.group2;
	set V2myosi.fc2;
	if logcpm &amp;lt;-6 then group = "-10 -6";
	if -6 =&amp;lt; logcpm &amp;lt; -2 then group = "-6 -2";
	if -2 =&amp;lt; logcpm &amp;lt; 2 then group = "-2 2";
	if 2 =&amp;lt; logcpm &amp;lt; 6 then group = "2 6";
	if 6 =&amp;lt; logcpm  then group = "6 11";
	run;&lt;/LI-CODE&gt;
&lt;P&gt;Create a format like this:&lt;/P&gt;
&lt;PRE&gt;Proc format;
value logcpmgrp
low - &amp;lt; -6 = '-10 -6'
-6 -&amp;lt; -2  = '-6 -2'
-2 -&amp;lt; 6  = '-2 6'
6 - high  = '6 11'
;
run;
&lt;/PRE&gt;
&lt;P&gt;Use the Logpcm variable instead of "group" (Note: use of keywords as variable names like Group leads to confusion") and assign the format to the variable.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;	proc sgpanel data=V2myosi.group1;
  styleattrs datacolors=(lightgray lightred mediumpurple  orange cyan green yellow) datacontrastcolors=(black black);
  panelby logpcm  / layout=columnlattice onepanel HEADERBACKCOLOR=pink HEADERATTRS=GraphLabelText 
          colheaderpos=bottom rows=1 novarname noborder  ;&lt;BR /&gt;  format logpcm logpcmgrp.;
  vbar methode / group=methode  stat=sum  nostatlabel datalabel ;
  colaxis display=none;
  rowaxis grid;
  run;&lt;/PRE&gt;
&lt;P&gt;You may want to sort your data by Logpcm.&lt;/P&gt;
&lt;P&gt;Groups created by formats are honored in analysis, reporting and in most cases graphing procedures (some exceptions with custom date, time and datetime formats).&lt;/P&gt;
&lt;P&gt;Your problem is related to the sort order of character values -2 comes before -6 because order is determined in a character by character comparison. They both start with - so the comparison moves to the second character and guess what, 2 is treated as less than 6. Use of the numeric value means the sort uses the underlying value, not the formatted value (some procedures allow use of formatted values explicitly as an option).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Note: The data steps you show and the proc sgpanel code do not align to have the variable named group.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&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/358396"&gt;@Nathalie1&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;I need help for a graph with proc sgpanel.&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="HwtZe"&gt;&lt;SPAN class="jCAhz ChMk0b"&gt;&lt;SPAN class="ryNqvb"&gt;I made a graph with categories but they don't come out in the right order.&lt;/SPAN&gt;&lt;/SPAN&gt; &lt;SPAN class="jCAhz ChMk0b"&gt;&lt;SPAN class="ryNqvb"&gt;This is the method variable based on the locpm variable divided into categories "-10 -6", "-6 -2", "-2 2", "2 6" and "6 8".&lt;/SPAN&gt;&lt;/SPAN&gt; &lt;SPAN class="jCAhz ChMk0b"&gt;&lt;SPAN class="ryNqvb"&gt;But category -2 2 is before category -6 -2.&lt;/SPAN&gt;&lt;/SPAN&gt; &lt;SPAN class="jCAhz ChMk0b"&gt;&lt;SPAN class="ryNqvb"&gt;I searched everywhere, I made sorts but it does not change anything.&lt;/SPAN&gt;&lt;/SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="HwtZe"&gt;I have 1827 rows and 7 variables. &lt;/SPAN&gt;&lt;SPAN class="HwtZe"&gt;&lt;SPAN class="jCAhz ChMk0b"&gt;&lt;SPAN class="ryNqvb"&gt;Thanks for your help.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt; /* Création de la variable group*/
  	data v2myosi.group2;
	set V2myosi.fc2;
	if logcpm &amp;lt;-6 then group = "-10 -6";
	if -6 =&amp;lt; logcpm &amp;lt; -2 then group = "-6 -2";
	if -2 =&amp;lt; logcpm &amp;lt; 2 then group = "-2 2";
	if 2 =&amp;lt; logcpm &amp;lt; 6 then group = "2 6";
	if 6 =&amp;lt; logcpm  then group = "6 11";
	run;

/*Création de la variable méthode*/
	Data V2myosi.group1;
set V2myosi.group;
if total = 3 then methode = "D E L";
if total = 2 and Edge = 1 and Deseq = 1 then methode = "E D";
if total = 2 and Edge = 1 and Limma = 1 then methode = "E L";
if total = 2 and Deseq = 1 and Limma = 1 then methode = "D L";
if total = 1 and Edge = 1 then methode = "E";
if total = 1 and Deseq = 1 then methode = "D";
if total = 1 and Limma = 1 then methode = "L";
run;
	

 title 'Myosite : LogCPM en groupes et par méthode';
	proc sgpanel data=V2myosi.group1;
  styleattrs datacolors=(lightgray lightred mediumpurple  orange cyan green yellow) datacontrastcolors=(black black);
  panelby group  / layout=columnlattice onepanel HEADERBACKCOLOR=pink HEADERATTRS=GraphLabelText 
          colheaderpos=bottom rows=1 novarname noborder  ;
  vbar methode / group=methode  stat=sum  nostatlabel datalabel ;
  colaxis display=none;
  rowaxis grid;
  run;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Nathalie1_0-1679045742925.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/81704iE15D8DC306F10F7E/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Nathalie1_0-1679045742925.png" alt="Nathalie1_0-1679045742925.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;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 17 Mar 2023 15:07:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Proc-Sgpanel-order-of-category/m-p/864871#M82599</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2023-03-17T15:07:26Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Sgpanel order of category</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Proc-Sgpanel-order-of-category/m-p/864913#M82600</link>
      <description>&lt;P&gt;Thank you for your help.&lt;/P&gt;
&lt;P&gt;I made what you say, the order is good, but I can't apply the format. Can you help me ?&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data v2myo.group3;
	set V2myo.group1;
	if logcpm &amp;lt;-6 then grp = 1;
	if -6 =&amp;lt; logcpm &amp;lt; -2 then grp = 2;
	if -2 =&amp;lt; logcpm &amp;lt; 2 then grp = 3;
	if 2 =&amp;lt; logcpm &amp;lt; 6 then grp = 4;
	if 6 =&amp;lt; logcpm  then grp = 5;
	run;

libname V2myo  'C:\Users\771\Documents\IMRB\Sclero\Sclero V2 myo 21 fev 2023';
	proc format lib=V2myo;
   value grp
1 = "-10 -6"
2 = "-6 -2"
3 = "-2 2"
4 = "2 6"
5 = "6 8";
run;
  title 'Myopathie : LogCPM en groupes et par méthode';
	proc sgpanel data=V2myo.group3  ;
  styleattrs datacolors=(lightgray lightred mediumpurple cyan green yellow) datacontrastcolors=(black black);
  panelby grp  / layout=columnlattice onepanel HEADERBACKCOLOR=pink HEADERATTRS=GraphLabelText 
          colheaderpos=bottom rows=1 novarname noborder SORT=ASCFORMAT ;
  vbar methode / group=methode  stat=sum  nostatlabel datalabel ;
  colaxis display=none;
  rowaxis grid;
  run;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Nathalie1_0-1679069078253.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/81722i46935EC92A72039E/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Nathalie1_0-1679069078253.png" alt="Nathalie1_0-1679069078253.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 17 Mar 2023 16:07:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Proc-Sgpanel-order-of-category/m-p/864913#M82600</guid>
      <dc:creator>Nathalie1</dc:creator>
      <dc:date>2023-03-17T16:07:41Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Sgpanel order of category</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Proc-Sgpanel-order-of-category/m-p/864925#M82601</link>
      <description>&lt;P&gt;&lt;SPAN class="HwtZe"&gt;&lt;SPAN class="jCAhz ChMk0b"&gt;&lt;SPAN class="ryNqvb"&gt;Thank you so much for your help.&lt;/SPAN&gt;&lt;/SPAN&gt; &lt;SPAN class="jCAhz ChMk0b"&gt;&lt;SPAN class="ryNqvb"&gt;It's perfect.&lt;/SPAN&gt;&lt;/SPAN&gt; &lt;SPAN class="jCAhz ChMk0b"&gt;&lt;SPAN class="ryNqvb"&gt;I will take into account all your comments to improve myself. &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="HwtZe"&gt;&lt;SPAN class="jCAhz ChMk0b"&gt;&lt;SPAN class="ryNqvb"&gt;Sincerely yours, &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="HwtZe"&gt;&lt;SPAN class="jCAhz ChMk0b"&gt;&lt;SPAN class="ryNqvb"&gt;Nathalie &lt;BR /&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Nathalie1_0-1679071534890.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/81724iEB51FAC02D188852/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Nathalie1_0-1679071534890.png" alt="Nathalie1_0-1679071534890.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 17 Mar 2023 16:47:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Proc-Sgpanel-order-of-category/m-p/864925#M82601</guid>
      <dc:creator>Nathalie1</dc:creator>
      <dc:date>2023-03-17T16:47:00Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Sgpanel order of category</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Proc-Sgpanel-order-of-category/m-p/864955#M82602</link>
      <description>&lt;P&gt;Formats are a &lt;STRONG&gt;very powerful tool&lt;/STRONG&gt; available in SAS.&lt;/P&gt;
&lt;P&gt;Consider this scenario: You have a very large data set and uses code similar to what you attempted for the Group variable that takes an hour or more to run. Then your boss comes in and says "I want to see what the difference is when we change the group boundaries to -5 and 5 instead of -6 and 6". If you are adding variables then you have that time penalty to add the variable and have to change the code to use the new variable. However if you use the format approach you can create a new format and run the code just changing the name of the format (and the corresponding Class variable reference if such is used).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Another advantage is suppose you have a different variable (or multiple variables), possible from a different instrument or collection source, that you want to do the same analysis with the same boundaries. The only change to code would be to use the new variable in the Class (if needed) and associate the format with it instead of adding a bunch of variables.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The main drawback with formats like this is that they only apply to single variables. And value that you want to use that relies on two or more variables requires adding variables (mostly).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Another advantage, with some experience, is that you can use a data set of values, whether boundaries such as this problem, or just a list of values and a desired display to create the format. Think something like turning postal code values into geographic regions or branch office names to supervising vice president.&lt;/P&gt;</description>
      <pubDate>Fri, 17 Mar 2023 18:39:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Proc-Sgpanel-order-of-category/m-p/864955#M82602</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2023-03-17T18:39:19Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Sgpanel order of category</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Proc-Sgpanel-order-of-category/m-p/864970#M82603</link>
      <description>&lt;P&gt;&lt;SPAN class="HwtZe"&gt;&lt;SPAN class="jCAhz ChMk0b"&gt;&lt;SPAN class="ryNqvb"&gt;You are quite right.&lt;/SPAN&gt;&lt;/SPAN&gt; &lt;SPAN class="jCAhz ChMk0b"&gt;&lt;SPAN class="ryNqvb"&gt;I rarely used formats but you have demonstrated and explained to me that it is very useful and effective in saving time, especially in research.&lt;/SPAN&gt;&lt;/SPAN&gt; &lt;SPAN class="jCAhz ChMk0b"&gt;&lt;SPAN class="ryNqvb"&gt;Thanks again for taking the time to help me.&lt;/SPAN&gt;&lt;/SPAN&gt; &lt;SPAN class="jCAhz ChMk0b"&gt;&lt;SPAN class="ryNqvb"&gt;I really like SAS because there is a lot of help for people in difficulty.&lt;/SPAN&gt;&lt;/SPAN&gt; &lt;SPAN class="jCAhz ChMk0b"&gt;&lt;SPAN class="ryNqvb"&gt;If I don't succeed in doing my analyzes with SAS, I will have to learn R. Unfortunately, this is the tool used in bioinformatics.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt; &lt;/P&gt;
&lt;P&gt;Sincerely yours,&lt;/P&gt;
&lt;P&gt;Nathalie&lt;/P&gt;</description>
      <pubDate>Fri, 17 Mar 2023 19:34:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Proc-Sgpanel-order-of-category/m-p/864970#M82603</guid>
      <dc:creator>Nathalie1</dc:creator>
      <dc:date>2023-03-17T19:34:14Z</dc:date>
    </item>
  </channel>
</rss>

