<?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: scatterplot in SAS Studio</title>
    <link>https://communities.sas.com/t5/SAS-Studio/scatterplot/m-p/614215#M8532</link>
    <description>&lt;P&gt;also&lt;/P&gt;
&lt;P&gt;3) The lightest and shortest subjects are female. The heaviest and tallest are male.&lt;/P&gt;
&lt;P&gt;4) The average height and weight of the females appear to be less than the average height and weight of the males.&lt;/P&gt;
&lt;P&gt;5) There are some outliers. Four men are 180-190 cm tall but are more than 100 kg. A few women are 170 cm but more than 85 kg.&lt;/P&gt;</description>
    <pubDate>Sat, 28 Dec 2019 14:01:27 GMT</pubDate>
    <dc:creator>Rick_SAS</dc:creator>
    <dc:date>2019-12-28T14:01:27Z</dc:date>
    <item>
      <title>scatterplot</title>
      <link>https://communities.sas.com/t5/SAS-Studio/scatterplot/m-p/614202#M8528</link>
      <description>I’ve created a scatterplot that portrays how weight and height differs between genders. However I’m unsure what comments to make on what the plot is show. Also this is the most basic scatterplot would making it more advance help with a conclusion</description>
      <pubDate>Sat, 28 Dec 2019 10:12:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/scatterplot/m-p/614202#M8528</guid>
      <dc:creator>laurenhosking</dc:creator>
      <dc:date>2019-12-28T10:12:08Z</dc:date>
    </item>
    <item>
      <title>Re: scatterplot</title>
      <link>https://communities.sas.com/t5/SAS-Studio/scatterplot/m-p/614207#M8529</link>
      <description>&lt;P&gt;If you attach your plot we might be able to help. There are many ways to view these data. You might comment on the centers (clusters), the spread (variance/covariance), or on the slopes (regression).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you are thinking about the data in a regression context (weight is a dependent variable; height is an independent variable) then you can form an ANCOVA (analysis of covariance plot) and discuss whether the males and females have the same intercept and same slope. You can create such a plot by using PROC SGPLOT, or you can use PROC GLM:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc glm data=sashelp.class plots=fitplot;
class sex;
model weight = height sex height*sex;
run;

proc sgplot data=sashelp.class;
scatter x=height y=weight / group=sex;
reg x=height y=weight / group=sex nomarkers;
run;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sat, 28 Dec 2019 11:43:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/scatterplot/m-p/614207#M8529</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2019-12-28T11:43:50Z</dc:date>
    </item>
    <item>
      <title>Re: scatterplot</title>
      <link>https://communities.sas.com/t5/SAS-Studio/scatterplot/m-p/614209#M8530</link>
      <description>&lt;P&gt;thank you so much. This is my plot. are the above things ok to comment on for this.&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="scatter.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/35070iB9D98B0673F2AD46/image-size/large?v=v2&amp;amp;px=999" role="button" title="scatter.png" alt="scatter.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 28 Dec 2019 12:41:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/scatterplot/m-p/614209#M8530</guid>
      <dc:creator>laurenhosking</dc:creator>
      <dc:date>2019-12-28T12:41:39Z</dc:date>
    </item>
    <item>
      <title>Re: scatterplot</title>
      <link>https://communities.sas.com/t5/SAS-Studio/scatterplot/m-p/614212#M8531</link>
      <description>&lt;P&gt;Here are two conclusions I would make from your plot&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;Height and weight are positively correlated&lt;/LI&gt;
&lt;LI&gt;Males generally have higher weights and higher heights than females.&lt;/LI&gt;
&lt;/OL&gt;</description>
      <pubDate>Sat, 28 Dec 2019 12:56:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/scatterplot/m-p/614212#M8531</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2019-12-28T12:56:02Z</dc:date>
    </item>
    <item>
      <title>Re: scatterplot</title>
      <link>https://communities.sas.com/t5/SAS-Studio/scatterplot/m-p/614215#M8532</link>
      <description>&lt;P&gt;also&lt;/P&gt;
&lt;P&gt;3) The lightest and shortest subjects are female. The heaviest and tallest are male.&lt;/P&gt;
&lt;P&gt;4) The average height and weight of the females appear to be less than the average height and weight of the males.&lt;/P&gt;
&lt;P&gt;5) There are some outliers. Four men are 180-190 cm tall but are more than 100 kg. A few women are 170 cm but more than 85 kg.&lt;/P&gt;</description>
      <pubDate>Sat, 28 Dec 2019 14:01:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/scatterplot/m-p/614215#M8532</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2019-12-28T14:01:27Z</dc:date>
    </item>
    <item>
      <title>Re: scatterplot</title>
      <link>https://communities.sas.com/t5/SAS-Studio/scatterplot/m-p/614265#M8536</link>
      <description>&lt;P&gt;You could use ELLIPSE to demonstrate what Rick pointed out .&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;proc sgplot data=sashelp.heart(obs=500);&lt;/P&gt;
&lt;P&gt;scatter x=weight y=height/group=sex;&lt;/P&gt;
&lt;P&gt;ellipse&amp;nbsp; x=weight y=height/group=sex;&lt;/P&gt;
&lt;P&gt;run;&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="x.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/35071iE7DBE09DA355038D/image-size/large?v=v2&amp;amp;px=999" role="button" title="x.png" alt="x.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 29 Dec 2019 10:31:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/scatterplot/m-p/614265#M8536</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2019-12-29T10:31:24Z</dc:date>
    </item>
    <item>
      <title>Re: scatterplot</title>
      <link>https://communities.sas.com/t5/SAS-Studio/scatterplot/m-p/614278#M8537</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13684"&gt;@Rick_SAS&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;also&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;5) There are some outliers. Four men are 180-190 cm tall but are more than 100 kg. A few women are 170 cm but more than 85 kg.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;whether or not something is an outlier is subjective and depends on your assumptions and possibly some subject matter expertise — given my assumptions (which is subjective) and my knowledge of the subject matter (which is subjective) I would say there are no outliers shown here.&lt;/P&gt;</description>
      <pubDate>Sun, 29 Dec 2019 12:36:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/scatterplot/m-p/614278#M8537</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2019-12-29T12:36:35Z</dc:date>
    </item>
  </channel>
</rss>

