<?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: Analyze table in SAS Studio in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/Analyze-table-in-SAS-Studio/m-p/739981#M29028</link>
    <description>&lt;P&gt;Submit this and you will find out what each of these procedures could mean to you.&lt;/P&gt;
&lt;P&gt;I have put the PROC PRINT in comment as it just displays the big table in the OUTPUT.&lt;/P&gt;
&lt;P&gt;It's better to view the entire table by giving the 'VT SASHELP.SHOES' command in the command line, where 'VT' is for ViewTable.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;*PROC PRINT data=sashelp.shoes; *run;
PROC CONTENTS data=sashelp.shoes; run;
PROC UNIVARIATE data=sashelp.shoes PLOT; var _numeric_; run;
PROC FREQ data=sashelp.shoes; tables _character_; run;
/* end of program */&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;As said, in VIYA you can additionally use a PROC CARDINALITY!!&lt;/P&gt;
&lt;P&gt;Good luck,&lt;/P&gt;
&lt;P&gt;Koen&lt;/P&gt;</description>
    <pubDate>Sat, 08 May 2021 16:58:28 GMT</pubDate>
    <dc:creator>sbxkoenk</dc:creator>
    <dc:date>2021-05-08T16:58:28Z</dc:date>
    <item>
      <title>Analyze table in SAS Studio</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Analyze-table-in-SAS-Studio/m-p/739971#M29024</link>
      <description>&lt;P&gt;&amp;nbsp;Which Sas procedure we use to analyze the content of&amp;nbsp; table sas&amp;nbsp; : contents , freq , univariate or print ?&lt;/P&gt;&lt;P&gt;Any help please&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 08 May 2021 14:35:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Analyze-table-in-SAS-Studio/m-p/739971#M29024</guid>
      <dc:creator>Sarra-Matri</dc:creator>
      <dc:date>2021-05-08T14:35:20Z</dc:date>
    </item>
    <item>
      <title>Re: Analyze table in SAS Studio</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Analyze-table-in-SAS-Studio/m-p/739975#M29025</link>
      <description>&lt;P&gt;That's a strange question. [ The answer is in your question&lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;. ]&lt;/P&gt;
&lt;P&gt;What do you mean by 'content'?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can of course use PROC CONTENTS; but the other procedures you mention are also viable options.&lt;/P&gt;
&lt;P&gt;What version of SAS are you using?&lt;/P&gt;
&lt;P&gt;Find out by submitting:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%PUT &amp;amp;=sysvlong;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;If you have SAS VIYA, you can additionally use PROC CARDINALITY:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc cardinality data=mycas.XYZ outcard=mycas.card
                 outdetails=mycas.details maxlevels=5;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;Cheers,&lt;/P&gt;
&lt;P&gt;Koen&lt;/P&gt;</description>
      <pubDate>Sat, 08 May 2021 15:59:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Analyze-table-in-SAS-Studio/m-p/739975#M29025</guid>
      <dc:creator>sbxkoenk</dc:creator>
      <dc:date>2021-05-08T15:59:18Z</dc:date>
    </item>
    <item>
      <title>Re: Analyze table in SAS Studio</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Analyze-table-in-SAS-Studio/m-p/739977#M29026</link>
      <description>sas studio</description>
      <pubDate>Sat, 08 May 2021 16:19:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Analyze-table-in-SAS-Studio/m-p/739977#M29026</guid>
      <dc:creator>Sarra-Matri</dc:creator>
      <dc:date>2021-05-08T16:19:49Z</dc:date>
    </item>
    <item>
      <title>Re: Analyze table in SAS Studio</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Analyze-table-in-SAS-Studio/m-p/739980#M29027</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;SAS Studio is not a SAS version.&lt;/P&gt;
&lt;P&gt;SAS Studio can be used as a browser-based (front-end) editor for SAS 9.4 and SAS VIYA!&lt;/P&gt;
&lt;P&gt;Please submit:&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%PUT &amp;amp;=sysvlong;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;and look in the log window for the result!&lt;/P&gt;
&lt;P&gt;My LOG says:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;SYSVLONG=V.03.05M0P111119&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;when I am in VIYA and says&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;SYSVLONG=9.04.01M4P110916&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;when I am in SAS 9.4 Maintenance Level 4&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;**** But please elaborate on what you want to find out with your 'content' query. I still don't have a clue on what you want to achieve. ****&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Cheers,&lt;/P&gt;
&lt;P&gt;Koen&lt;/P&gt;</description>
      <pubDate>Sat, 08 May 2021 16:47:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Analyze-table-in-SAS-Studio/m-p/739980#M29027</guid>
      <dc:creator>sbxkoenk</dc:creator>
      <dc:date>2021-05-08T16:47:34Z</dc:date>
    </item>
    <item>
      <title>Re: Analyze table in SAS Studio</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Analyze-table-in-SAS-Studio/m-p/739981#M29028</link>
      <description>&lt;P&gt;Submit this and you will find out what each of these procedures could mean to you.&lt;/P&gt;
&lt;P&gt;I have put the PROC PRINT in comment as it just displays the big table in the OUTPUT.&lt;/P&gt;
&lt;P&gt;It's better to view the entire table by giving the 'VT SASHELP.SHOES' command in the command line, where 'VT' is for ViewTable.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;*PROC PRINT data=sashelp.shoes; *run;
PROC CONTENTS data=sashelp.shoes; run;
PROC UNIVARIATE data=sashelp.shoes PLOT; var _numeric_; run;
PROC FREQ data=sashelp.shoes; tables _character_; run;
/* end of program */&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;As said, in VIYA you can additionally use a PROC CARDINALITY!!&lt;/P&gt;
&lt;P&gt;Good luck,&lt;/P&gt;
&lt;P&gt;Koen&lt;/P&gt;</description>
      <pubDate>Sat, 08 May 2021 16:58:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Analyze-table-in-SAS-Studio/m-p/739981#M29028</guid>
      <dc:creator>sbxkoenk</dc:creator>
      <dc:date>2021-05-08T16:58:28Z</dc:date>
    </item>
    <item>
      <title>Re: Analyze table in SAS Studio</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Analyze-table-in-SAS-Studio/m-p/740015#M29029</link>
      <description>&lt;P&gt;Thank you for your help&lt;/P&gt;</description>
      <pubDate>Sat, 08 May 2021 23:57:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Analyze-table-in-SAS-Studio/m-p/740015#M29029</guid>
      <dc:creator>Sarra-Matri</dc:creator>
      <dc:date>2021-05-08T23:57:21Z</dc:date>
    </item>
    <item>
      <title>Re: Analyze table in SAS Studio</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Analyze-table-in-SAS-Studio/m-p/740052#M29031</link>
      <description>Depends on what you mean by "analyze". &lt;BR /&gt;&lt;BR /&gt;Variables Names and types/formats of variables? Then use Contents. &lt;BR /&gt;&lt;BR /&gt;To explore categorical variables, use PROC FREQ. &lt;BR /&gt;To explore numerical variables, use PROC UNIVARIATE/MEANS/SUMMARY&lt;BR /&gt;&lt;BR /&gt;Print will display the results. &lt;BR /&gt;&lt;BR /&gt;Fastest way to answer the question - try each one.</description>
      <pubDate>Sun, 09 May 2021 16:11:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Analyze-table-in-SAS-Studio/m-p/740052#M29031</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2021-05-09T16:11:01Z</dc:date>
    </item>
  </channel>
</rss>

