<?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 Simple Graph Output in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/Simple-Graph-Output/m-p/76676#M2846</link>
    <description>Hey Experts, &lt;BR /&gt;
&lt;BR /&gt;
I am sure you guys will know how to plot this graph..I have&lt;BR /&gt;
&lt;BR /&gt;
VariableA&lt;BR /&gt;
VariableB&lt;BR /&gt;
VariableC&lt;BR /&gt;
&lt;BR /&gt;
And I am wanting to plot VarA on X-axis and whereas this is the tricky bit... &lt;BR /&gt;
Y-Axis will be VarB multiply by VarC.&lt;BR /&gt;
&lt;BR /&gt;
Hope someone can help me out.&lt;BR /&gt;
&lt;BR /&gt;
Cheers. &lt;BR /&gt;
Yennie</description>
    <pubDate>Mon, 26 Oct 2009 03:07:45 GMT</pubDate>
    <dc:creator>Yennie</dc:creator>
    <dc:date>2009-10-26T03:07:45Z</dc:date>
    <item>
      <title>Simple Graph Output</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Simple-Graph-Output/m-p/76676#M2846</link>
      <description>Hey Experts, &lt;BR /&gt;
&lt;BR /&gt;
I am sure you guys will know how to plot this graph..I have&lt;BR /&gt;
&lt;BR /&gt;
VariableA&lt;BR /&gt;
VariableB&lt;BR /&gt;
VariableC&lt;BR /&gt;
&lt;BR /&gt;
And I am wanting to plot VarA on X-axis and whereas this is the tricky bit... &lt;BR /&gt;
Y-Axis will be VarB multiply by VarC.&lt;BR /&gt;
&lt;BR /&gt;
Hope someone can help me out.&lt;BR /&gt;
&lt;BR /&gt;
Cheers. &lt;BR /&gt;
Yennie</description>
      <pubDate>Mon, 26 Oct 2009 03:07:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Simple-Graph-Output/m-p/76676#M2846</guid>
      <dc:creator>Yennie</dc:creator>
      <dc:date>2009-10-26T03:07:45Z</dc:date>
    </item>
    <item>
      <title>Re: Simple Graph Output</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Simple-Graph-Output/m-p/76677#M2847</link>
      <description>Hi:&lt;BR /&gt;
  You will need to create a new dataset -- either with a DATA step program or PROC SQL in which you create a new variable which is the result of the multiplication. Then you can plot the new variable and VariableA using either PROC GPLOT or PROC SGPLOT. There are lots of plotting examples in the documentation. For more information about how to create a new variable from an existing variables in an existing dataset, you should look at some of the examples in the documentation on Manipulating Data or using PROC SQL.&lt;BR /&gt;
 &lt;BR /&gt;
cynthia</description>
      <pubDate>Mon, 26 Oct 2009 04:51:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Simple-Graph-Output/m-p/76677#M2847</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2009-10-26T04:51:38Z</dc:date>
    </item>
    <item>
      <title>Re: Simple Graph Output</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Simple-Graph-Output/m-p/76678#M2848</link>
      <description>Yennie - here's a short example ...&lt;BR /&gt;
&lt;BR /&gt;
data tempdata; set sashelp.stocks;&lt;BR /&gt;
 VariableC=volume*close;&lt;BR /&gt;
run;&lt;BR /&gt;
&lt;BR /&gt;
proc gplot data=tempdata;&lt;BR /&gt;
 plot VariableC*date;&lt;BR /&gt;
run;</description>
      <pubDate>Mon, 26 Oct 2009 12:52:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Simple-Graph-Output/m-p/76678#M2848</guid>
      <dc:creator>GraphGuy</dc:creator>
      <dc:date>2009-10-26T12:52:19Z</dc:date>
    </item>
  </channel>
</rss>

