<?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: distribution without markers/dots in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/distribution-without-markers-dots/m-p/605953#M19140</link>
    <description>&lt;P&gt;Using &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/31304"&gt;@PeterClemmensen&lt;/a&gt;'s data set.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Maybe:&lt;/P&gt;
&lt;PRE&gt;proc sgplot data=have;
   pbspline x=scores y=ss;
run;&lt;/PRE&gt;
&lt;P&gt;or&lt;/P&gt;
&lt;PRE&gt;proc sgplot data=have;
   reg x=scores y=ss / degree=3 nomarkers;
run;&lt;/PRE&gt;
&lt;P&gt;We kind of need a bit more description of your expectations than "no dots".&lt;/P&gt;</description>
    <pubDate>Wed, 20 Nov 2019 21:40:10 GMT</pubDate>
    <dc:creator>ballardw</dc:creator>
    <dc:date>2019-11-20T21:40:10Z</dc:date>
    <item>
      <title>distribution without markers/dots</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/distribution-without-markers-dots/m-p/605897#M19135</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;
&lt;P&gt;I two numeric-Continuous variables. I'd like to draw a distribution where one continues variable x-axis and the other one is y-axis. I draw scatter plots with the curve but I don't want dots in the graph. It should be more like Kernel or Normal distribution. However, as I know I can draw Kernel or Normal distribution with only one variable using density. I want a distribution as seen below.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Could you help me to draw it?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="preview.jpg" style="width: 499px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/34117i2CDC22A0ED43F0CA/image-dimensions/499x337?v=v2" width="499" height="337" role="button" title="preview.jpg" alt="preview.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 20 Nov 2019 19:23:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/distribution-without-markers-dots/m-p/605897#M19135</guid>
      <dc:creator>dustychair</dc:creator>
      <dc:date>2019-11-20T19:23:14Z</dc:date>
    </item>
    <item>
      <title>Re: distribution without markers/dots</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/distribution-without-markers-dots/m-p/605898#M19136</link>
      <description>&lt;P&gt;Can you post your data or a sample of it?&lt;/P&gt;</description>
      <pubDate>Wed, 20 Nov 2019 19:24:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/distribution-without-markers-dots/m-p/605898#M19136</guid>
      <dc:creator>PeterClemmensen</dc:creator>
      <dc:date>2019-11-20T19:24:16Z</dc:date>
    </item>
    <item>
      <title>Re: distribution without markers/dots</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/distribution-without-markers-dots/m-p/605901#M19137</link>
      <description>&lt;P&gt;Sure, Here it is! It is in the attachment.&lt;/P&gt;
&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Wed, 20 Nov 2019 19:27:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/distribution-without-markers-dots/m-p/605901#M19137</guid>
      <dc:creator>dustychair</dc:creator>
      <dc:date>2019-11-20T19:27:48Z</dc:date>
    </item>
    <item>
      <title>Re: distribution without markers/dots</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/distribution-without-markers-dots/m-p/605902#M19138</link>
      <description>&lt;P&gt;the scores will be x-axis and ss will be y-axis.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Wed, 20 Nov 2019 19:29:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/distribution-without-markers-dots/m-p/605902#M19138</guid>
      <dc:creator>dustychair</dc:creator>
      <dc:date>2019-11-20T19:29:06Z</dc:date>
    </item>
    <item>
      <title>Re: distribution without markers/dots</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/distribution-without-markers-dots/m-p/605905#M19139</link>
      <description>&lt;P&gt;I'm not really sure how you expect this data to yield a plot like you posted. However, to get things started, you can fit a normal density plot like this&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data have;
input scores ss;
datalines;
920 5.5
941 6.3
935 8.2
910 9.5
972 10.5
954 .
925 9.2
900 8.7
;

proc sgplot data=have;
   density ss;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 20 Nov 2019 19:34:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/distribution-without-markers-dots/m-p/605905#M19139</guid>
      <dc:creator>PeterClemmensen</dc:creator>
      <dc:date>2019-11-20T19:34:36Z</dc:date>
    </item>
    <item>
      <title>Re: distribution without markers/dots</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/distribution-without-markers-dots/m-p/605953#M19140</link>
      <description>&lt;P&gt;Using &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/31304"&gt;@PeterClemmensen&lt;/a&gt;'s data set.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Maybe:&lt;/P&gt;
&lt;PRE&gt;proc sgplot data=have;
   pbspline x=scores y=ss;
run;&lt;/PRE&gt;
&lt;P&gt;or&lt;/P&gt;
&lt;PRE&gt;proc sgplot data=have;
   reg x=scores y=ss / degree=3 nomarkers;
run;&lt;/PRE&gt;
&lt;P&gt;We kind of need a bit more description of your expectations than "no dots".&lt;/P&gt;</description>
      <pubDate>Wed, 20 Nov 2019 21:40:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/distribution-without-markers-dots/m-p/605953#M19140</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2019-11-20T21:40:10Z</dc:date>
    </item>
    <item>
      <title>Re: distribution without markers/dots</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/distribution-without-markers-dots/m-p/606019#M19141</link>
      <description>&lt;P&gt;Thank you so much!&lt;/P&gt;
&lt;P&gt;I tried the second one and it worked!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you!&lt;/P&gt;</description>
      <pubDate>Thu, 21 Nov 2019 06:09:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/distribution-without-markers-dots/m-p/606019#M19141</guid>
      <dc:creator>dustychair</dc:creator>
      <dc:date>2019-11-21T06:09:32Z</dc:date>
    </item>
  </channel>
</rss>

