<?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: Transpose proc means results in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/Transpose-proc-means-results/m-p/67193#M19217</link>
    <description>_null_,&lt;BR /&gt;
&lt;BR /&gt;
Thank you so much for the help.  &lt;BR /&gt;
&lt;BR /&gt;
Jerry</description>
    <pubDate>Mon, 31 Jan 2011 18:30:05 GMT</pubDate>
    <dc:creator>jerry898969</dc:creator>
    <dc:date>2011-01-31T18:30:05Z</dc:date>
    <item>
      <title>Transpose proc means results</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Transpose-proc-means-results/m-p/67191#M19215</link>
      <description>I need helping to transpose my means results. Currently the results come back like this&lt;BR /&gt;
&lt;BR /&gt;
_stat_  var1 var2  var3&lt;BR /&gt;
max     100  200  300&lt;BR /&gt;
mean   400  500  600&lt;BR /&gt;
min         0      1     0&lt;BR /&gt;
n          100  100  100&lt;BR /&gt;
std        1.2  3.4   5.6&lt;BR /&gt;
&lt;BR /&gt;
I need it to look like this&lt;BR /&gt;
       &lt;BR /&gt;
var1 100  400  0  100 1.2&lt;BR /&gt;
var2 200  500  1  100 3.4&lt;BR /&gt;
var3 300  600  0  100 5.6&lt;BR /&gt;
&lt;BR /&gt;
Thank you for any help</description>
      <pubDate>Mon, 31 Jan 2011 18:03:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Transpose-proc-means-results/m-p/67191#M19215</guid>
      <dc:creator>jerry898969</dc:creator>
      <dc:date>2011-01-31T18:03:37Z</dc:date>
    </item>
    <item>
      <title>Re: Transpose proc means results</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Transpose-proc-means-results/m-p/67192#M19216</link>
      <description>How about...&lt;BR /&gt;
&lt;BR /&gt;
[pre]&lt;BR /&gt;
proc means data=sashelp.class noprint;&lt;BR /&gt;
   output out=stats;&lt;BR /&gt;
   run;&lt;BR /&gt;
proc print;&lt;BR /&gt;
   run;&lt;BR /&gt;
proc transpose data=stats out=stats2;&lt;BR /&gt;
   by _type_ _freq_;&lt;BR /&gt;
   id _stat_;&lt;BR /&gt;
   run;&lt;BR /&gt;
proc print;&lt;BR /&gt;
   run;&lt;BR /&gt;
[/pre]&lt;BR /&gt;
&lt;BR /&gt;
[pre]&lt;BR /&gt;
Obs    _TYPE_    _FREQ_    _NAME_     N     MIN    MAX      MEAN       STD&lt;BR /&gt;
&lt;BR /&gt;
 1        0        19      Age       19    11.0     16     13.316     1.4927&lt;BR /&gt;
 2        0        19      Height    19    51.3     72     62.337     5.1271&lt;BR /&gt;
 3        0        19      Weight    19    50.5    150    100.026    22.7739&lt;BR /&gt;
[/pre]</description>
      <pubDate>Mon, 31 Jan 2011 18:15:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Transpose-proc-means-results/m-p/67192#M19216</guid>
      <dc:creator>data_null__</dc:creator>
      <dc:date>2011-01-31T18:15:25Z</dc:date>
    </item>
    <item>
      <title>Re: Transpose proc means results</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Transpose-proc-means-results/m-p/67193#M19217</link>
      <description>_null_,&lt;BR /&gt;
&lt;BR /&gt;
Thank you so much for the help.  &lt;BR /&gt;
&lt;BR /&gt;
Jerry</description>
      <pubDate>Mon, 31 Jan 2011 18:30:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Transpose-proc-means-results/m-p/67193#M19217</guid>
      <dc:creator>jerry898969</dc:creator>
      <dc:date>2011-01-31T18:30:05Z</dc:date>
    </item>
    <item>
      <title>Re: Transpose proc means results</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Transpose-proc-means-results/m-p/473616#M71055</link>
      <description>&lt;P&gt;Is there a way I can also add Median and Quartile?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;When I output Proc Means output to a dataset only N Min Max MEAN and STD comes out.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In my transpose I also want median and the quartile information.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Wed, 27 Jun 2018 07:14:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Transpose-proc-means-results/m-p/473616#M71055</guid>
      <dc:creator>sfo</dc:creator>
      <dc:date>2018-06-27T07:14:48Z</dc:date>
    </item>
  </channel>
</rss>

