<?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 What is sashelp.class? in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/What-is-sashelp-class/m-p/740098#M231125</link>
    <description>&lt;P&gt;Hello all,&lt;/P&gt;
&lt;P&gt;What is sashelp.class? What do we use it for?&lt;/P&gt;
&lt;P&gt;Respectfully,&lt;/P&gt;
&lt;P&gt;Blue Blue&lt;/P&gt;</description>
    <pubDate>Mon, 10 May 2021 06:36:57 GMT</pubDate>
    <dc:creator>GN0001</dc:creator>
    <dc:date>2021-05-10T06:36:57Z</dc:date>
    <item>
      <title>What is sashelp.class?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/What-is-sashelp-class/m-p/740098#M231125</link>
      <description>&lt;P&gt;Hello all,&lt;/P&gt;
&lt;P&gt;What is sashelp.class? What do we use it for?&lt;/P&gt;
&lt;P&gt;Respectfully,&lt;/P&gt;
&lt;P&gt;Blue Blue&lt;/P&gt;</description>
      <pubDate>Mon, 10 May 2021 06:36:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/What-is-sashelp-class/m-p/740098#M231125</guid>
      <dc:creator>GN0001</dc:creator>
      <dc:date>2021-05-10T06:36:57Z</dc:date>
    </item>
    <item>
      <title>Re: What is sashelp.class?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/What-is-sashelp-class/m-p/740101#M231127</link>
      <description>&lt;P&gt;SASHELP.CLASS is one of several "demo" datasets included with every SAS installation, which therefore can be used to easily demonstrate code examples, as the dataset is available for every SAS user.&lt;/P&gt;</description>
      <pubDate>Mon, 10 May 2021 06:54:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/What-is-sashelp-class/m-p/740101#M231127</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2021-05-10T06:54:59Z</dc:date>
    </item>
    <item>
      <title>Re: What is sashelp.class?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/What-is-sashelp-class/m-p/740102#M231128</link>
      <description>&lt;P&gt;It's an example of one of SAS's sample datasets. It is there so you can experiment and learn with it. Often when you have a coding problem, using one of the sample datasets to demonstrate the problem is a good idea as all other SAS users can access the same datasets. Have a look at the SASHELP library to see some of the other datasets.&lt;/P&gt;</description>
      <pubDate>Mon, 10 May 2021 06:56:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/What-is-sashelp-class/m-p/740102#M231128</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2021-05-10T06:56:56Z</dc:date>
    </item>
    <item>
      <title>Re: What is sashelp.class?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/What-is-sashelp-class/m-p/740134#M231139</link>
      <description>&lt;P&gt;Take a look at it! Practice with it!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc print data=sashelp.class;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;It is the single most used data set in the history of SAS (and by the way, this was predicted by Nostradamus).&lt;/P&gt;</description>
      <pubDate>Mon, 10 May 2021 11:10:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/What-is-sashelp-class/m-p/740134#M231139</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2021-05-10T11:10:36Z</dc:date>
    </item>
    <item>
      <title>Re: What is sashelp.class?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/What-is-sashelp-class/m-p/740135#M231140</link>
      <description>The one thing I would add to all of the previous responses is I put together a book on sashelp data sets before I retired. There are many data sets that you can practice with.&lt;BR /&gt;&lt;A href="https://support.sas.com/documentation/tools/sashelpug.pdf" target="_blank"&gt;https://support.sas.com/documentation/tools/sashelpug.pdf&lt;/A&gt;</description>
      <pubDate>Mon, 10 May 2021 11:23:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/What-is-sashelp-class/m-p/740135#M231140</guid>
      <dc:creator>WarrenKuhfeld</dc:creator>
      <dc:date>2021-05-10T11:23:47Z</dc:date>
    </item>
    <item>
      <title>Re: What is sashelp.class?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/What-is-sashelp-class/m-p/740209#M231171</link>
      <description>&lt;P&gt;Generic response to sometext.othertext:&amp;nbsp; typically the most used expression in SAS with a dot in the middle is the LIBNAME.DATASET syntax element. So SASHELP.CLASS refers to a data set named CLASS in the Library named SASHELP. Specifically it is a small data set supplied by SAS which is typically used to demonstrate simple(ish) manipulations of data, modeling, reporting or graphing.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So if you see this in a DATA= on a procedure that is the name of the data set(or less commonly data view) in the specified library the procedure is to use. If it appears in a SET, MERGE, MODIFY, UPDATE statement in a DATA step, that is the name of a dataset in that libarary. If using Proc SQL and it appears in a FROM clause it is the source of data.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;There are a number of functions related to data set manipulation that use this as well.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Less common it might relate to a CATALOG which stores all kinds of SAS stuff but usage will be different.&lt;/P&gt;</description>
      <pubDate>Mon, 10 May 2021 15:27:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/What-is-sashelp-class/m-p/740209#M231171</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2021-05-10T15:27:02Z</dc:date>
    </item>
  </channel>
</rss>

