<?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 the effect of individual  parameter in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/the-effect-of-individual-parameter/m-p/437692#M23085</link>
    <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc nlin data = new outest=ESTIMATES;
parms A = 15 B = 0.19 C = -0.0012 ;
bounds  A B C &amp;gt; 0; 
by cow_id;
model  TEST_DAY_MILK_KG = A * Time **b * exp(-C*Time);
output out = Fit predicted = Pred ;
run;
proc sql;
create table persistency as
select 
    cow_id,
    A, B, C, 
    -(B+1)*LOG(C) as P,
	A * (B/C)**(B) * exp(-B) as peakYield
from ESTIMATES
where _TYPE_ = "FINAL";
select * from persistency;
run;
quit;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Hi Guys&amp;nbsp;&lt;/P&gt;&lt;P&gt;could you please help me to find out the solution&amp;nbsp;to this question&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would like to know how to find the effect of environmental factors by using the individual parameter estimates from this code above.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Note: the environmental factors are e.g&amp;nbsp; (parity, calving month ...... .)&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;in this case what the next step I might do to get this answer.&amp;nbsp;&lt;/P&gt;&lt;P&gt;if you looking for more information about my study please&amp;nbsp;let me know&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;kind regards&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Ibrahim&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 15 Feb 2018 17:08:57 GMT</pubDate>
    <dc:creator>Barkamih</dc:creator>
    <dc:date>2018-02-15T17:08:57Z</dc:date>
    <item>
      <title>the effect of individual  parameter</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/the-effect-of-individual-parameter/m-p/437692#M23085</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc nlin data = new outest=ESTIMATES;
parms A = 15 B = 0.19 C = -0.0012 ;
bounds  A B C &amp;gt; 0; 
by cow_id;
model  TEST_DAY_MILK_KG = A * Time **b * exp(-C*Time);
output out = Fit predicted = Pred ;
run;
proc sql;
create table persistency as
select 
    cow_id,
    A, B, C, 
    -(B+1)*LOG(C) as P,
	A * (B/C)**(B) * exp(-B) as peakYield
from ESTIMATES
where _TYPE_ = "FINAL";
select * from persistency;
run;
quit;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Hi Guys&amp;nbsp;&lt;/P&gt;&lt;P&gt;could you please help me to find out the solution&amp;nbsp;to this question&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would like to know how to find the effect of environmental factors by using the individual parameter estimates from this code above.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Note: the environmental factors are e.g&amp;nbsp; (parity, calving month ...... .)&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;in this case what the next step I might do to get this answer.&amp;nbsp;&lt;/P&gt;&lt;P&gt;if you looking for more information about my study please&amp;nbsp;let me know&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;kind regards&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Ibrahim&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 15 Feb 2018 17:08:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/the-effect-of-individual-parameter/m-p/437692#M23085</guid>
      <dc:creator>Barkamih</dc:creator>
      <dc:date>2018-02-15T17:08:57Z</dc:date>
    </item>
  </channel>
</rss>

