<?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: Accuracy profile in All Things Community</title>
    <link>https://communities.sas.com/t5/All-Things-Community/Accuracy-profile/m-p/557067#M3877</link>
    <description>&lt;P&gt;Kurt it really worked. you are an expert thanks so much....no more errors&lt;/P&gt;</description>
    <pubDate>Wed, 08 May 2019 11:34:22 GMT</pubDate>
    <dc:creator>fatso33</dc:creator>
    <dc:date>2019-05-08T11:34:22Z</dc:date>
    <item>
      <title>Accuracy profile</title>
      <link>https://communities.sas.com/t5/All-Things-Community/Accuracy-profile/m-p/557046#M3874</link>
      <description>&lt;P&gt;Dear all&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am trying to run the following code and I am getting a strange error message that I cannot debug. please help me solve it....&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ods output parameterestimates=parameterestimates5;&lt;BR /&gt;proc nlmixed data=ELISAcalibration4 noad qpoints=15;&lt;BR /&gt;num= bottom-top;&lt;BR /&gt;den= 1 + exp(slope*(logconc - c50));&lt;BR /&gt;expect= top + num/den;&lt;BR /&gt;model DO~normal(expect,var);&lt;BR /&gt;predict top + num/den out=fitted_values;&lt;BR /&gt;ods output ParameterEstimates=parm_est_repl;&lt;BR /&gt;ods output CovMatParmEst=cov_parm;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;* Data set containing parameter estimates;&lt;BR /&gt;data b;&lt;BR /&gt;set parm_est_repl;&lt;BR /&gt;where parameter in (’top’,’bottom’,’c50’,’slope’);&lt;BR /&gt;keep estimate;&lt;BR /&gt;run;&lt;BR /&gt;* Data set containing the covariance matrix of the parameter estimates;&lt;BR /&gt;data covb;&lt;BR /&gt;set cov_parm;&lt;BR /&gt;where parameter in (’top’,’bottom’,’c50’,’slope’);&lt;BR /&gt;keep top bottom c50 slope;&lt;BR /&gt;run;&lt;BR /&gt;proc sql noprint;&lt;BR /&gt;select distinct estimate into: sigma_sq from parm_est_repl where parameter=’var’;&lt;BR /&gt;select min(logconc) into: minconc from ELISAcalibration4 where logconc&amp;gt;0;&lt;BR /&gt;select max(logconc) into: maxconc from ELISAcalibration4;&lt;BR /&gt;run;&lt;BR /&gt;quit;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;heres the error:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;605 * Data set containing parameter estimates;&lt;BR /&gt;606 data b;&lt;BR /&gt;607 set parm_est_repl;&lt;BR /&gt;608 where parameter in (’top’,’bottom’,’c50’,’slope’);&lt;BR /&gt;-&lt;BR /&gt;22&lt;BR /&gt;76&lt;BR /&gt;ERROR: Syntax error while parsing WHERE clause.&lt;BR /&gt;ERROR 22-322: Syntax error, expecting one of the following: a quoted string, a numeric constant,&lt;BR /&gt;a datetime constant, a missing value, -.&lt;/P&gt;&lt;P&gt;ERROR 76-322: Syntax error, statement will be ignored.&lt;/P&gt;&lt;P&gt;609 keep estimate;&lt;BR /&gt;610 run;&lt;/P&gt;&lt;P&gt;NOTE: The SAS System stopped processing this step because of errors.&lt;BR /&gt;WARNING: The data set WORK.B may be incomplete. When this step was stopped there were 0 observations&lt;BR /&gt;and 1 variables.&lt;BR /&gt;WARNING: Data set WORK.B was not replaced because this step was stopped.&lt;BR /&gt;NOTE: DATA statement used (Total process time):&lt;BR /&gt;real time 0.03 seconds&lt;BR /&gt;cpu time 0.03 seconds&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;611 * Data set containing the covariance matrix of the parameter estimates;&lt;BR /&gt;612 data covb;&lt;BR /&gt;613 set cov_parm;&lt;BR /&gt;614 where parameter in (’top’,’bottom’,’c50’,’slope’);&lt;BR /&gt;-&lt;BR /&gt;22&lt;BR /&gt;76&lt;BR /&gt;ERROR: Syntax error while parsing WHERE clause.&lt;BR /&gt;ERROR 22-322: Syntax error, expecting one of the following: a quoted string, a numeric constant,&lt;BR /&gt;a datetime constant, a missing value, -.&lt;/P&gt;&lt;P&gt;ERROR 76-322: Syntax error, statement will be ignored.&lt;/P&gt;&lt;P&gt;615 keep top bottom c50 slope;&lt;BR /&gt;616 run;&lt;/P&gt;&lt;P&gt;NOTE: The SAS System stopped processing this step because of errors.&lt;BR /&gt;WARNING: The data set WORK.COVB may be incomplete. When this step was stopped there were 0&lt;BR /&gt;observations and 4 variables.&lt;BR /&gt;WARNING: Data set WORK.COVB was not replaced because this step was stopped.&lt;BR /&gt;NOTE: DATA statement used (Total process time):&lt;BR /&gt;real time 0.03 seconds&lt;BR /&gt;cpu time 0.03 seconds&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;617 proc sql noprint;&lt;BR /&gt;618 select distinct estimate into: sigma_sq from parm_est_repl where parameter=’var’;&lt;BR /&gt;-&lt;BR /&gt;22&lt;BR /&gt;200&lt;BR /&gt;ERROR 22-322: Syntax error, expecting one of the following: a name, a quoted string,&lt;BR /&gt;a numeric constant, a datetime constant, a missing value, (, *, +, -, ALL, ANY, BTRIM,&lt;BR /&gt;CALCULATED, CASE, INPUT, PUT, SELECT, SOME, SUBSTRING, TRANSLATE, USER.&lt;/P&gt;&lt;P&gt;ERROR 200-322: The symbol is not recognized and will be ignored.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 08 May 2019 09:19:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/All-Things-Community/Accuracy-profile/m-p/557046#M3874</guid>
      <dc:creator>fatso33</dc:creator>
      <dc:date>2019-05-08T09:19:15Z</dc:date>
    </item>
    <item>
      <title>Re: Accuracy profile</title>
      <link>https://communities.sas.com/t5/All-Things-Community/Accuracy-profile/m-p/557062#M3875</link>
      <description>&lt;P&gt;You have invalid (slanted) single quotes in your code, probably from editing outside of SAS with a word processor.&lt;/P&gt;
&lt;P&gt;Single quotes must be this character: '&lt;/P&gt;</description>
      <pubDate>Wed, 08 May 2019 11:18:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/All-Things-Community/Accuracy-profile/m-p/557062#M3875</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2019-05-08T11:18:13Z</dc:date>
    </item>
    <item>
      <title>Re: Accuracy profile</title>
      <link>https://communities.sas.com/t5/All-Things-Community/Accuracy-profile/m-p/557064#M3876</link>
      <description>&lt;P&gt;thank you very much kurt&lt;/P&gt;</description>
      <pubDate>Wed, 08 May 2019 11:23:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/All-Things-Community/Accuracy-profile/m-p/557064#M3876</guid>
      <dc:creator>fatso33</dc:creator>
      <dc:date>2019-05-08T11:23:42Z</dc:date>
    </item>
    <item>
      <title>Re: Accuracy profile</title>
      <link>https://communities.sas.com/t5/All-Things-Community/Accuracy-profile/m-p/557067#M3877</link>
      <description>&lt;P&gt;Kurt it really worked. you are an expert thanks so much....no more errors&lt;/P&gt;</description>
      <pubDate>Wed, 08 May 2019 11:34:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/All-Things-Community/Accuracy-profile/m-p/557067#M3877</guid>
      <dc:creator>fatso33</dc:creator>
      <dc:date>2019-05-08T11:34:22Z</dc:date>
    </item>
  </channel>
</rss>

