<?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 nlimixed does not change provided starting parameters in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/proc-nlimixed-does-not-change-provided-starting-parameters/m-p/455114#M23769</link>
    <description>&lt;BLOCKQUOTE&gt;
&lt;P&gt;Unfortunately, the algorithm does not change the provided parameters when I inspect dataset Parameters.&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm not really sure what you mean by this. I'm not sure what you mean when you say "I Inspect dataset parameters". Could you be much more specific?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It is possible the algorithm can't iterate from this starting position, and so the parameters don't change.&lt;/P&gt;</description>
    <pubDate>Wed, 18 Apr 2018 11:39:10 GMT</pubDate>
    <dc:creator>PaigeMiller</dc:creator>
    <dc:date>2018-04-18T11:39:10Z</dc:date>
    <item>
      <title>proc nlimixed does not change provided starting parameters</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/proc-nlimixed-does-not-change-provided-starting-parameters/m-p/455102#M23768</link>
      <description>&lt;P&gt;I am trying to fit a logistic price demand curve like so:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods select none;
proc nlmixed data=TrainingData;	
	bounds L &amp;gt; 100, Sd1 &amp;gt; 0, Parameter1 &amp;gt; 0, k &amp;gt; 0, var2 &amp;gt;= 0;
	parms  L = 101, Sd1 = 0.5, Intercept = 1.0, Parameter1 = 0.001, k = 2, pa1=18, b1 =0; 

	Parameter1 = pa1 + b1;
	Y = L / -k * exp(Intercept + Parameter1 * Price);
	model Demand ~ normal(Y, Sd1);
	random b1 ~ normal(0, var2) subject = ProductId;
	ods output
	Parameters = Parameters
	FitStatistics = ModelFit
	;
run;
ods select all;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;This code is just a starting point! I played around with some parameters in Excel and found some OK-ish ones, which I provided as starting parameters. Unfortunately, the algorithm does not change the provided parameters when I inspect dataset Parameters (created using Parameters = Parameters). I doubt I chose the optimal parameters - so I would expect the parameters in the dataset Parameters to be adjusted. Is there something wrong with the above, which prevents the parameters from being changed? Thanks!&lt;/P&gt;</description>
      <pubDate>Wed, 18 Apr 2018 13:26:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/proc-nlimixed-does-not-change-provided-starting-parameters/m-p/455102#M23768</guid>
      <dc:creator>csetzkorn</dc:creator>
      <dc:date>2018-04-18T13:26:56Z</dc:date>
    </item>
    <item>
      <title>Re: proc nlimixed does not change provided starting parameters</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/proc-nlimixed-does-not-change-provided-starting-parameters/m-p/455114#M23769</link>
      <description>&lt;BLOCKQUOTE&gt;
&lt;P&gt;Unfortunately, the algorithm does not change the provided parameters when I inspect dataset Parameters.&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm not really sure what you mean by this. I'm not sure what you mean when you say "I Inspect dataset parameters". Could you be much more specific?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It is possible the algorithm can't iterate from this starting position, and so the parameters don't change.&lt;/P&gt;</description>
      <pubDate>Wed, 18 Apr 2018 11:39:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/proc-nlimixed-does-not-change-provided-starting-parameters/m-p/455114#M23769</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2018-04-18T11:39:10Z</dc:date>
    </item>
    <item>
      <title>Re: proc nlimixed does not change provided starting parameters</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/proc-nlimixed-does-not-change-provided-starting-parameters/m-p/455161#M23770</link>
      <description>Hi PaigeMiller,&lt;BR /&gt;&lt;BR /&gt;Thanks for the reply. i adapted the original post. There is a dataset Parameters, created by Parameters = Parameters. I would expect the content to be different to the provided starting values. I do not receive an error message/warning, which tells me that 'the algorithm can't iterate from this starting position'.</description>
      <pubDate>Wed, 18 Apr 2018 13:29:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/proc-nlimixed-does-not-change-provided-starting-parameters/m-p/455161#M23770</guid>
      <dc:creator>csetzkorn</dc:creator>
      <dc:date>2018-04-18T13:29:54Z</dc:date>
    </item>
    <item>
      <title>Re: proc nlimixed does not change provided starting parameters</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/proc-nlimixed-does-not-change-provided-starting-parameters/m-p/455169#M23771</link>
      <description>&lt;P&gt;Does the results show any iteration history, or number of iterations?&lt;/P&gt;</description>
      <pubDate>Wed, 18 Apr 2018 13:37:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/proc-nlimixed-does-not-change-provided-starting-parameters/m-p/455169#M23771</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2018-04-18T13:37:41Z</dc:date>
    </item>
    <item>
      <title>Re: proc nlimixed does not change provided starting parameters</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/proc-nlimixed-does-not-change-provided-starting-parameters/m-p/455200#M23772</link>
      <description>&lt;P&gt;The problem is this line:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;Parameter = Parameters&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I had to be changed to:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ParameterEstimates = Parameters&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 18 Apr 2018 14:13:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/proc-nlimixed-does-not-change-provided-starting-parameters/m-p/455200#M23772</guid>
      <dc:creator>csetzkorn</dc:creator>
      <dc:date>2018-04-18T14:13:25Z</dc:date>
    </item>
  </channel>
</rss>

