<?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: Calculate half life from linear regression in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/Calculate-half-life-from-linear-regression/m-p/906725#M45027</link>
    <description>&lt;P&gt;Just be sure that you use the monotonically decreasing part of these curves to estimate the half-life if you implement the method in &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13684"&gt;@Rick_SAS&lt;/a&gt;&amp;nbsp;'s blog. Including the increasing phase will lead to a best fit line that has a much, much smaller slope than the part of the curve dominated by elimination from the pool sampled. As a result, the half life will be greatly over-estimated.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;SteveDenham&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;PS I am working through the paper by Kurada &amp;amp; Chen to use compartment modeling on this data. Here is a link:&amp;nbsp;&lt;A href="https://support.sas.com/resources/papers/proceedings18/1883-2018.pdf" target="_self"&gt;https://support.sas.com/resources/papers/proceedings18/1883-2018.pdf&lt;/A&gt;&amp;nbsp;. Then on to&amp;nbsp; the paper by Hannion and Boulanger&amp;nbsp;&lt;A href="https://www.lexjansen.com/phuse/2020/as/PRE_AS06.pdf" target="_self"&gt;https://www.lexjansen.com/phuse/2020/as/PRE_AS06.pdf&lt;/A&gt;&amp;nbsp;. From these, all of the data can be used, not just the monotonically decreasing data.&lt;/P&gt;</description>
    <pubDate>Thu, 07 Dec 2023 15:50:09 GMT</pubDate>
    <dc:creator>SteveDenham</dc:creator>
    <dc:date>2023-12-07T15:50:09Z</dc:date>
    <item>
      <title>Calculate half life from linear regression</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Calculate-half-life-from-linear-regression/m-p/905449#M44936</link>
      <description>&lt;P&gt;I want to calculate half-life by fitting a linear regression model to log transformed PRNT titers, then obtain p-values using Mann-Whitney U Test. I'm not confident in my methodology, and would appreciate some verification/feedback.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;1) Most of what I've seen in calculating half-life use natural log-transformations.&amp;nbsp;&lt;STRONG&gt;Can log10 transformations be used instead?&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;2) If so, then the model equation would be &lt;STRONG&gt;log10(AVAL)=log10(AVAL0)+k*t&lt;/STRONG&gt;, where AVAL is the PRNT results, AVAL0 is the PRNT results at baseline, k is the reaction rate constant, and t is the time (days).&amp;nbsp;&lt;/P&gt;
&lt;P&gt;3) Then &lt;STRONG&gt;the slope would be k?&amp;nbsp;&lt;/STRONG&gt;So half-life can be calculated using &lt;STRONG&gt;t_1/2=log10(0.5)/k&lt;/STRONG&gt;.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;4) &lt;STRONG&gt;Is the following code an accurate way to calculate half-life and p-value?&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;/*H0: Humoral immune response in Group 1 as assessed by PRNT half-life will be similar to Group 2*/

data have;
 label 	USUBJID	= "Unique Subject Identifier"
 		ACTARMN	= "Actual Treatment Arm (N)"
		ATPTN	= "Analysis Time Point (N)"
		AVAL	= "Analysis Value (PRNT Result)"
		;
 input USUBJID ACTARMN ATPTN AVAL @@;
 cards;
 1	1	1	10 	1	1	15	49 	1	1	29	79 
 1	1	43	271	1	1	57	216	1	1	90	142
 1	1	181	86 	1	1	365	20 
 2	1	1	12 	2	1	15	54 	2	1	29	89 
 2	1	43	267	2	1	57	209	2	1	90	131
 2	1	181	80 	2	1	365	26 
 3	1	1	21 	3	1	15	60 	3	1	29	101
 3	1	43	282	3	1	57	220	3	1	90	151
 3	1	181	85 	3	1	365	29 
 4	2	1	17 	4	2	15	55 	4	2	29	90 
 4	2	43	291	4	2	57	232	4	2	90	160
 4	2	181	100	4	2	365	32 
 5	2	1	17 	5	2	15	59  5	2	29	99 
 5	2	43	286	5	2	57	203	5	2	90	151
 5	2	181	91 	5	2	365	18 
 6	2	1	20 	6	2	15	56 	6	2	29	92 
 6	2	43	288	6	2	57	226	6	2	90	151
 6	2	181	90 	6	2	365	18 
 ;
data have;
 set have;
 	log_AVAL = log10(AVAL);
run;

/*linear regression model*/
proc reg data= have plots= none;
 by USUBJID ACTARMN;
 model log_AVAL=ATPTN;
 ods output ParameterEstimates= reg_mod;
run;

/*mean half-life*/
data reg_mod;
 set reg_mod;
	if Variable = 'ATPTN'	then T_HALF = log10(0.5)/Estimate;
proc means data= reg_mod(where= (Variable='ATPTN'));
 class ACTARMN;
 var T_HALF;
 output out= t_half mean= Mean_T_HALF min= Min_T_HALF max= Max_T_HALF;
run;

/*Mann-Whitney U Test*/
proc npar1way data= reg_mod wilcoxon;
 class ACTARMN;
 var T_HALF;
 ods output WilcoxonTest= pvalue;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 30 Nov 2023 21:25:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Calculate-half-life-from-linear-regression/m-p/905449#M44936</guid>
      <dc:creator>mariko5797</dc:creator>
      <dc:date>2023-11-30T21:25:47Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate half life from linear regression</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Calculate-half-life-from-linear-regression/m-p/905606#M44939</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am not very much at ease in the Pharmaco-Kinetics (PK) world , but have you seen below papers?&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;PharmaSUG 2023 - Paper SA-284&lt;BR /&gt;SAS-based Method for PK Noncompartmental Analysis and Validation&lt;BR /&gt;Hui Mao, BioPier Inc.&lt;BR /&gt;Lixin Gao, BioPier Inc.&lt;BR /&gt;&lt;A href="https://www.pharmasug.org/proceedings/2023/SA/PharmaSUG-2023-SA-284.pdf" target="_blank"&gt;https://www.pharmasug.org/proceedings/2023/SA/PharmaSUG-2023-SA-284.pdf&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;PhUSE 2012 -- Paper SP08&lt;BR /&gt;Estimating terminal half life by non-compartmental methods with some data below the limit of quantification&lt;BR /&gt;Jochen Müller-Cohrs, CSL Behring, Marburg, Germany&lt;BR /&gt;&lt;A href="https://www.lexjansen.com/phuse/2012/sp/SP08.pdf" target="_blank"&gt;https://www.lexjansen.com/phuse/2012/sp/SP08.pdf&lt;/A&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;Calling&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/15486"&gt;@kessler&lt;/a&gt;&amp;nbsp;(M.)&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;Koen&lt;/P&gt;</description>
      <pubDate>Fri, 01 Dec 2023 16:09:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Calculate-half-life-from-linear-regression/m-p/905606#M44939</guid>
      <dc:creator>sbxkoenk</dc:creator>
      <dc:date>2023-12-01T16:09:05Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate half life from linear regression</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Calculate-half-life-from-linear-regression/m-p/906257#M44988</link>
      <description>&lt;P&gt;The following code was pulled from a previous study. Note, the analysis value has been transformed to LOG2 instead of LOG10. The issue with this method is it does not give me individual half-life results, i.e., for each subject. I need to find the minimum, maximum, and p-value (Mann Whitney U) of the treatment groups. &lt;STRONG&gt;Is there a way to tweak the program to obtain that?&lt;/STRONG&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc genmod data= DSNIN; 
 by ACTARMN;
 class USUBJID;
 model log2_AVAL=ATPTN	/ dist= normal link= identity corrb type3;
 ods output GEEEmpPEst= Reg_Mod;
 repeated subject= USUBJID / corr= ar(1) corrw;
run;

proc sql;
 create table Results as
 	select 'PRNT' as ASSAY, ACTARMN, -1*(1/Estimate) as T_HALF, -1*(1/LowerCL) as T_HALF_LB, -1*(1/UpperCL) as T_HALF_UB
		from Reg_Mod
		where PARM= 'ATPTN';
quit;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 05 Dec 2023 15:27:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Calculate-half-life-from-linear-regression/m-p/906257#M44988</guid>
      <dc:creator>mariko5797</dc:creator>
      <dc:date>2023-12-05T15:27:41Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate half life from linear regression</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Calculate-half-life-from-linear-regression/m-p/906442#M45008</link>
      <description>&lt;P&gt;Just some miscellaneous comments - it doesn't make any difference what base log transform is used, the estimate for t1/2 should be the same. This is because the various log values differ only by a multiplicative constant, which factors out.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Next, log transforming the data makes some assumptions regarding the variance (that the variance is proportional to the mean, for instance). Consequently, this could be done on untransformed data using PROC NLIN or PROC NLMIXED. By including an indicator variable and some clever programming steps, you could get an estimate of the difference in t1/2 between treatments using an ESTIMATE statement in NLMIXED. If you are interested in this approach, let us know.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Finally, I had no trouble running your code. I assume that the method is historically what has been done in your field, so I would stay with it.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;SteveDenham&lt;/P&gt;</description>
      <pubDate>Wed, 06 Dec 2023 13:51:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Calculate-half-life-from-linear-regression/m-p/906442#M45008</guid>
      <dc:creator>SteveDenham</dc:creator>
      <dc:date>2023-12-06T13:51:30Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate half life from linear regression</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Calculate-half-life-from-linear-regression/m-p/906466#M45012</link>
      <description>&lt;P&gt;Thank you! I would be interested in your proposed approach, so I can better assess my options.&lt;/P&gt;
&lt;P&gt;The method used here, isn't standard (to my knowledge). I created the program based on my own understanding of how half-life is calculated.&lt;/P&gt;</description>
      <pubDate>Wed, 06 Dec 2023 15:06:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Calculate-half-life-from-linear-regression/m-p/906466#M45012</guid>
      <dc:creator>mariko5797</dc:creator>
      <dc:date>2023-12-06T15:06:09Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate half life from linear regression</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Calculate-half-life-from-linear-regression/m-p/906497#M45016</link>
      <description>&lt;P&gt;So I started to work on this with NLMIXED when I noticed something critical - these data do not describe a single pool decaying process of the type&amp;nbsp; c = c0 * exp (-k * time). It appears that at time=0 the response value is at or near zero, then increases to about time = 43, followed by a decrease. There are two logical models that fit this - a time independent two-pool model with sampling from the second pool, so that there is an entry rate constant, or a time-dependent model with sampling from a single pool.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Neither of those models fit the linearized (log transform) approach you have. One thing that might help would be to estimate the removal coefficient and estimate t1/2 from that. That would be easiest by removing time points less than 43 from the analysis and rescaling the time axis. However, that estimate of t1/2 will be biased by not having an accurate initial estimate of the maximum concentration and when it occurs.&amp;nbsp; However, in many pharmacokinetic studies, this is the standard approach, and it gives a good estimate of the removal coefficient and the resulting half-life in the pool.&amp;nbsp; Here is code to accomplish that:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc nlmixed data=have2(where=(atptn&amp;gt;40)) maxiter=5000  ;
    parms
        c0 =  1.5790
        d1 =  0
        k0  = -0.5291
        d2 = 0    
        s2       =  0.2069
    ;

    pred   = c0*trt1*exp(k0*trt1*(ATPTN-43)) + (c0 + d1)*trt2*exp((k0 + d2)*trt2*(ATPTN-43));
    

    model aval ~ normal(pred,s2);
    predict pred out=pred;
estimate 'initial for trt1' c0 ;
estimate 'removal coefficient for trt1' k0;
estimate 'initial for trt2' c0 + d1;
estimate 'removal coefficient for trt2' k0 + d2;

estimate 'half-life for trt1' -log(2)/k0;
estimate 'half-life for trt 2' -log(2)/(k0 + d2);
    ods output parameterestimates=parms additionalestimates=addl;
run;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;I think the use of the CMPTMODEL statement would enable fitting all of the data, but I will have to learn more about it before I post anything.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;SteveDenham&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 06 Dec 2023 16:30:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Calculate-half-life-from-linear-regression/m-p/906497#M45016</guid>
      <dc:creator>SteveDenham</dc:creator>
      <dc:date>2023-12-06T16:30:55Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate half life from linear regression</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Calculate-half-life-from-linear-regression/m-p/906708#M45025</link>
      <description>&lt;P&gt;&lt;EM&gt;&amp;gt;&amp;nbsp;The method used here, isn't standard (to my knowledge). I created the program based on my own understanding of how half-life is calculated.&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The method is standard. It is the same idea as for estimating the doubling time of an exponentially increasing function, but here you are estimating the "halving time" for a decreasing function. For the mathematics behind estimating doubling time, see&lt;/P&gt;
&lt;P&gt;&lt;A href="https://blogs.sas.com/content/iml/2020/04/01/estimate-doubling-time-exponential-growth.html" target="_blank"&gt;https://blogs.sas.com/content/iml/2020/04/01/estimate-doubling-time-exponential-growth.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I think you will see that the math behind the two methods are similar, except for the factor of 2 vs 1/2.&lt;/P&gt;</description>
      <pubDate>Thu, 07 Dec 2023 14:29:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Calculate-half-life-from-linear-regression/m-p/906708#M45025</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2023-12-07T14:29:51Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate half life from linear regression</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Calculate-half-life-from-linear-regression/m-p/906725#M45027</link>
      <description>&lt;P&gt;Just be sure that you use the monotonically decreasing part of these curves to estimate the half-life if you implement the method in &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13684"&gt;@Rick_SAS&lt;/a&gt;&amp;nbsp;'s blog. Including the increasing phase will lead to a best fit line that has a much, much smaller slope than the part of the curve dominated by elimination from the pool sampled. As a result, the half life will be greatly over-estimated.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;SteveDenham&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;PS I am working through the paper by Kurada &amp;amp; Chen to use compartment modeling on this data. Here is a link:&amp;nbsp;&lt;A href="https://support.sas.com/resources/papers/proceedings18/1883-2018.pdf" target="_self"&gt;https://support.sas.com/resources/papers/proceedings18/1883-2018.pdf&lt;/A&gt;&amp;nbsp;. Then on to&amp;nbsp; the paper by Hannion and Boulanger&amp;nbsp;&lt;A href="https://www.lexjansen.com/phuse/2020/as/PRE_AS06.pdf" target="_self"&gt;https://www.lexjansen.com/phuse/2020/as/PRE_AS06.pdf&lt;/A&gt;&amp;nbsp;. From these, all of the data can be used, not just the monotonically decreasing data.&lt;/P&gt;</description>
      <pubDate>Thu, 07 Dec 2023 15:50:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Calculate-half-life-from-linear-regression/m-p/906725#M45027</guid>
      <dc:creator>SteveDenham</dc:creator>
      <dc:date>2023-12-07T15:50:09Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate half life from linear regression</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Calculate-half-life-from-linear-regression/m-p/906729#M45029</link>
      <description>&lt;P&gt;Steve: your point is well-taken: You want to make sure you are modeling a steady-state phenomenon and do not pick up any initial transitory behavior.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Unless the data perfectly fits an exponential distribution, the estimate depends on the location at which you apply it. In my blog, I used the five most recent records to estimate the slope to the model at the most recent data point. Other estimates of the slope will yield different results. For example, if you use only the two most recent data points, you will get an estimate that has more variance.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 07 Dec 2023 16:09:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Calculate-half-life-from-linear-regression/m-p/906729#M45029</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2023-12-07T16:09:29Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate half life from linear regression</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Calculate-half-life-from-linear-regression/m-p/917375#M45522</link>
      <description>Thanks Steve. &lt;BR /&gt;What if the measurements are not monotonically decreasing? Is there another method? &lt;BR /&gt;I tested on the actual data I have, and while most had reasonable estimates, some were way larger than expected, especially those consistently &amp;lt;LLOD (imputed 1/2 LLOD).</description>
      <pubDate>Thu, 22 Feb 2024 15:07:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Calculate-half-life-from-linear-regression/m-p/917375#M45522</guid>
      <dc:creator>mariko5797</dc:creator>
      <dc:date>2024-02-22T15:07:01Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate half life from linear regression</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Calculate-half-life-from-linear-regression/m-p/917424#M45536</link>
      <description>&lt;P&gt;LLOD = can of worms.&lt;/P&gt;
&lt;P&gt;There is a lot of statistical literature out there on how to handle values that might be left-censored at a lower limit of quantitation, but few that apply to LLOD, as that can be defined as the value below which measurement noise is greater than the signal. I would impute values below LLOD as coming from a uniform distribution on [0, LLOD], which happens to have an expected value of LLOD/2. So, your imputation is probably not the issue. What I suspect is that the plot of the data has a hockey-stick appearance, with a long flat area out to the left, where most of the values are either very small or imputed. If you fit a line out there, it is going to have a slope approaching zero, with a relatively large residual SD. When you plug that into the back calculation for t&lt;FONT size="1 2 3 4 5 6 7"&gt;1/2&lt;FONT size="4"&gt; ,&amp;nbsp;&lt;FONT size="3"&gt;you get a really large value.&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="1 2 3 4 5 6 7"&gt;&lt;FONT size="4"&gt;&lt;FONT size="3"&gt;But think about it, the concentrations out in that area are due to non-single compartment behavior, either slow release from a precursor compartment or some sort of flip-flop kinetics.&amp;nbsp; What my colleagues in the pharmacokinetics group do is to examine the time course curve, and only use the data from the descending portion prior to entering LLOD territory. They set values &amp;lt;LLOD to zero, and any values after the first zero are also set to zero. That more or less restricts the analysis to a single compartment with a single elimination rate constant that is time-independent. I can see their point - I would rather estimate the rate constant with 4 points descending than 104 points where the last 100 are effectively zero.&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="1 2 3 4 5 6 7"&gt;&lt;FONT size="4"&gt;&lt;FONT size="3"&gt;Now if your time-concentration curve isn't nicely behaved, such as having two (or more) peaks, long flat periods, or increasing concentrations well after initial dose, then noncompartmental analysis may not give you a believable half-life.&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="1 2 3 4 5 6 7"&gt;&lt;FONT size="4"&gt;&lt;FONT size="3"&gt;SteveDenham&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 28 Feb 2024 13:02:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Calculate-half-life-from-linear-regression/m-p/917424#M45536</guid>
      <dc:creator>SteveDenham</dc:creator>
      <dc:date>2024-02-28T13:02:42Z</dc:date>
    </item>
  </channel>
</rss>

