<?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: Bar graph with multiple subgroups in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/Bar-graph-with-multiple-subgroups/m-p/522406#M4430</link>
    <description>&lt;P&gt;Dear Draycut,&lt;/P&gt;
&lt;P&gt;Thank you !!&lt;/P&gt;
&lt;P&gt;I attached your SAS code vs. mine. Your SAS code comes with a nice graph.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;However, I wonder if you can address my previous post that:&lt;/P&gt;
&lt;P&gt;y is Lsmeans&amp;nbsp;as outcomes of interactions between sex and BP&lt;/P&gt;
&lt;P&gt;x is time&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For mine, I am also looking for a graphs that:&lt;/P&gt;
&lt;P&gt;y is means of phs as outcome of degree_ubn and age_cat&lt;/P&gt;
&lt;P&gt;x is&amp;nbsp;cycle (1, 2, 3)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;data want;&lt;BR /&gt;input Obs Id cycle degree_ubn age_cat phs;&lt;BR /&gt;datalines;&lt;BR /&gt;1 101 1 1 1 47&lt;BR /&gt;1 101 2 1 1 46&lt;BR /&gt;1 101 3 2 1 49&lt;BR /&gt;2 102 1 1 1 56&lt;BR /&gt;2 102 2 2 1 52&lt;BR /&gt;2 102 3 2 1 30&lt;BR /&gt;3 103 1 3 2 38&lt;BR /&gt;3 103 2 1 2 53&lt;BR /&gt;3 103 3 2 2 32&lt;BR /&gt;4 104 1 1 3 60&lt;BR /&gt;4 104 2 4 3 46&lt;BR /&gt;4 104 3 5 3 32&lt;BR /&gt;5 105 1 1 3 47&lt;BR /&gt;5 105 2 3 3 46&lt;BR /&gt;5 105 3 2 3 56&lt;BR /&gt;6 106 1 1 2 47&lt;BR /&gt;6 106 4 1 2 40&lt;BR /&gt;6 106 5 2 2 35&lt;BR /&gt;;&lt;BR /&gt;run;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 19 Dec 2018 01:58:52 GMT</pubDate>
    <dc:creator>PhanS</dc:creator>
    <dc:date>2018-12-19T01:58:52Z</dc:date>
    <item>
      <title>Bar graph with multiple subgroups</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Bar-graph-with-multiple-subgroups/m-p/521682#M4262</link>
      <description>&lt;P&gt;Dear All,&lt;/P&gt;
&lt;P&gt;Merry Christmas!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I read a paper, see link, that contains nice graphs. I greatly appreciate your instruction&amp;nbsp;for&amp;nbsp;this graph. Please kindly see the attached file.&lt;/P&gt;
&lt;P&gt;&lt;A href="https://doi.org/10.1186/s13104-017-3044-4" target="_blank"&gt;https://doi.org/10.1186/s13104-017-3044-4&lt;/A&gt;&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;Phan S.&lt;/P&gt;</description>
      <pubDate>Fri, 14 Dec 2018 22:51:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Bar-graph-with-multiple-subgroups/m-p/521682#M4262</guid>
      <dc:creator>PhanS</dc:creator>
      <dc:date>2018-12-14T22:51:20Z</dc:date>
    </item>
    <item>
      <title>Re: Bar graph with multiple subgroups</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Bar-graph-with-multiple-subgroups/m-p/521683#M4263</link>
      <description>&lt;P&gt;This code might get you started. Post relevant data in the form of a data step to get a tested code answer&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sgplot data=sashelp.class;
vline age / response=height group=sex stat=mean limitstat=clm markers
 groupdisplay=cluster clusterwidth=0.1 markerattrs=(size=5 symbol=circlefilled);
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 14 Dec 2018 23:00:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Bar-graph-with-multiple-subgroups/m-p/521683#M4263</guid>
      <dc:creator>PeterClemmensen</dc:creator>
      <dc:date>2018-12-14T23:00:43Z</dc:date>
    </item>
    <item>
      <title>Re: Bar graph with multiple subgroups</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Bar-graph-with-multiple-subgroups/m-p/522406#M4430</link>
      <description>&lt;P&gt;Dear Draycut,&lt;/P&gt;
&lt;P&gt;Thank you !!&lt;/P&gt;
&lt;P&gt;I attached your SAS code vs. mine. Your SAS code comes with a nice graph.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;However, I wonder if you can address my previous post that:&lt;/P&gt;
&lt;P&gt;y is Lsmeans&amp;nbsp;as outcomes of interactions between sex and BP&lt;/P&gt;
&lt;P&gt;x is time&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For mine, I am also looking for a graphs that:&lt;/P&gt;
&lt;P&gt;y is means of phs as outcome of degree_ubn and age_cat&lt;/P&gt;
&lt;P&gt;x is&amp;nbsp;cycle (1, 2, 3)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;data want;&lt;BR /&gt;input Obs Id cycle degree_ubn age_cat phs;&lt;BR /&gt;datalines;&lt;BR /&gt;1 101 1 1 1 47&lt;BR /&gt;1 101 2 1 1 46&lt;BR /&gt;1 101 3 2 1 49&lt;BR /&gt;2 102 1 1 1 56&lt;BR /&gt;2 102 2 2 1 52&lt;BR /&gt;2 102 3 2 1 30&lt;BR /&gt;3 103 1 3 2 38&lt;BR /&gt;3 103 2 1 2 53&lt;BR /&gt;3 103 3 2 2 32&lt;BR /&gt;4 104 1 1 3 60&lt;BR /&gt;4 104 2 4 3 46&lt;BR /&gt;4 104 3 5 3 32&lt;BR /&gt;5 105 1 1 3 47&lt;BR /&gt;5 105 2 3 3 46&lt;BR /&gt;5 105 3 2 3 56&lt;BR /&gt;6 106 1 1 2 47&lt;BR /&gt;6 106 4 1 2 40&lt;BR /&gt;6 106 5 2 2 35&lt;BR /&gt;;&lt;BR /&gt;run;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 19 Dec 2018 01:58:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Bar-graph-with-multiple-subgroups/m-p/522406#M4430</guid>
      <dc:creator>PhanS</dc:creator>
      <dc:date>2018-12-19T01:58:52Z</dc:date>
    </item>
  </channel>
</rss>

