<?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: How to write a code in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/How-to-write-a-code/m-p/486701#M126682</link>
    <description>&lt;P&gt;Thanks,&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/11562"&gt;@Kurt_Bremser&lt;/a&gt;.&lt;/P&gt;&lt;P&gt;I think this credit goes to you, as&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/222356"&gt;@urap&lt;/a&gt;&amp;nbsp;considered as accepted solution.&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/222356"&gt;@urap&lt;/a&gt;&amp;nbsp;,&amp;nbsp;is it possible for&amp;nbsp; you to take that off, please?&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 14 Aug 2018 14:45:08 GMT</pubDate>
    <dc:creator>shahparth260</dc:creator>
    <dc:date>2018-08-14T14:45:08Z</dc:date>
    <item>
      <title>How to write a code</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-write-a-code/m-p/486549#M126615</link>
      <description>By how much does the risk increase if the age increases by 10 years</description>
      <pubDate>Tue, 14 Aug 2018 06:38:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-write-a-code/m-p/486549#M126615</guid>
      <dc:creator>urap</dc:creator>
      <dc:date>2018-08-14T06:38:12Z</dc:date>
    </item>
    <item>
      <title>Re: How to write a code</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-write-a-code/m-p/486554#M126619</link>
      <description>&lt;P&gt;Please can you provide base information. Such as if 1 year increase then risk increse XX amount&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 14 Aug 2018 06:59:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-write-a-code/m-p/486554#M126619</guid>
      <dc:creator>shahparth260</dc:creator>
      <dc:date>2018-08-14T06:59:23Z</dc:date>
    </item>
    <item>
      <title>Re: How to write a code</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-write-a-code/m-p/486558#M126622</link>
      <description>&lt;P&gt;Please follow the instructions for posting questions. Supply example data in a usable form (see my footnotes), the expected result, and the code you already tried.&lt;/P&gt;</description>
      <pubDate>Tue, 14 Aug 2018 07:16:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-write-a-code/m-p/486558#M126622</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2018-08-14T07:16:52Z</dc:date>
    </item>
    <item>
      <title>Re: How to write a code</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-write-a-code/m-p/486561#M126624</link>
      <description>&lt;P&gt;I see that you have been advised about posting meaningful questions TWICE in your previous posts. Are you allergic to learning?&lt;/P&gt;</description>
      <pubDate>Tue, 14 Aug 2018 07:19:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-write-a-code/m-p/486561#M126624</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2018-08-14T07:19:56Z</dc:date>
    </item>
    <item>
      <title>Re: How to write a code</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-write-a-code/m-p/486585#M126632</link>
      <description>Hi&lt;BR /&gt;I'm completly new to SAS .kindly bear with me !&lt;BR /&gt;so here is my question..how can i predict a value of a particular variable based on another variable value.&lt;BR /&gt;for instace : i have a dataset with variables risk, age and it has values as follows:&lt;BR /&gt;12 57&lt;BR /&gt;24 67&lt;BR /&gt;13 58&lt;BR /&gt;56 86&lt;BR /&gt;28 59&lt;BR /&gt;so on..&lt;BR /&gt;&lt;BR /&gt;So now i need to predict the value of the risk if age increases by 10 years or i can say&lt;BR /&gt;'By how much does the risk increase if age increases by ten years?'&lt;BR /&gt;&lt;BR /&gt;any help is highly appreciated.Thank you !!&lt;BR /&gt;</description>
      <pubDate>Tue, 14 Aug 2018 09:09:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-write-a-code/m-p/486585#M126632</guid>
      <dc:creator>urap</dc:creator>
      <dc:date>2018-08-14T09:09:56Z</dc:date>
    </item>
    <item>
      <title>Re: How to write a code</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-write-a-code/m-p/486586#M126633</link>
      <description>&lt;P&gt;What you probably need is the average risk per age:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sql;
create table avg_risk as
select age, avg(risk)
from risks
group by age;
quit;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Now it is easy to compare relative risks by age.&lt;/P&gt;</description>
      <pubDate>Tue, 14 Aug 2018 09:20:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-write-a-code/m-p/486586#M126633</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2018-08-14T09:20:19Z</dc:date>
    </item>
    <item>
      <title>Re: How to write a code</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-write-a-code/m-p/486596#M126637</link>
      <description>But stil I’m confused about this&lt;BR /&gt;Here’s my question ... how much does the RISK increase if the AGE increases by 10 years?&lt;BR /&gt;Ex-&lt;BR /&gt;Risk Age&lt;BR /&gt;12 57&lt;BR /&gt;&lt;BR /&gt;Data smoking;&lt;BR /&gt;Set sasclass.smoking;&lt;BR /&gt;Risk_R=67*12/57;&lt;BR /&gt;Run;&lt;BR /&gt;Proc print data=smoking;&lt;BR /&gt;Run;&lt;BR /&gt;&lt;BR /&gt;The value of RISK is 14.1 for the age 67(57+10)</description>
      <pubDate>Tue, 14 Aug 2018 09:48:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-write-a-code/m-p/486596#M126637</guid>
      <dc:creator>urap</dc:creator>
      <dc:date>2018-08-14T09:48:32Z</dc:date>
    </item>
    <item>
      <title>Re: How to write a code</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-write-a-code/m-p/486602#M126640</link>
      <description>&lt;P&gt;To answer this question, you need a statistically sufficient sample for ages 57 and 67.&lt;/P&gt;</description>
      <pubDate>Tue, 14 Aug 2018 10:21:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-write-a-code/m-p/486602#M126640</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2018-08-14T10:21:17Z</dc:date>
    </item>
    <item>
      <title>Re: How to write a code</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-write-a-code/m-p/486701#M126682</link>
      <description>&lt;P&gt;Thanks,&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/11562"&gt;@Kurt_Bremser&lt;/a&gt;.&lt;/P&gt;&lt;P&gt;I think this credit goes to you, as&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/222356"&gt;@urap&lt;/a&gt;&amp;nbsp;considered as accepted solution.&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/222356"&gt;@urap&lt;/a&gt;&amp;nbsp;,&amp;nbsp;is it possible for&amp;nbsp; you to take that off, please?&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 14 Aug 2018 14:45:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-write-a-code/m-p/486701#M126682</guid>
      <dc:creator>shahparth260</dc:creator>
      <dc:date>2018-08-14T14:45:08Z</dc:date>
    </item>
  </channel>
</rss>

