<?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: What is the command for a bar chart for sex variable and relative frequency of it? in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/What-is-the-command-for-a-bar-chart-for-sex-variable-and/m-p/793896#M32774</link>
    <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/412764"&gt;@zhawasli1&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;data rel frequency;&lt;BR /&gt;input frelfreq mrelfreq;&lt;BR /&gt;datalines;&lt;BR /&gt;0.44444444 0.28571429&lt;BR /&gt;0.33333333 0.14285714&lt;BR /&gt;0.22222222 0.42857143&lt;BR /&gt;0 0.14285714;&lt;BR /&gt;run;&lt;BR /&gt;&lt;BR /&gt;* Bar Charts;&lt;BR /&gt;PROC SGPLOT DATA = Rel frequency;&lt;BR /&gt;VBAR sex;&lt;BR /&gt;TITLE 'relative frequency';&lt;BR /&gt;RUN;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Do you mind pointing out to me why this command is not working?&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;OL&gt;
&lt;LI&gt;Your data set name cannot have a space in it.&lt;/LI&gt;
&lt;LI&gt;There is no variable named SEX in this data set.&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you follow the method I provided earlier, going through the SAS Studio menus, you won't run into these problems.&lt;/P&gt;</description>
    <pubDate>Tue, 01 Feb 2022 21:38:41 GMT</pubDate>
    <dc:creator>PaigeMiller</dc:creator>
    <dc:date>2022-02-01T21:38:41Z</dc:date>
    <item>
      <title>What is the command for a bar chart for sex variable and relative frequency of it?</title>
      <link>https://communities.sas.com/t5/New-SAS-User/What-is-the-command-for-a-bar-chart-for-sex-variable-and/m-p/793549#M32758</link>
      <description>&lt;P&gt;in sas studio&lt;/P&gt;</description>
      <pubDate>Mon, 31 Jan 2022 16:24:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/What-is-the-command-for-a-bar-chart-for-sex-variable-and/m-p/793549#M32758</guid>
      <dc:creator>zhawasli1</dc:creator>
      <dc:date>2022-01-31T16:24:32Z</dc:date>
    </item>
    <item>
      <title>Re: What is the command for a bar chart for sex variable and relative frequency of it?</title>
      <link>https://communities.sas.com/t5/New-SAS-User/What-is-the-command-for-a-bar-chart-for-sex-variable-and/m-p/793550#M32759</link>
      <description>&lt;P&gt;Tasks&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;Graph&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Bar Chart&lt;/P&gt;</description>
      <pubDate>Mon, 31 Jan 2022 16:42:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/What-is-the-command-for-a-bar-chart-for-sex-variable-and/m-p/793550#M32759</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2022-01-31T16:42:28Z</dc:date>
    </item>
    <item>
      <title>Re: What is the command for a bar chart for sex variable and relative frequency of it?</title>
      <link>https://communities.sas.com/t5/New-SAS-User/What-is-the-command-for-a-bar-chart-for-sex-variable-and/m-p/793566#M32763</link>
      <description>There are lots of examples using PROC SGPLOT. See the reference below. It can come in handy:&lt;BR /&gt;&lt;BR /&gt;Slaughter, S.J. and Delwiche, L.D. (2010), “Using PROC SGPLOT for Quick High-Quality Graphs”. &lt;A href="http://support.sas.com/resources/papers/proceedings10/154-2010.pdf" target="_blank"&gt;http://support.sas.com/resources/papers/proceedings10/154-2010.pdf&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 31 Jan 2022 18:10:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/What-is-the-command-for-a-bar-chart-for-sex-variable-and/m-p/793566#M32763</guid>
      <dc:creator>jbilenas</dc:creator>
      <dc:date>2022-01-31T18:10:52Z</dc:date>
    </item>
    <item>
      <title>Re: What is the command for a bar chart for sex variable and relative frequency of it?</title>
      <link>https://communities.sas.com/t5/New-SAS-User/What-is-the-command-for-a-bar-chart-for-sex-variable-and/m-p/793869#M32772</link>
      <description>data rel frequency;&lt;BR /&gt;input frelfreq mrelfreq;&lt;BR /&gt;datalines;&lt;BR /&gt;0.44444444 0.28571429&lt;BR /&gt;0.33333333 0.14285714&lt;BR /&gt;0.22222222 0.42857143&lt;BR /&gt;0 0.14285714;&lt;BR /&gt;run;&lt;BR /&gt;&lt;BR /&gt;* Bar Charts;&lt;BR /&gt;PROC SGPLOT DATA = Rel frequency;&lt;BR /&gt;VBAR sex;&lt;BR /&gt;TITLE 'relative frequency';&lt;BR /&gt;RUN;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Do you mind pointing out to me why this command is not working?</description>
      <pubDate>Tue, 01 Feb 2022 19:18:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/What-is-the-command-for-a-bar-chart-for-sex-variable-and/m-p/793869#M32772</guid>
      <dc:creator>zhawasli1</dc:creator>
      <dc:date>2022-02-01T19:18:44Z</dc:date>
    </item>
    <item>
      <title>Re: What is the command for a bar chart for sex variable and relative frequency of it?</title>
      <link>https://communities.sas.com/t5/New-SAS-User/What-is-the-command-for-a-bar-chart-for-sex-variable-and/m-p/793896#M32774</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/412764"&gt;@zhawasli1&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;data rel frequency;&lt;BR /&gt;input frelfreq mrelfreq;&lt;BR /&gt;datalines;&lt;BR /&gt;0.44444444 0.28571429&lt;BR /&gt;0.33333333 0.14285714&lt;BR /&gt;0.22222222 0.42857143&lt;BR /&gt;0 0.14285714;&lt;BR /&gt;run;&lt;BR /&gt;&lt;BR /&gt;* Bar Charts;&lt;BR /&gt;PROC SGPLOT DATA = Rel frequency;&lt;BR /&gt;VBAR sex;&lt;BR /&gt;TITLE 'relative frequency';&lt;BR /&gt;RUN;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Do you mind pointing out to me why this command is not working?&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;OL&gt;
&lt;LI&gt;Your data set name cannot have a space in it.&lt;/LI&gt;
&lt;LI&gt;There is no variable named SEX in this data set.&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you follow the method I provided earlier, going through the SAS Studio menus, you won't run into these problems.&lt;/P&gt;</description>
      <pubDate>Tue, 01 Feb 2022 21:38:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/What-is-the-command-for-a-bar-chart-for-sex-variable-and/m-p/793896#M32774</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2022-02-01T21:38:41Z</dc:date>
    </item>
    <item>
      <title>Re: What is the command for a bar chart for sex variable and relative frequency of it?</title>
      <link>https://communities.sas.com/t5/New-SAS-User/What-is-the-command-for-a-bar-chart-for-sex-variable-and/m-p/794224#M32807</link>
      <description>Thank you so much for your help, sorry if this sounds like a stupid question, where is the SAS Studio menu located? Thanks again,</description>
      <pubDate>Thu, 03 Feb 2022 14:59:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/What-is-the-command-for-a-bar-chart-for-sex-variable-and/m-p/794224#M32807</guid>
      <dc:creator>zhawasli1</dc:creator>
      <dc:date>2022-02-03T14:59:14Z</dc:date>
    </item>
    <item>
      <title>Re: What is the command for a bar chart for sex variable and relative frequency of it?</title>
      <link>https://communities.sas.com/t5/New-SAS-User/What-is-the-command-for-a-bar-chart-for-sex-variable-and/m-p/794225#M32808</link>
      <description>&lt;P&gt;On the left, it is under Tasks and Utilities&lt;/P&gt;</description>
      <pubDate>Thu, 03 Feb 2022 15:02:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/What-is-the-command-for-a-bar-chart-for-sex-variable-and/m-p/794225#M32808</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2022-02-03T15:02:18Z</dc:date>
    </item>
  </channel>
</rss>

