<?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 wrong with this code in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/what-is-wrong-with-this-code/m-p/255945#M57100</link>
    <description>&lt;P&gt;data simu;&lt;BR /&gt;set simulate1;&lt;BR /&gt;a=beta*x1 + betax3*x3;&lt;BR /&gt;b=exp(a);&lt;BR /&gt;Time=SURVIVAL1**b;&lt;BR /&gt;run;&lt;/P&gt;</description>
    <pubDate>Thu, 10 Mar 2016 21:41:01 GMT</pubDate>
    <dc:creator>desireatem</dc:creator>
    <dc:date>2016-03-10T21:41:01Z</dc:date>
    <item>
      <title>what is wrong with this code</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/what-is-wrong-with-this-code/m-p/255945#M57100</link>
      <description>&lt;P&gt;data simu;&lt;BR /&gt;set simulate1;&lt;BR /&gt;a=beta*x1 + betax3*x3;&lt;BR /&gt;b=exp(a);&lt;BR /&gt;Time=SURVIVAL1**b;&lt;BR /&gt;run;&lt;/P&gt;</description>
      <pubDate>Thu, 10 Mar 2016 21:41:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/what-is-wrong-with-this-code/m-p/255945#M57100</guid>
      <dc:creator>desireatem</dc:creator>
      <dc:date>2016-03-10T21:41:01Z</dc:date>
    </item>
    <item>
      <title>Re: what is wrong with this code</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/what-is-wrong-with-this-code/m-p/255948#M57101</link>
      <description>&lt;P&gt;Hard to tell without a log, an input, an output, or a description of the problem...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is the variable "a" null?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If so, use a=sum(beta*x1,betax3*x3);&lt;/P&gt;</description>
      <pubDate>Thu, 10 Mar 2016 21:46:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/what-is-wrong-with-this-code/m-p/255948#M57101</guid>
      <dc:creator>DanZ</dc:creator>
      <dc:date>2016-03-10T21:46:29Z</dc:date>
    </item>
    <item>
      <title>Re: what is wrong with this code</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/what-is-wrong-with-this-code/m-p/255952#M57102</link>
      <description>This is the log file:&lt;BR /&gt;1524  b=exp(a);&lt;BR /&gt;      -&lt;BR /&gt;      22&lt;BR /&gt;ERROR 22-322: Syntax error, expecting one of the following: !, !!, &amp;amp;, *, **, +, -, /, ;, &amp;lt;,&lt;BR /&gt;              &amp;lt;=, &amp;lt;&amp;gt;, =, &amp;gt;, &amp;gt;&amp;lt;, &amp;gt;=, AND, EQ, GE, GT, IN, LE, LT, MAX, MIN, NE, NG, NL, NOTIN,&lt;BR /&gt;              OR, ^=, |, ||, ~=.&lt;BR /&gt;&lt;BR /&gt;WARNING: The data set WORK.SIMU may be incomplete.  When this step was stopped there were 0&lt;BR /&gt;         observations and 16 variables.&lt;BR /&gt;WARNING: Data set WORK.SIMU was not replaced because this step was stopped.&lt;BR /&gt;</description>
      <pubDate>Thu, 10 Mar 2016 21:54:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/what-is-wrong-with-this-code/m-p/255952#M57102</guid>
      <dc:creator>desireatem</dc:creator>
      <dc:date>2016-03-10T21:54:48Z</dc:date>
    </item>
    <item>
      <title>Re: what is wrong with this code</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/what-is-wrong-with-this-code/m-p/255953#M57103</link>
      <description>&lt;P&gt;This is the log file;&lt;/P&gt;
&lt;P&gt;1524 b=exp(a);&lt;BR /&gt; -&lt;BR /&gt; 22&lt;BR /&gt;ERROR 22-322: Syntax error, expecting one of the following: !, !!, &amp;amp;, *, **, +, -, /, ;, &amp;lt;,&lt;BR /&gt; &amp;lt;=, &amp;lt;&amp;gt;, =, &amp;gt;, &amp;gt;&amp;lt;, &amp;gt;=, AND, EQ, GE, GT, IN, LE, LT, MAX, MIN, NE, NG, NL, NOTIN,&lt;BR /&gt; OR, ^=, |, ||, ~=.&lt;/P&gt;
&lt;P&gt;WARNING: The data set WORK.SIMU may be incomplete. When this step was stopped there were 0&lt;BR /&gt; observations and 16 variables.&lt;BR /&gt;WARNING: Data set WORK.SIMU was not replaced because this step was stopped.&lt;/P&gt;</description>
      <pubDate>Thu, 10 Mar 2016 21:55:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/what-is-wrong-with-this-code/m-p/255953#M57103</guid>
      <dc:creator>desireatem</dc:creator>
      <dc:date>2016-03-10T21:55:17Z</dc:date>
    </item>
    <item>
      <title>Re: what is wrong with this code</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/what-is-wrong-with-this-code/m-p/255957#M57104</link>
      <description>&lt;P&gt;The line before that calculates "a" ... is it missing a semicolon?&lt;/P&gt;</description>
      <pubDate>Thu, 10 Mar 2016 22:03:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/what-is-wrong-with-this-code/m-p/255957#M57104</guid>
      <dc:creator>Astounding</dc:creator>
      <dc:date>2016-03-10T22:03:12Z</dc:date>
    </item>
    <item>
      <title>Re: what is wrong with this code</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/what-is-wrong-with-this-code/m-p/255958#M57105</link>
      <description>&lt;P&gt;Post the code and full log please&lt;/P&gt;</description>
      <pubDate>Thu, 10 Mar 2016 22:04:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/what-is-wrong-with-this-code/m-p/255958#M57105</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2016-03-10T22:04:13Z</dc:date>
    </item>
  </channel>
</rss>

