<?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 Proq freq out in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/Proq-freq-out/m-p/825770#M40897</link>
    <description>&lt;P&gt;Como faço para ter a mesma tabela obtida pelo código abaixo em "resultados", exatamente o mesmo, mas nos "dados de saída"?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;proc freq/base; &lt;BR /&gt;tabela dt*dt_end / out=matriz norow nocol nopercent; &lt;BR /&gt;executar;&lt;/P&gt;</description>
    <pubDate>Wed, 27 Jul 2022 18:26:04 GMT</pubDate>
    <dc:creator>Thalitacosta</dc:creator>
    <dc:date>2022-07-27T18:26:04Z</dc:date>
    <item>
      <title>Proq freq out</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Proq-freq-out/m-p/825770#M40897</link>
      <description>&lt;P&gt;Como faço para ter a mesma tabela obtida pelo código abaixo em "resultados", exatamente o mesmo, mas nos "dados de saída"?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;proc freq/base; &lt;BR /&gt;tabela dt*dt_end / out=matriz norow nocol nopercent; &lt;BR /&gt;executar;&lt;/P&gt;</description>
      <pubDate>Wed, 27 Jul 2022 18:26:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Proq-freq-out/m-p/825770#M40897</guid>
      <dc:creator>Thalitacosta</dc:creator>
      <dc:date>2022-07-27T18:26:04Z</dc:date>
    </item>
    <item>
      <title>Re: Proq freq out</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Proq-freq-out/m-p/825772#M40898</link>
      <description>&lt;P&gt;The information from the TABLE statement is in the OUT= data set, but it is just arranged differently. If you want a data set that has the same basic arrangement as in the displayed output, you can create it using PROC TRANSPOSE. The following creates data set MATRIZ2 that is arranged like the displayed output.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc transpose data=matriz out=matriz2 prefix=dt_end_; 
by dt; id dt_end; var count; 
run;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 27 Jul 2022 19:12:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Proq-freq-out/m-p/825772#M40898</guid>
      <dc:creator>StatDave</dc:creator>
      <dc:date>2022-07-27T19:12:05Z</dc:date>
    </item>
  </channel>
</rss>

