<?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: How to display frequencies of cases above the median and below the median on graph in proc NPAR1 in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/How-to-display-frequencies-of-cases-above-the-median-and-below/m-p/731043#M227705</link>
    <description>OH!! Thank you so much!!!</description>
    <pubDate>Fri, 02 Apr 2021 19:52:57 GMT</pubDate>
    <dc:creator>Yughaber</dc:creator>
    <dc:date>2021-04-02T19:52:57Z</dc:date>
    <item>
      <title>How to display frequencies of cases above the median and below the median on graph in proc NPAR1Way</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-display-frequencies-of-cases-above-the-median-and-below/m-p/731015#M227694</link>
      <description>&lt;P&gt;I have ran a proc NPAR1WAY procedure on my dataset and have successfully got the graph that depicts the frequencies above and below the overall median BUT my problem is that I can't see how many are above and how many are below the median...that is the numbers I also need but don't know how to code for the results section to specify them...&lt;/P&gt;</description>
      <pubDate>Fri, 02 Apr 2021 17:49:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-display-frequencies-of-cases-above-the-median-and-below/m-p/731015#M227694</guid>
      <dc:creator>Yughaber</dc:creator>
      <dc:date>2021-04-02T17:49:45Z</dc:date>
    </item>
    <item>
      <title>Re: How to display frequencies of cases above the median and below the median on graph in proc NPAR1</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-display-frequencies-of-cases-above-the-median-and-below/m-p/731032#M227701</link>
      <description>&lt;P&gt;You can save the median plot data (which includes the frequencies above and below the median) in a SAS data set like this:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods graphics on;
proc npar1way data=have median;
     class classVar;  var analysisVar;
     &lt;STRONG&gt;&lt;FONT color="#333333"&gt;ods output medianplot=save;&lt;/FONT&gt;&lt;/STRONG&gt;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Also, here's an example from the documentation (&lt;A href="https://go.documentation.sas.com/?docsetId=statug&amp;amp;docsetTarget=statug_odsgraph_toc.htm&amp;amp;docsetVersion=15.2&amp;amp;locale=en" target="_self"&gt;Statistical Graphics with ODS&lt;/A&gt;) that shows how to create plots in HTML that are enhanced with tooltip displays:&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://go.documentation.sas.com/?docsetId=statug&amp;amp;docsetTarget=statug_odsgraph_sect068.htm&amp;amp;docsetVersion=15.2&amp;amp;locale=en" target="_self"&gt;Creating Graphs with Tooltips in HTML&lt;/A&gt;.&lt;/P&gt;</description>
      <pubDate>Fri, 02 Apr 2021 19:29:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-display-frequencies-of-cases-above-the-median-and-below/m-p/731032#M227701</guid>
      <dc:creator>Watts</dc:creator>
      <dc:date>2021-04-02T19:29:25Z</dc:date>
    </item>
    <item>
      <title>Re: How to display frequencies of cases above the median and below the median on graph in proc NPAR1</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-display-frequencies-of-cases-above-the-median-and-below/m-p/731034#M227702</link>
      <description>But that still doesn't show me how many counts are above the median and how many below...</description>
      <pubDate>Fri, 02 Apr 2021 19:32:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-display-frequencies-of-cases-above-the-median-and-below/m-p/731034#M227702</guid>
      <dc:creator>Yughaber</dc:creator>
      <dc:date>2021-04-02T19:32:05Z</dc:date>
    </item>
    <item>
      <title>Re: How to display frequencies of cases above the median and below the median on graph in proc NPAR1</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-display-frequencies-of-cases-above-the-median-and-below/m-p/731037#M227703</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Yughaber_0-1617392105509.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/56857iE8D152FA1B356D3C/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Yughaber_0-1617392105509.png" alt="Yughaber_0-1617392105509.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;you see the pink and the blue...they are the above and below median...I need to know the frequency for each color...I only have the N which for example for the first bar is 270 but I want to know the breakdown&lt;/P&gt;</description>
      <pubDate>Fri, 02 Apr 2021 19:36:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-display-frequencies-of-cases-above-the-median-and-below/m-p/731037#M227703</guid>
      <dc:creator>Yughaber</dc:creator>
      <dc:date>2021-04-02T19:36:36Z</dc:date>
    </item>
    <item>
      <title>Re: How to display frequencies of cases above the median and below the median on graph in proc NPAR1</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-display-frequencies-of-cases-above-the-median-and-below/m-p/731040#M227704</link>
      <description>&lt;P&gt;This output data set (save)&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods output medianplot=save;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;includes the frequencies above and below the median for each class.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc print data=save;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 02 Apr 2021 19:42:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-display-frequencies-of-cases-above-the-median-and-below/m-p/731040#M227704</guid>
      <dc:creator>Watts</dc:creator>
      <dc:date>2021-04-02T19:42:53Z</dc:date>
    </item>
    <item>
      <title>Re: How to display frequencies of cases above the median and below the median on graph in proc NPAR1</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-display-frequencies-of-cases-above-the-median-and-below/m-p/731043#M227705</link>
      <description>OH!! Thank you so much!!!</description>
      <pubDate>Fri, 02 Apr 2021 19:52:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-display-frequencies-of-cases-above-the-median-and-below/m-p/731043#M227705</guid>
      <dc:creator>Yughaber</dc:creator>
      <dc:date>2021-04-02T19:52:57Z</dc:date>
    </item>
  </channel>
</rss>

