<?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 SAS Graphs/Plots in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/SAS-Graphs-Plots/m-p/592377#M169833</link>
    <description>&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; I have limited knowledge about SAS Graph/plots and I am stuck at one of the exercise's for the same. Using proc template and SGrender I have created a series and scatter plot for patient's BP over visit (for the patient with whom the selected visit is associated) and computed relative to the user defined comparator visit.&lt;/P&gt;&lt;P&gt;In this plot, X axis displays Visit's. Y axis display BP.&lt;/P&gt;&lt;P&gt;1) How do I Create this USER DEFINED comparator visit?&lt;/P&gt;&lt;P&gt;2) There should be an asterisk next to the name of the selected visit...I tried doing it using proc format and assigning an asterik in the format to the visit but this cant be done... as with different run the visit of interest might change..&lt;/P&gt;&lt;P&gt;3) I also want to apply shading to the plot as per the range's.How do I do this??&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any help will be greatly appreciated. THANKS&lt;/P&gt;</description>
    <pubDate>Sat, 28 Sep 2019 08:45:56 GMT</pubDate>
    <dc:creator>Aidaan_10</dc:creator>
    <dc:date>2019-09-28T08:45:56Z</dc:date>
    <item>
      <title>SAS Graphs/Plots</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-Graphs-Plots/m-p/592377#M169833</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; I have limited knowledge about SAS Graph/plots and I am stuck at one of the exercise's for the same. Using proc template and SGrender I have created a series and scatter plot for patient's BP over visit (for the patient with whom the selected visit is associated) and computed relative to the user defined comparator visit.&lt;/P&gt;&lt;P&gt;In this plot, X axis displays Visit's. Y axis display BP.&lt;/P&gt;&lt;P&gt;1) How do I Create this USER DEFINED comparator visit?&lt;/P&gt;&lt;P&gt;2) There should be an asterisk next to the name of the selected visit...I tried doing it using proc format and assigning an asterik in the format to the visit but this cant be done... as with different run the visit of interest might change..&lt;/P&gt;&lt;P&gt;3) I also want to apply shading to the plot as per the range's.How do I do this??&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any help will be greatly appreciated. THANKS&lt;/P&gt;</description>
      <pubDate>Sat, 28 Sep 2019 08:45:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-Graphs-Plots/m-p/592377#M169833</guid>
      <dc:creator>Aidaan_10</dc:creator>
      <dc:date>2019-09-28T08:45:56Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Graphs/Plots</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-Graphs-Plots/m-p/592489#M169887</link>
      <description>Can you show some fake data and your current code? I would have assumed you could get all of this via SGPLOT instead of temples but that's a perfectly valid approach.</description>
      <pubDate>Sun, 29 Sep 2019 17:28:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-Graphs-Plots/m-p/592489#M169887</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-09-29T17:28:31Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Graphs/Plots</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-Graphs-Plots/m-p/592718#M169968</link>
      <description>&lt;P&gt;And show how you attempted to format something to show an asterisk that did not work.&lt;/P&gt;</description>
      <pubDate>Mon, 30 Sep 2019 15:29:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-Graphs-Plots/m-p/592718#M169968</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2019-09-30T15:29:49Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Graphs/Plots</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-Graphs-Plots/m-p/592932#M170077</link>
      <description>&lt;P&gt;Hi Raeza,&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Here is my sample code which I tried..&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;proc template;&lt;BR /&gt;define statgraph seriesplot ;&lt;BR /&gt;begingraph ;&lt;/P&gt;&lt;P&gt;dynamic yvar Ymin Ymax Yinc ref thk ;&lt;BR /&gt;&lt;BR /&gt;layout overlay / xaxisopts=(type=discrete display=(ticks tickvalues line) )&lt;BR /&gt;yaxisopts=(griddisplay=on linearopts=(viewmin=Ymin viewmax=Ymax&lt;BR /&gt;tickvaluesequence=(start=Ymin end=Ymax increment=Yinc))) ;&lt;BR /&gt;layout gridded / rows=1 order=columnmajor border=false autoalign=(top);&lt;BR /&gt;endlayout ;&lt;BR /&gt;referenceline y=ref / datatransparency=.80 lineattrs=(thickness=thk) ;&lt;BR /&gt;seriesplot x=visit y=yvar/ group=paramcd groupdisplay=cluster clusterwidth=.5 name="seriesplot1" ;&lt;/P&gt;&lt;P&gt;scatterplot x=visit y=yvar / group=paramcd groupdisplay=cluster clusterwidth=.5 name="scatterplot1" ;&lt;BR /&gt;layout gridded / rows=1 order=columnmajor border=false autoalign=(bottom);&lt;BR /&gt;endlayout ;&lt;BR /&gt;mergedlegend "seriesplot1" "scatterplot1" ;&lt;BR /&gt;endlayout;&lt;BR /&gt;endgraph;&lt;BR /&gt;end ;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;proc sgrender data=mydata template=seriesplot;&lt;BR /&gt;dynamic yvar='col1' Ymin=-2 Ymax=+5 Yinc=0.5 ref=100 thk=109 ;&lt;BR /&gt;where col1 &amp;gt; . ;&lt;BR /&gt;run;&lt;/P&gt;</description>
      <pubDate>Tue, 01 Oct 2019 07:07:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-Graphs-Plots/m-p/592932#M170077</guid>
      <dc:creator>Aidaan_10</dc:creator>
      <dc:date>2019-10-01T07:07:27Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Graphs/Plots</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-Graphs-Plots/m-p/592933#M170078</link>
      <description>Sorry Reeza*</description>
      <pubDate>Tue, 01 Oct 2019 07:07:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-Graphs-Plots/m-p/592933#M170078</guid>
      <dc:creator>Aidaan_10</dc:creator>
      <dc:date>2019-10-01T07:07:59Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Graphs/Plots</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-Graphs-Plots/m-p/593056#M170135</link>
      <description>Data? Can't run your code without data.</description>
      <pubDate>Tue, 01 Oct 2019 14:51:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-Graphs-Plots/m-p/593056#M170135</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-10-01T14:51:25Z</dc:date>
    </item>
  </channel>
</rss>

