<?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: PROC NLIN-PUT statment not working in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/PROC-NLIN-PUT-statment-not-working/m-p/887701#M350705</link>
    <description>Thanks you so much &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/32733"&gt;@FreelanceReinh&lt;/a&gt;. I am using SAS EG and I cannot see the output in pdf and HTML outputs. I do see it in the listing window which is don't use. The file log worked. Thank you!!!</description>
    <pubDate>Thu, 03 Aug 2023 14:12:20 GMT</pubDate>
    <dc:creator>PamG</dc:creator>
    <dc:date>2023-08-03T14:12:20Z</dc:date>
    <item>
      <title>PROC NLIN-PUT statment not working</title>
      <link>https://communities.sas.com/t5/SAS-Programming/PROC-NLIN-PUT-statment-not-working/m-p/887695#M350702</link>
      <description>&lt;P&gt;I am using a PROC NLIN code that is supposed to add results from the PUT statement given below.&amp;nbsp; I am not seeing the results of the PUT in either the output or the log window.&amp;nbsp; I am running the same code on my data and I need to know the point of inflection.&amp;nbsp; A sample code is given below which comes from the SAS website.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=""&gt;data a;
input y x @@;
datalines;
.46 1 .47 2 .57 3 .61 4 .62 5 .68 6 .69 7
.78 8 .70 9 .74 10 .77 11 .78 12 .74 13 .80 13
.80 15 .78 16
;

ODS GRAPHICS ON;
title 'Quadratic Model with Plateau';
proc nlin data=a;
parms alpha=.45 beta=.05 gamma=-.0025;

x0 = -.5*beta / gamma;

if (x &amp;lt; x0) then
mean = alpha + beta*x + gamma*x*x;
else mean = alpha + beta*x0 + gamma*x0*x0;
model y = mean;

if _obs_=1 and _iter_ =. then do;
plateau =alpha + beta*x0 + gamma*x0*x0;
put / x0= plateau= ;  **gives point of inflection;
end;
output out=b predicted=yp;
run;title;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;A href="https://support.sas.com/documentation/cdl/en/statug/68162/HTML/default/viewer.htm#statug_nlin_examples01.htm" target="_blank"&gt;https://support.sas.com/documentation/cdl/en/statug/68162/HTML/default/viewer.htm#statug_nlin_examples01.htm&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 03 Aug 2023 13:54:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/PROC-NLIN-PUT-statment-not-working/m-p/887695#M350702</guid>
      <dc:creator>PamG</dc:creator>
      <dc:date>2023-08-03T13:54:40Z</dc:date>
    </item>
    <item>
      <title>Re: PROC NLIN-PUT statment not working</title>
      <link>https://communities.sas.com/t5/SAS-Programming/PROC-NLIN-PUT-statment-not-working/m-p/887699#M350703</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/442038"&gt;@PamG&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;On my computer, using &lt;EM&gt;listing&lt;/EM&gt; output, the PUT statement in the PROC NLIN step writes to the output window. If I insert&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;file log;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;before the PUT statement, it writes to the log window.&lt;/P&gt;</description>
      <pubDate>Thu, 03 Aug 2023 14:03:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/PROC-NLIN-PUT-statment-not-working/m-p/887699#M350703</guid>
      <dc:creator>FreelanceReinh</dc:creator>
      <dc:date>2023-08-03T14:03:36Z</dc:date>
    </item>
    <item>
      <title>Re: PROC NLIN-PUT statment not working</title>
      <link>https://communities.sas.com/t5/SAS-Programming/PROC-NLIN-PUT-statment-not-working/m-p/887700#M350704</link>
      <description>&lt;P&gt;When I run your code I do se the results of the PUT statement at the end of the output:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;                                          The NLIN Procedure

                                   Approximate Correlation Matrix
                                        alpha            beta           gamma

                        alpha       1.0000000      -0.9020250       0.8124327
                        beta       -0.9020250       1.0000000      -0.9787952
                        gamma       0.8124327      -0.9787952       1.0000000

x0=12.747669162 plateau=0.7774974276
&lt;/PRE&gt;</description>
      <pubDate>Thu, 03 Aug 2023 14:06:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/PROC-NLIN-PUT-statment-not-working/m-p/887700#M350704</guid>
      <dc:creator>Quentin</dc:creator>
      <dc:date>2023-08-03T14:06:41Z</dc:date>
    </item>
    <item>
      <title>Re: PROC NLIN-PUT statment not working</title>
      <link>https://communities.sas.com/t5/SAS-Programming/PROC-NLIN-PUT-statment-not-working/m-p/887701#M350705</link>
      <description>Thanks you so much &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/32733"&gt;@FreelanceReinh&lt;/a&gt;. I am using SAS EG and I cannot see the output in pdf and HTML outputs. I do see it in the listing window which is don't use. The file log worked. Thank you!!!</description>
      <pubDate>Thu, 03 Aug 2023 14:12:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/PROC-NLIN-PUT-statment-not-working/m-p/887701#M350705</guid>
      <dc:creator>PamG</dc:creator>
      <dc:date>2023-08-03T14:12:20Z</dc:date>
    </item>
  </channel>
</rss>

