<?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 Customizing proc means output in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Customizing-proc-means-output/m-p/830335#M328088</link>
    <description>&lt;P&gt;Good afternoon,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;could anyone explain to me how to customize my proc means output? I am actually just trying to get rid of the "analysis variable: MSRP" part at the top of my output and somehow, I do not manage to find anything on the internet. My Output so far looks like this:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Jakobsen96_1-1661438140794.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/74707iF853D5BA99414D2A/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Jakobsen96_1-1661438140794.png" alt="Jakobsen96_1-1661438140794.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;And my code like that:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc means data=sashelp.cars;
class Make;
var MSRP;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;If anyone could help me with that, I would be really thankful.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Kind regards,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Jakob&lt;/P&gt;</description>
    <pubDate>Thu, 25 Aug 2022 14:36:47 GMT</pubDate>
    <dc:creator>_Manhattan</dc:creator>
    <dc:date>2022-08-25T14:36:47Z</dc:date>
    <item>
      <title>Customizing proc means output</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Customizing-proc-means-output/m-p/830335#M328088</link>
      <description>&lt;P&gt;Good afternoon,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;could anyone explain to me how to customize my proc means output? I am actually just trying to get rid of the "analysis variable: MSRP" part at the top of my output and somehow, I do not manage to find anything on the internet. My Output so far looks like this:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Jakobsen96_1-1661438140794.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/74707iF853D5BA99414D2A/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Jakobsen96_1-1661438140794.png" alt="Jakobsen96_1-1661438140794.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;And my code like that:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc means data=sashelp.cars;
class Make;
var MSRP;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;If anyone could help me with that, I would be really thankful.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Kind regards,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Jakob&lt;/P&gt;</description>
      <pubDate>Thu, 25 Aug 2022 14:36:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Customizing-proc-means-output/m-p/830335#M328088</guid>
      <dc:creator>_Manhattan</dc:creator>
      <dc:date>2022-08-25T14:36:47Z</dc:date>
    </item>
    <item>
      <title>Re: Customizing proc means output</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Customizing-proc-means-output/m-p/830341#M328090</link>
      <description>&lt;P&gt;Couple of choices. One is to create an output data set and then use Proc Print to display.&lt;/P&gt;
&lt;P&gt;Or use a different procedure to summarize and control display such as Proc Tabulate or Report.&lt;/P&gt;
&lt;P&gt;Here is an example with Proc Tabulate:&lt;/P&gt;
&lt;PRE&gt;Proc tabulate data=sashelp.cars;
   class make;
   var msrp;
   table make='',
         msrp=' '*(n mean std min max)
         /box=make
   ;
run;&lt;/PRE&gt;
&lt;P&gt;The reporting procedures will allow more control over output display then Proc Means/Summary.&lt;/P&gt;</description>
      <pubDate>Thu, 25 Aug 2022 15:08:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Customizing-proc-means-output/m-p/830341#M328090</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2022-08-25T15:08:22Z</dc:date>
    </item>
  </channel>
</rss>

