<?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: SAS certified specialist Scenerio in SAS Certification</title>
    <link>https://communities.sas.com/t5/SAS-Certification/SAS-certified-specialist-Scenerio/m-p/644878#M830</link>
    <description>&lt;P&gt;Error pages are not in the book...they're created afterwards to include errors in the book, sort of a leftover from paper publishing from when you couldn't update materials as easily. It can still break references such as page numbers or PDF references so errors are still kept separately. Tutorials can also refer to Page 8 for example and if you update contents the pages can shift.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Usually you find the book page online and look for updates or errata pages. I don't know where it is off the top of my head, otherwise I'd send you the link.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/326849"&gt;@sprdsani&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;I couldn't see any error page in the book.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sun, 03 May 2020 20:54:00 GMT</pubDate>
    <dc:creator>Reeza</dc:creator>
    <dc:date>2020-05-03T20:54:00Z</dc:date>
    <item>
      <title>SAS certified specialist Scenerio</title>
      <link>https://communities.sas.com/t5/SAS-Certification/SAS-certified-specialist-Scenerio/m-p/644873#M827</link>
      <description>&lt;P&gt;&lt;STRONG&gt;Scenario 2 from SAS certified specialist textbook:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This scenario uses Cert. Stress data set. Write a SAS program to do the following:&lt;BR /&gt;-Create a new temporary SAS data set that uses Cert.Stress and store the results in Work.Stress1.&lt;BR /&gt;-Remove observations with RestHR values that are greater than or equal to 70.&lt;BR /&gt;-Create a new variable called TotalTime. The value of TotalTime is the value of TimeMin multiplied by 60, plus the value of TimeSec.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;Solution code:&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif" color="#FF6600"&gt;data work.stress1; /*#1*/&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="arial,helvetica,sans-serif" color="#FF6600"&gt;set cert.stress; /*#2*/&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="arial,helvetica,sans-serif" color="#FF6600"&gt;where RestHR &amp;lt;=70; /*#3*/&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="arial,helvetica,sans-serif" color="#FF6600"&gt;TotalTime=(timemin*60)+timesec; /*#4*/&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="arial,helvetica,sans-serif" color="#FF6600"&gt;if TotalTime&amp;lt;600 then delete; /*#5*/&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="arial,helvetica,sans-serif" color="#FF6600"&gt;run;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="arial,helvetica,sans-serif" color="#FF6600"&gt;proc print data=work.stress1; /*#6*&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="arial,helvetica,sans-serif" color="#FF6600"&gt;run;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt;&lt;FONT color="#000000"&gt;Solution Output:&lt;/FONT&gt;&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="sprdsani_0-1588536965568.png" style="width: 565px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/39013i029E23A0138404C8/image-dimensions/565x160?v=v2" width="565" height="160" role="button" title="sprdsani_0-1588536965568.png" alt="sprdsani_0-1588536965568.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;In the solution, RestHR has values equal to 70, whereas in the question it mentions to remove RestHR values equal to greater to 70.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Am I mistaken? Any feedback/suggestion is appreciated.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 03 May 2020 20:21:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Certification/SAS-certified-specialist-Scenerio/m-p/644873#M827</guid>
      <dc:creator>sprdsani</dc:creator>
      <dc:date>2020-05-03T20:21:42Z</dc:date>
    </item>
    <item>
      <title>Re: SAS certified specialist Scenerio</title>
      <link>https://communities.sas.com/t5/SAS-Certification/SAS-certified-specialist-Scenerio/m-p/644874#M828</link>
      <description>&lt;P&gt;Did you check if there's an errata/error page for the book and if that question is listed in there?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/326849"&gt;@sprdsani&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;&lt;STRONG&gt;Scenario 2 from SAS certified specialist textbook:&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This scenario uses Cert. Stress data set. Write a SAS program to do the following:&lt;BR /&gt;-Create a new temporary SAS data set that uses Cert.Stress and store the results in Work.Stress1.&lt;BR /&gt;-Remove observations with RestHR values that are greater than or equal to 70.&lt;BR /&gt;-Create a new variable called TotalTime. The value of TotalTime is the value of TimeMin multiplied by 60, plus the value of TimeSec.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;Solution code:&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif" color="#FF6600"&gt;data work.stress1; /*#1*/&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="arial,helvetica,sans-serif" color="#FF6600"&gt;set cert.stress; /*#2*/&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="arial,helvetica,sans-serif" color="#FF6600"&gt;where RestHR &amp;lt;=70; /*#3*/&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="arial,helvetica,sans-serif" color="#FF6600"&gt;TotalTime=(timemin*60)+timesec; /*#4*/&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="arial,helvetica,sans-serif" color="#FF6600"&gt;if TotalTime&amp;lt;600 then delete; /*#5*/&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="arial,helvetica,sans-serif" color="#FF6600"&gt;run;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="arial,helvetica,sans-serif" color="#FF6600"&gt;proc print data=work.stress1; /*#6*&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="arial,helvetica,sans-serif" color="#FF6600"&gt;run;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt;&lt;FONT color="#000000"&gt;Solution Output:&lt;/FONT&gt;&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="sprdsani_0-1588536965568.png" style="width: 565px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/39013i029E23A0138404C8/image-dimensions/565x160?v=v2" width="565" height="160" role="button" title="sprdsani_0-1588536965568.png" alt="sprdsani_0-1588536965568.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;In the solution, RestHR has values equal to 70, whereas in the question it mentions to remove RestHR values equal to greater to 70.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Am I mistaken? Any feedback/suggestion is appreciated.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 03 May 2020 20:35:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Certification/SAS-certified-specialist-Scenerio/m-p/644874#M828</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2020-05-03T20:35:56Z</dc:date>
    </item>
    <item>
      <title>Re: SAS certified specialist Scenerio</title>
      <link>https://communities.sas.com/t5/SAS-Certification/SAS-certified-specialist-Scenerio/m-p/644875#M829</link>
      <description>&lt;P&gt;I couldn't see any error page in the book.&lt;/P&gt;</description>
      <pubDate>Sun, 03 May 2020 20:38:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Certification/SAS-certified-specialist-Scenerio/m-p/644875#M829</guid>
      <dc:creator>sprdsani</dc:creator>
      <dc:date>2020-05-03T20:38:40Z</dc:date>
    </item>
    <item>
      <title>Re: SAS certified specialist Scenerio</title>
      <link>https://communities.sas.com/t5/SAS-Certification/SAS-certified-specialist-Scenerio/m-p/644878#M830</link>
      <description>&lt;P&gt;Error pages are not in the book...they're created afterwards to include errors in the book, sort of a leftover from paper publishing from when you couldn't update materials as easily. It can still break references such as page numbers or PDF references so errors are still kept separately. Tutorials can also refer to Page 8 for example and if you update contents the pages can shift.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Usually you find the book page online and look for updates or errata pages. I don't know where it is off the top of my head, otherwise I'd send you the link.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/326849"&gt;@sprdsani&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;I couldn't see any error page in the book.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 03 May 2020 20:54:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Certification/SAS-certified-specialist-Scenerio/m-p/644878#M830</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2020-05-03T20:54:00Z</dc:date>
    </item>
    <item>
      <title>Re: SAS certified specialist Scenerio</title>
      <link>https://communities.sas.com/t5/SAS-Certification/SAS-certified-specialist-Scenerio/m-p/644914#M831</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/326849"&gt;@sprdsani&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You're right, there is a mistake in the certification guide.&lt;/P&gt;
&lt;P&gt;You can check for updates here:&amp;nbsp;&lt;A href="https://support.sas.com/content/dam/SAS/support/en/books/errata-base-certified.pdf" target="_blank"&gt;https://support.sas.com/content/dam/SAS/support/en/books/errata-base-certified.pdf&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;U&gt;Extract&lt;/U&gt;:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture d’écran 2020-05-04 à 08.37.18.png" style="width: 999px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/39020iF0992E4CB704CD3E/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture d’écran 2020-05-04 à 08.37.18.png" alt="Capture d’écran 2020-05-04 à 08.37.18.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture d’écran 2020-05-04 à 08.38.53.png" style="width: 999px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/39021i87CAA385DC39C994/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture d’écran 2020-05-04 à 08.38.53.png" alt="Capture d’écran 2020-05-04 à 08.38.53.png" /&gt;&lt;/span&gt;I also experienced the following inconsistencies with the book:&lt;/P&gt;
&lt;P&gt;-&amp;gt; The dataset 'Aprbills' can be accessed with the libname 'Cert' and not 'Clinic'&lt;/P&gt;
&lt;P&gt;-&amp;gt;&amp;nbsp;The dataset 'Heart' for scenario 6 can be accessed with the libname 'Sashelp' (no Excel file supplied)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best,&lt;/P&gt;</description>
      <pubDate>Mon, 04 May 2020 06:40:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Certification/SAS-certified-specialist-Scenerio/m-p/644914#M831</guid>
      <dc:creator>ed_sas_member</dc:creator>
      <dc:date>2020-05-04T06:40:06Z</dc:date>
    </item>
    <item>
      <title>Re: SAS certified specialist Scenerio</title>
      <link>https://communities.sas.com/t5/SAS-Certification/SAS-certified-specialist-Scenerio/m-p/645026#M832</link>
      <description>Thank you for clarifying.</description>
      <pubDate>Mon, 04 May 2020 15:49:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Certification/SAS-certified-specialist-Scenerio/m-p/645026#M832</guid>
      <dc:creator>sprdsani</dc:creator>
      <dc:date>2020-05-04T15:49:28Z</dc:date>
    </item>
    <item>
      <title>Re: SAS certified specialist Scenerio</title>
      <link>https://communities.sas.com/t5/SAS-Certification/SAS-certified-specialist-Scenerio/m-p/645030#M833</link>
      <description>You're welcome &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/326849"&gt;@sprdsani&lt;/a&gt; !</description>
      <pubDate>Mon, 04 May 2020 16:03:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Certification/SAS-certified-specialist-Scenerio/m-p/645030#M833</guid>
      <dc:creator>ed_sas_member</dc:creator>
      <dc:date>2020-05-04T16:03:58Z</dc:date>
    </item>
  </channel>
</rss>

