<?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 Proc Freq Output Style in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/Proc-Freq-Output-Style/m-p/961567#M48176</link>
    <description>&lt;P&gt;&lt;SPAN&gt;Hi everyone.&amp;nbsp; I have a quick question regarding output styles in SAS Enterprise Guide.&amp;nbsp; I know that proc surveyfreq gives this kind of thing. where both variables are on the left axis and it just lists one as a subset of the other:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="c_webb_2-1741705477796.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/105344iD9A0DD386800B500/image-size/medium?v=v2&amp;amp;px=400" role="button" title="c_webb_2-1741705477796.png" alt="c_webb_2-1741705477796.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Proc freq, however, has one variable on the top, with the other variable on the left, like so:&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="c_webb_4-1741705700551.jpeg" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/105346i185699826C18AD04/image-size/medium?v=v2&amp;amp;px=400" role="button" title="c_webb_4-1741705700551.jpeg" alt="c_webb_4-1741705700551.jpeg" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there any way that we can make the proc surveyfreq output more similar to the proc freq output in the way that the variables and values are arranged (We want one variable per axis)?&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 11 Mar 2025 15:09:42 GMT</pubDate>
    <dc:creator>c_webb</dc:creator>
    <dc:date>2025-03-11T15:09:42Z</dc:date>
    <item>
      <title>Proc Freq Output Style</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Proc-Freq-Output-Style/m-p/961567#M48176</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Hi everyone.&amp;nbsp; I have a quick question regarding output styles in SAS Enterprise Guide.&amp;nbsp; I know that proc surveyfreq gives this kind of thing. where both variables are on the left axis and it just lists one as a subset of the other:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="c_webb_2-1741705477796.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/105344iD9A0DD386800B500/image-size/medium?v=v2&amp;amp;px=400" role="button" title="c_webb_2-1741705477796.png" alt="c_webb_2-1741705477796.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Proc freq, however, has one variable on the top, with the other variable on the left, like so:&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="c_webb_4-1741705700551.jpeg" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/105346i185699826C18AD04/image-size/medium?v=v2&amp;amp;px=400" role="button" title="c_webb_4-1741705700551.jpeg" alt="c_webb_4-1741705700551.jpeg" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there any way that we can make the proc surveyfreq output more similar to the proc freq output in the way that the variables and values are arranged (We want one variable per axis)?&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 11 Mar 2025 15:09:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Proc-Freq-Output-Style/m-p/961567#M48176</guid>
      <dc:creator>c_webb</dc:creator>
      <dc:date>2025-03-11T15:09:42Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Freq Output Style</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Proc-Freq-Output-Style/m-p/961637#M48179</link>
      <description>&lt;P&gt;Swap the variable names standing for the rows and columns in the procedure syntax that you think is inapproriate and have a look. Like this:&lt;/P&gt;
&lt;P&gt;Before:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc freq data=xxx;
tables a*b;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;After:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc freq data=xxx;
tables b*a;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 12 Mar 2025 07:07:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Proc-Freq-Output-Style/m-p/961637#M48179</guid>
      <dc:creator>Season</dc:creator>
      <dc:date>2025-03-12T07:07:56Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Freq Output Style</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Proc-Freq-Output-Style/m-p/961744#M48190</link>
      <description>&lt;P&gt;What is the purpose of having Surveyfreq and Freq output appear similar? &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;And by "output style" are you referring to the appearance in the result window only? The ODS OUTPUT creating a data set in Surveyfreq and either the OUT=option in Proc Freq or the ODS output to create data sets may be easier to similar output structures and then use a report procedure such as Print, Tabulate or Report to create desired human readable output.&lt;/P&gt;</description>
      <pubDate>Thu, 13 Mar 2025 01:37:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Proc-Freq-Output-Style/m-p/961744#M48190</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2025-03-13T01:37:17Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Freq Output Style</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Proc-Freq-Output-Style/m-p/961789#M48191</link>
      <description>&lt;P&gt;&lt;SPAN&gt;It sounds like there's no way to adjust the style of the output table directly within the proc surveyfreq statement. So I'll try as you suggested and save the proc surveyfreq output, and then use a different procedure statement to make a more reader-friendly table. Thank you for the help.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 13 Mar 2025 13:28:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Proc-Freq-Output-Style/m-p/961789#M48191</guid>
      <dc:creator>c_webb</dc:creator>
      <dc:date>2025-03-13T13:28:13Z</dc:date>
    </item>
  </channel>
</rss>

