<?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: Statistics in SAS Training Courses</title>
    <link>https://communities.sas.com/t5/SAS-Training-Courses/Statistics/m-p/629965#M52</link>
    <description>FYI - I've moved your post to the SAS Training course forum. Note that not many users on here will have access so you may not get much response. You may want to consider contacting SAS Learning directly if you have a specific question.</description>
    <pubDate>Thu, 05 Mar 2020 22:05:52 GMT</pubDate>
    <dc:creator>Reeza</dc:creator>
    <dc:date>2020-03-05T22:05:52Z</dc:date>
    <item>
      <title>Statistics</title>
      <link>https://communities.sas.com/t5/SAS-Training-Courses/Statistics/m-p/629962#M51</link>
      <description>&lt;P&gt;&lt;SPAN&gt;How did they calculate the PctGrowthAveYr in the advanced program 3&amp;nbsp; lesson 1 data ?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 05 Mar 2020 21:50:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Training-Courses/Statistics/m-p/629962#M51</guid>
      <dc:creator>CathyVI</dc:creator>
      <dc:date>2020-03-05T21:50:31Z</dc:date>
    </item>
    <item>
      <title>Re: Statistics</title>
      <link>https://communities.sas.com/t5/SAS-Training-Courses/Statistics/m-p/629965#M52</link>
      <description>FYI - I've moved your post to the SAS Training course forum. Note that not many users on here will have access so you may not get much response. You may want to consider contacting SAS Learning directly if you have a specific question.</description>
      <pubDate>Thu, 05 Mar 2020 22:05:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Training-Courses/Statistics/m-p/629965#M52</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2020-03-05T22:05:52Z</dc:date>
    </item>
    <item>
      <title>Re: Statistics</title>
      <link>https://communities.sas.com/t5/SAS-Training-Courses/Statistics/m-p/629998#M53</link>
      <description>&lt;P&gt;Hi:&lt;/P&gt;
&lt;P&gt;&amp;nbsp; We got this same question in our tracking system and will need to ask the course developers, when they are available, if they remember the site where they got the data or how the variables were created/derived. Some of the data for our classes comes from public web sites but then needs to be subset or transformed for particular purposes in a class, such as needing a rate to use for multiplication in a DO loop.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; Using PROC CONTENTS on the dataset in Lesson 1, I see that the name of variable is as shown below:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="var_list_pg3.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/36626iBB5B8E09B96224DA/image-size/large?v=v2&amp;amp;px=999" role="button" title="var_list_pg3.png" alt="var_list_pg3.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; Since we already have a track for this question, we'll respond when we have the information. Programming 3 is not a Statistics class. It teaches advanced techniques, such as DO LOOPS, ARRAY processing, HASH tables, etc. This particular variable is used in the DO loop example in a subsequent lesson.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Cynthia&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 06 Mar 2020 02:53:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Training-Courses/Statistics/m-p/629998#M53</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2020-03-06T02:53:26Z</dc:date>
    </item>
    <item>
      <title>Re: Statistics</title>
      <link>https://communities.sas.com/t5/SAS-Training-Courses/Statistics/m-p/630265#M54</link>
      <description>&lt;P&gt;Hi:&lt;BR /&gt;I have heard back from the course developers about the PctGrowthAvgYr variable in the pg3.population_top25countries data table used in the course. To make that table for use in the Programming 3 class, we started with WorldBank data from here: &lt;A href="https://datacatalog.worldbank.org/public-licenses#cc-by" target="_blank" rel="noopener"&gt;https://datacatalog.worldbank.org/public-licenses#cc-by&lt;/A&gt; ; for example: &lt;A href="http://wdi.worldbank.org/table/2.1" target="_blank" rel="noopener"&gt;http://wdi.worldbank.org/table/2.1&lt;/A&gt; . &lt;BR /&gt;&lt;BR /&gt;However, that variable value cannot be recalculated based on the data that we have in the pg3.population_top25countries data set for the class. The value was based on the incremental growth rate for every year in the range - then averaged. We started with the 2000-2017 numbers, and calculated that value based on having values for all those years. But for the class, we only kept the first year (2000) and the last year (2017). This means that there’s not enough data in the class table to recreate the PctGrowthAvgYr variable. If you want to approximate the value, you could use this formula &lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&lt;STRONG&gt;growth=(((pop2017-pop2000)/pop2000)*100)/18;&lt;/STRONG&gt; &lt;/FONT&gt;&lt;BR /&gt;&lt;BR /&gt;But keep in mind that it will only be an approximation, not an exact number. For class purposes, we did not need all the original data for all the years. As I explained, we use that variable to be able to calculate values for a new variable in a DO loop. So the focus needs to be on DO loop processing, not on the specifics of how that variable was calculated. &lt;BR /&gt;&lt;BR /&gt;Hope this helps,&lt;BR /&gt;Cynthia&lt;/P&gt;</description>
      <pubDate>Fri, 06 Mar 2020 22:48:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Training-Courses/Statistics/m-p/630265#M54</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2020-03-06T22:48:34Z</dc:date>
    </item>
  </channel>
</rss>

