<?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 How to get standard error and confidence limit of parameter in proc nlin in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/How-to-get-standard-error-and-confidence-limit-of-parameter-in/m-p/885822#M39296</link>
    <description>&lt;P&gt;Hello to Sas community,&lt;BR /&gt;&lt;BR /&gt;I would like help to get into table - like outest table - the confidence interval and standard error for the variables from proc nlin. How do you do?&lt;BR /&gt;&lt;BR /&gt;I have statement like this so I am get parameter for every by variable patient. I will get the estimate for a,...,f out in parameters_out but the confidence limits I do not get. I see PROC REG has some TABLEOUT - is similar in PROC NLIN? I cannot find.&lt;BR /&gt;&lt;BR /&gt;Help would be really good thank you!&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc nlin data = datafull_2016_2022 plots = fit maxiter = 200 save outest = parameters_final;
by prtcpt;
parameters a=-10 / pdata=parameters_init;
model y = a*exp(x/b) + c*exp(x/d) + e*x + f;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Fri, 21 Jul 2023 13:49:14 GMT</pubDate>
    <dc:creator>linlin87</dc:creator>
    <dc:date>2023-07-21T13:49:14Z</dc:date>
    <item>
      <title>How to get standard error and confidence limit of parameter in proc nlin</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-to-get-standard-error-and-confidence-limit-of-parameter-in/m-p/885822#M39296</link>
      <description>&lt;P&gt;Hello to Sas community,&lt;BR /&gt;&lt;BR /&gt;I would like help to get into table - like outest table - the confidence interval and standard error for the variables from proc nlin. How do you do?&lt;BR /&gt;&lt;BR /&gt;I have statement like this so I am get parameter for every by variable patient. I will get the estimate for a,...,f out in parameters_out but the confidence limits I do not get. I see PROC REG has some TABLEOUT - is similar in PROC NLIN? I cannot find.&lt;BR /&gt;&lt;BR /&gt;Help would be really good thank you!&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc nlin data = datafull_2016_2022 plots = fit maxiter = 200 save outest = parameters_final;
by prtcpt;
parameters a=-10 / pdata=parameters_init;
model y = a*exp(x/b) + c*exp(x/d) + e*x + f;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 21 Jul 2023 13:49:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-to-get-standard-error-and-confidence-limit-of-parameter-in/m-p/885822#M39296</guid>
      <dc:creator>linlin87</dc:creator>
      <dc:date>2023-07-21T13:49:14Z</dc:date>
    </item>
    <item>
      <title>Re: How to get standard error and confidence limit of parameter in proc nlin</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-to-get-standard-error-and-confidence-limit-of-parameter-in/m-p/885826#M39297</link>
      <description>&lt;P&gt;I think you want the OUTPUT statement to get the confidence limits. The OUTEST is different than overall parameters.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;Output out=yourdatasetname &amp;lt;options&amp;gt;=&amp;lt;variablenames&amp;gt;;&lt;/PRE&gt;
&lt;P&gt;I don't suggest a specific syntax because you do not indicate whether you want confidence limits of predicted values L95 and U95, LCL and UCL or of the mean L95M / U95M and&amp;nbsp; LCLM/ UCLM.&lt;/P&gt;
&lt;P&gt;Similarly there are multiple standard error options: STDI (individual predicted value) STDP (mean predicted value) STDR (standard error of residuals)&lt;/P&gt;
&lt;P&gt;The out= dataset name would have to be different than the OUTEST name. If you want both sets of values in one dataset then you need to combine the two sets.&lt;/P&gt;</description>
      <pubDate>Fri, 21 Jul 2023 14:31:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-to-get-standard-error-and-confidence-limit-of-parameter-in/m-p/885826#M39297</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2023-07-21T14:31:11Z</dc:date>
    </item>
    <item>
      <title>Re: How to get standard error and confidence limit of parameter in proc nlin</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-to-get-standard-error-and-confidence-limit-of-parameter-in/m-p/885894#M39298</link>
      <description>&lt;P&gt;Thank you &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13884"&gt;@ballardw&lt;/a&gt;&amp;nbsp;for helping. I will try this but I think your suggesting get confidence and prediction interval for data? I want confidence intervals of the parameter values.&lt;/P&gt;</description>
      <pubDate>Fri, 21 Jul 2023 19:34:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-to-get-standard-error-and-confidence-limit-of-parameter-in/m-p/885894#M39298</guid>
      <dc:creator>linlin87</dc:creator>
      <dc:date>2023-07-21T19:34:05Z</dc:date>
    </item>
    <item>
      <title>Re: How to get standard error and confidence limit of parameter in proc nlin</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-to-get-standard-error-and-confidence-limit-of-parameter-in/m-p/885931#M39299</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/426087"&gt;@linlin87&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Use the &lt;A href="https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/statug/statug_nlin_details41.htm" target="_blank" rel="noopener"&gt;&lt;EM&gt;ODS&lt;/EM&gt; OUTPUT statement&lt;/A&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods output ParameterEstimates=want;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;before or in the PROC NLIN step. For each BY group and parameter, dataset WANT will contain the estimate (variable &lt;FONT face="courier new,courier"&gt;Estimate&lt;/FONT&gt;) and the confidence limits (&lt;FONT face="courier new,courier"&gt;LowerCL&lt;/FONT&gt;, &lt;FONT face="courier new,courier"&gt;UpperCL&lt;/FONT&gt;).&lt;/P&gt;</description>
      <pubDate>Sat, 22 Jul 2023 11:19:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-to-get-standard-error-and-confidence-limit-of-parameter-in/m-p/885931#M39299</guid>
      <dc:creator>FreelanceReinh</dc:creator>
      <dc:date>2023-07-22T11:19:58Z</dc:date>
    </item>
    <item>
      <title>Re: How to get standard error and confidence limit of parameter in proc nlin</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-to-get-standard-error-and-confidence-limit-of-parameter-in/m-p/886041#M39300</link>
      <description>&lt;P&gt;Thank you&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13884"&gt;@ballardw&lt;/a&gt;&amp;nbsp; and&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/32733"&gt;@FreelanceReinh&lt;/a&gt;&amp;nbsp; for your helping me!&lt;/P&gt;</description>
      <pubDate>Mon, 24 Jul 2023 07:46:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-to-get-standard-error-and-confidence-limit-of-parameter-in/m-p/886041#M39300</guid>
      <dc:creator>linlin87</dc:creator>
      <dc:date>2023-07-24T07:46:56Z</dc:date>
    </item>
  </channel>
</rss>

