<?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: Custom Scatter Plot in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/Custom-Scatter-Plot/m-p/255847#M9282</link>
    <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods graphics on  ;
proc glm data=dka_please 	PLOTS=all;
	model HOURS_PH_NORM = 
		total_fluid 
		INTITIAL_PH;
run;
ods graphics off;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;Code is above for 2 IV model. In the final graph I would like to use labels to get rid of "_" and add units to variable names.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Side note, your Sim book was great Rick.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 10 Mar 2016 17:13:54 GMT</pubDate>
    <dc:creator>H</dc:creator>
    <dc:date>2016-03-10T17:13:54Z</dc:date>
    <item>
      <title>Custom Scatter Plot</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Custom-Scatter-Plot/m-p/255811#M9274</link>
      <description>&lt;P&gt;I have run a proc glm model&amp;nbsp;(Outcome = continuous&amp;nbsp;with two continous predictors). With the Ods Graphics and Plots active it provided the below contour plot. I love components of&amp;nbsp;this&amp;nbsp;plot for explaining the project.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;However, my final model has 3 continuous predictors, so SAS does not generate the plot. I would like to reproduce the plot without the color contouring and I would like the dots to be color coded based on the quartiles of the third predictor. Which this seems achievable, but i have no idea how to put on the diagonal lines that represent the dependent variable into a graph.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So dataset would contain&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Y: continous variable&lt;/P&gt;
&lt;P&gt;X1: continuous variable&lt;/P&gt;
&lt;P&gt;X2: continuous variable&lt;/P&gt;
&lt;P&gt;X3: continuous variable, categorized into quartile and used to shade observations on the plot.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 10 Mar 2016 15:51:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Custom-Scatter-Plot/m-p/255811#M9274</guid>
      <dc:creator>H</dc:creator>
      <dc:date>2016-03-10T15:51:46Z</dc:date>
    </item>
    <item>
      <title>Re: Custom Scatter Plot</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Custom-Scatter-Plot/m-p/255813#M9275</link>
      <description>&lt;P&gt;Original Plot&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;IMG src="https://communities.sas.com/kntur85557/attachments/kntur85557/sas_graph/9275/1/SAS%20Comm%20Pic.jpg" border="0" /&gt;&lt;/P&gt;&lt;BR /&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/12374i1FAF08B8EB611B5D/image-size/large?v=1.0&amp;amp;px=600" border="0" alt="SAS Comm Pic.jpg" title="SAS Comm Pic.jpg" /&gt;</description>
      <pubDate>Thu, 10 Mar 2016 15:54:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Custom-Scatter-Plot/m-p/255813#M9275</guid>
      <dc:creator>H</dc:creator>
      <dc:date>2016-03-10T15:54:46Z</dc:date>
    </item>
    <item>
      <title>Re: Custom Scatter Plot</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Custom-Scatter-Plot/m-p/255842#M9280</link>
      <description>&lt;P&gt;What version of SAS are you running?&lt;/P&gt;</description>
      <pubDate>Thu, 10 Mar 2016 16:37:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Custom-Scatter-Plot/m-p/255842#M9280</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2016-03-10T16:37:40Z</dc:date>
    </item>
    <item>
      <title>Re: Custom Scatter Plot</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Custom-Scatter-Plot/m-p/255845#M9281</link>
      <description>&lt;P&gt;9.4&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Probably original release.&lt;/P&gt;</description>
      <pubDate>Thu, 10 Mar 2016 16:43:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Custom-Scatter-Plot/m-p/255845#M9281</guid>
      <dc:creator>H</dc:creator>
      <dc:date>2016-03-10T16:43:55Z</dc:date>
    </item>
    <item>
      <title>Re: Custom Scatter Plot</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Custom-Scatter-Plot/m-p/255847#M9282</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods graphics on  ;
proc glm data=dka_please 	PLOTS=all;
	model HOURS_PH_NORM = 
		total_fluid 
		INTITIAL_PH;
run;
ods graphics off;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;Code is above for 2 IV model. In the final graph I would like to use labels to get rid of "_" and add units to variable names.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Side note, your Sim book was great Rick.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 10 Mar 2016 17:13:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Custom-Scatter-Plot/m-p/255847#M9282</guid>
      <dc:creator>H</dc:creator>
      <dc:date>2016-03-10T17:13:54Z</dc:date>
    </item>
  </channel>
</rss>

