<?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: points not on the same vertical line in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/points-not-on-the-same-vertical-line/m-p/408864#M13983</link>
    <description>&lt;PRE class=" language-sas"&gt;&lt;CODE class="  language-sas"&gt;groupdisplay&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;&lt;SPAN class="token procnames"&gt;cluster&lt;/SPAN&gt; clusterwidth&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;&lt;SPAN class="token number"&gt;0.5&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Why do you have these options?&amp;nbsp; That might be it.&amp;nbsp; I don't think I have ever used them in a series plot.&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 30 Oct 2017 19:14:49 GMT</pubDate>
    <dc:creator>WarrenKuhfeld</dc:creator>
    <dc:date>2017-10-30T19:14:49Z</dc:date>
    <item>
      <title>points not on the same vertical line</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/points-not-on-the-same-vertical-line/m-p/408831#M13980</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am trying to draw a graph as shown below, I was wondering why the points at the same time point didn't consistent on the same vertical line??&amp;nbsp; for example, all points at x = -1 are not consistent on the vertical line x = -1, some a little left, some a little right...any idea?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;here is my code:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods graphics on / ATTRPRIORITY=NON width = 8in height = 6in border = off;
proc sgplot data= height_mean nowall noborder;
 styleattrs datacontrastcolors=(blue red mediumgreen magenta orange lilac)
             datasymbols=(circlefilled squarefilled trianglefilled  triangleDownfilled DiamondFilled circle square)
             datalinepatterns=(solid);
	title height=.22in font ="Arial" 'Height  cm';
   series x=month y = mean_height /
   group = patient groupdisplay=cluster clusterwidth=0.5
         lineattrs=(thickness=3) markers markerattrs=(size=11);
	xaxis label='Time (Months)' values = (-1 to 12 by 1) offsetmin=0.02
labelattrs = (Family=Arial size = 12 weight = bold) valueattrs = (Family=Arial size = 12 weight = bold);
	yaxis label="Height  cm" values = (50 to 80 by 5) labelattrs = (Family=Arial size = 12 weight = bold) 
valueattrs = (Family=Arial size = 12 weight = bold) offsetmin=0;
	keylegend / valueattrs=(Family=Arial size = 12 weight=bold) linelength=0.5cm position = right noborder title="";
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Here is the graph:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Height.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/16315i0DC4FB210B877C12/image-size/large?v=v2&amp;amp;px=999" role="button" title="Height.png" alt="Height.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 30 Oct 2017 18:32:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/points-not-on-the-same-vertical-line/m-p/408831#M13980</guid>
      <dc:creator>echoli</dc:creator>
      <dc:date>2017-10-30T18:32:24Z</dc:date>
    </item>
    <item>
      <title>Re: points not on the same vertical line</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/points-not-on-the-same-vertical-line/m-p/408847#M13981</link>
      <description>&lt;P&gt;Run PROC FREQ on your X variable and ensure that the values are all exactly MONTH=-1.&amp;nbsp; I'll bet they are not.&lt;/P&gt;</description>
      <pubDate>Mon, 30 Oct 2017 18:58:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/points-not-on-the-same-vertical-line/m-p/408847#M13981</guid>
      <dc:creator>WarrenKuhfeld</dc:creator>
      <dc:date>2017-10-30T18:58:42Z</dc:date>
    </item>
    <item>
      <title>Re: points not on the same vertical line</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/points-not-on-the-same-vertical-line/m-p/408850#M13982</link>
      <description>&lt;P&gt;Yes, they are. The month value was that I classified by event date in original data. Actually, as you can see, my previous questions you helped me solved, the points also didn't consistent in one vertical line. Any idea?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks so much!&lt;/P&gt;&lt;P&gt;C&lt;/P&gt;</description>
      <pubDate>Mon, 30 Oct 2017 19:07:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/points-not-on-the-same-vertical-line/m-p/408850#M13982</guid>
      <dc:creator>echoli</dc:creator>
      <dc:date>2017-10-30T19:07:51Z</dc:date>
    </item>
    <item>
      <title>Re: points not on the same vertical line</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/points-not-on-the-same-vertical-line/m-p/408864#M13983</link>
      <description>&lt;PRE class=" language-sas"&gt;&lt;CODE class="  language-sas"&gt;groupdisplay&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;&lt;SPAN class="token procnames"&gt;cluster&lt;/SPAN&gt; clusterwidth&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;&lt;SPAN class="token number"&gt;0.5&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Why do you have these options?&amp;nbsp; That might be it.&amp;nbsp; I don't think I have ever used them in a series plot.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 30 Oct 2017 19:14:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/points-not-on-the-same-vertical-line/m-p/408864#M13983</guid>
      <dc:creator>WarrenKuhfeld</dc:creator>
      <dc:date>2017-10-30T19:14:49Z</dc:date>
    </item>
    <item>
      <title>Re: points not on the same vertical line</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/points-not-on-the-same-vertical-line/m-p/408865#M13984</link>
      <description>&lt;P&gt;I agree with&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/16777"&gt;@WarrenKuhfeld&lt;/a&gt;, SAS doesn't jitter by default so it would have to be in the data.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Run a proc print on your data set and remove any formats to ensure you're seeing the underlying values, which is what SAS will be using. If you can, post the output from the following.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt; proc print data=height_mean;
var month;
format month;
where month &amp;lt; 0;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 30 Oct 2017 19:15:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/points-not-on-the-same-vertical-line/m-p/408865#M13984</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2017-10-30T19:15:02Z</dc:date>
    </item>
    <item>
      <title>Re: points not on the same vertical line</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/points-not-on-the-same-vertical-line/m-p/408873#M13985</link>
      <description>&lt;P&gt;Yes, I should remove these two statements.....&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks so much!!!&lt;/P&gt;</description>
      <pubDate>Mon, 30 Oct 2017 19:26:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/points-not-on-the-same-vertical-line/m-p/408873#M13985</guid>
      <dc:creator>echoli</dc:creator>
      <dc:date>2017-10-30T19:26:51Z</dc:date>
    </item>
    <item>
      <title>Re: points not on the same vertical line</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/points-not-on-the-same-vertical-line/m-p/408875#M13986</link>
      <description>&lt;P&gt;Thanks, Reeza!! Both you and WarrenKuhfeld are correct!!!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;C&lt;/P&gt;</description>
      <pubDate>Mon, 30 Oct 2017 19:27:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/points-not-on-the-same-vertical-line/m-p/408875#M13986</guid>
      <dc:creator>echoli</dc:creator>
      <dc:date>2017-10-30T19:27:51Z</dc:date>
    </item>
  </channel>
</rss>

