<?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: Jittered scatterplot shows mystery data in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/Jittered-scatterplot-shows-mystery-data/m-p/407028#M13902</link>
    <description>Thanks, worked like a charm!&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
    <pubDate>Tue, 24 Oct 2017 18:16:57 GMT</pubDate>
    <dc:creator>swannie</dc:creator>
    <dc:date>2017-10-24T18:16:57Z</dc:date>
    <item>
      <title>Jittered scatterplot shows mystery data</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Jittered-scatterplot-shows-mystery-data/m-p/406956#M13896</link>
      <description>&lt;P&gt;I'm using proc sgpanel to create scatterplots with regression lines for 2 variables in an overlay.&amp;nbsp; I've jittered the data to see it all but the resulting plot has, in addition to the filled red squares and black circles that I've specified mystery data (small, unfilled circles).&amp;nbsp; What are these, why are they there, and most importantly, how do I make them go away? Code included;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;*Assign libraries and formats;
libname in 'U:\';


proc format ;
	value tmm
		1='predose'
		2='24hr'
		8='C3W8'
	;

=run;


options orientation=landscape nodate nonumber; 
ods pdf file="U:\test_plot.pdf" style=styles.arial;
ods graphics / reset=all border=off HEIGHT = 193.8867mm WIDTH = 266.7mm border=off; 
title '';

proc sgpanel data=in.check noautolegend;
	panelby respond /rows=1 columns=1;
	scatter x=time2 y=ki67t_pct / jitter jitterwidth=1 markerattrs=(symbol=circlefilled size=12 color=black );
	reg x=time2 y=ki67t_pct;
	scatter x=time2 y=ki67b_pct / jitter markerattrs=(symbol=squarefilled size=12 color=red );
	reg x=time2 y=ki67b_pct;
	where respond='N';
	rowaxis label ='% KI67+ on CD8+ T Cells' labelattrs=(size=14 weight=bold) VALUEATTRS= (Weight=Bold) values=(0 to 100 by 20) offsetmin=0.10;
	colaxis label=' ' labelattrs=(size=14 weight=bold) VALUEATTRS= (size=10 Weight=Bold) label="  " values=(1, 2, 8) offsetmin=0.15;
	format time2 tmm.;
run;

ods pdf close;

ods graphics off;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;data, and pdf of the plot attached.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any help vastly appreciated.&lt;/P&gt;</description>
      <pubDate>Tue, 24 Oct 2017 14:19:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Jittered-scatterplot-shows-mystery-data/m-p/406956#M13896</guid>
      <dc:creator>swannie</dc:creator>
      <dc:date>2017-10-24T14:19:35Z</dc:date>
    </item>
    <item>
      <title>Re: Jittered scatterplot shows mystery data</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Jittered-scatterplot-shows-mystery-data/m-p/407027#M13901</link>
      <description>&lt;P&gt;Try adding option NOMARKERS to your reg statements.&lt;/P&gt;</description>
      <pubDate>Tue, 24 Oct 2017 18:06:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Jittered-scatterplot-shows-mystery-data/m-p/407027#M13901</guid>
      <dc:creator>PGStats</dc:creator>
      <dc:date>2017-10-24T18:06:14Z</dc:date>
    </item>
    <item>
      <title>Re: Jittered scatterplot shows mystery data</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Jittered-scatterplot-shows-mystery-data/m-p/407028#M13902</link>
      <description>Thanks, worked like a charm!&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 24 Oct 2017 18:16:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Jittered-scatterplot-shows-mystery-data/m-p/407028#M13902</guid>
      <dc:creator>swannie</dc:creator>
      <dc:date>2017-10-24T18:16:57Z</dc:date>
    </item>
  </channel>
</rss>

