<?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: Age standardized rate in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/Age-standardized-rate/m-p/539129#M74065</link>
    <description>&lt;P&gt;Thanks Chris.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/117528"&gt;@knselina&lt;/a&gt;&amp;nbsp;if you take a look at the version of code I have linked below, it's commented pretty thoroughly, explaining what each line/option does. If you have questions beyond that, please post back the details.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://gist.github.com/statgeek/9606454" target="_blank"&gt;https://gist.github.com/statgeek/9606454&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In general, you're calculating an age-standardized rate using the Canadian 2011 census data (a guess).&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The number should be represented as per 100,000 population, not per capita.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you want to run either of these and test it, there are two free versions of SAS available. One runs in the cloud, SAS Academics on Demand and the other version, SAS UE, needs to be installed on your machine.&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 27 Feb 2019 20:46:30 GMT</pubDate>
    <dc:creator>Reeza</dc:creator>
    <dc:date>2019-02-27T20:46:30Z</dc:date>
    <item>
      <title>Age standardized rate</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Age-standardized-rate/m-p/539109#M74062</link>
      <description>&lt;P&gt;Hi , I have run following program. Can anybody of this group run examine this program and help met o understand its interpretation.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Selina&lt;/P&gt;&lt;P&gt;----------&lt;/P&gt;&lt;P&gt;data CAN_11;&lt;BR /&gt;input Age $1-5 Event PYear ;&lt;BR /&gt;datalines;&lt;BR /&gt;00-04 0 926252&lt;BR /&gt;05-09 0 882186&lt;BR /&gt;10-14 0 931354&lt;BR /&gt;15-19 0 1092368&lt;BR /&gt;20-24 20 1160880&lt;BR /&gt;25-29 70 1181076&lt;BR /&gt;30-34 135 1167005&lt;BR /&gt;35-39 185 1138694&lt;BR /&gt;40-44 185 1190523&lt;BR /&gt;45-49 185 1350322&lt;BR /&gt;50-54 135 1341093&lt;BR /&gt;55-59 130 1179520&lt;BR /&gt;60-64 110 1036627&lt;BR /&gt;65-69 80 787985&lt;BR /&gt;70-74 50 610955&lt;BR /&gt;75-79 45 503555&lt;BR /&gt;80-84 45 410520&lt;BR /&gt;85-89 20 277374&lt;BR /&gt;90+ 5 158532&lt;BR /&gt;;&lt;/P&gt;&lt;P&gt;data BD_Avg11;&lt;BR /&gt;input Age $1-5 Event PYear ;&lt;BR /&gt;datalines;&lt;BR /&gt;00-04 0 1914&lt;BR /&gt;05-09 0 1736&lt;BR /&gt;10-14 0 1586&lt;BR /&gt;15-19 0 1593&lt;BR /&gt;20-24 0 1506&lt;BR /&gt;25-29 0.1 1465&lt;BR /&gt;30-34 0.2 1325&lt;BR /&gt;35-39 0.5 1070&lt;BR /&gt;40-44 0.3 1008&lt;BR /&gt;45-49 0.2 876&lt;BR /&gt;50-54 0.2 725&lt;BR /&gt;55-59 0.1 554&lt;BR /&gt;60-64 0.1 396&lt;BR /&gt;65-69 0 245&lt;BR /&gt;70-74 0 130&lt;BR /&gt;75-79 0 77&lt;BR /&gt;80-84 0 43&lt;BR /&gt;85-89 0 13&lt;BR /&gt;90+ 0 11&lt;BR /&gt;;&lt;BR /&gt;ods graphics on;&lt;BR /&gt;proc stdrate data=BD_Avg11 refdata=CAN_11&lt;BR /&gt;method=indirect&lt;BR /&gt;stat=rate(mult=100000)&lt;BR /&gt;plots=all&lt;BR /&gt;;&lt;BR /&gt;population event=Event total=PYear;&lt;BR /&gt;reference event=Event total=PYear;&lt;BR /&gt;strata Age / stats smr;&lt;BR /&gt;run;&lt;BR /&gt;ods graphics off;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 27 Feb 2019 20:12:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Age-standardized-rate/m-p/539109#M74062</guid>
      <dc:creator>knselina</dc:creator>
      <dc:date>2019-02-27T20:12:28Z</dc:date>
    </item>
    <item>
      <title>Re: Age standardized rate</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Age-standardized-rate/m-p/539114#M74063</link>
      <description>&lt;P&gt;I'll bet that&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13879"&gt;@Reeza&lt;/a&gt;&amp;nbsp;can explain it...because it looks very similar to something else that she has shared in the past....very similar.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It might help if you explain the context in which you're running this.&lt;/P&gt;</description>
      <pubDate>Wed, 27 Feb 2019 20:25:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Age-standardized-rate/m-p/539114#M74063</guid>
      <dc:creator>ChrisHemedinger</dc:creator>
      <dc:date>2019-02-27T20:25:46Z</dc:date>
    </item>
    <item>
      <title>Re: Age standardized rate</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Age-standardized-rate/m-p/539129#M74065</link>
      <description>&lt;P&gt;Thanks Chris.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/117528"&gt;@knselina&lt;/a&gt;&amp;nbsp;if you take a look at the version of code I have linked below, it's commented pretty thoroughly, explaining what each line/option does. If you have questions beyond that, please post back the details.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://gist.github.com/statgeek/9606454" target="_blank"&gt;https://gist.github.com/statgeek/9606454&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In general, you're calculating an age-standardized rate using the Canadian 2011 census data (a guess).&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The number should be represented as per 100,000 population, not per capita.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you want to run either of these and test it, there are two free versions of SAS available. One runs in the cloud, SAS Academics on Demand and the other version, SAS UE, needs to be installed on your machine.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 27 Feb 2019 20:46:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Age-standardized-rate/m-p/539129#M74065</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-02-27T20:46:30Z</dc:date>
    </item>
  </channel>
</rss>

