The smartest solution [Bioanalytics]

posted by ElMaestro  – Denmark, 2019-03-16 23:35 (1839 d 01:29 ago) – Posting: # 20041
Views: 5,144

Ladies and gentlemen,

I present to you the Philadelphia variation: The smartest and most empirical solution to a very, very small (and mainly theoretical?) problem.

Let us apply weights 1/C^z in such a fashion that the sum of relative absolute residuals is smallest. Idea borrowed from ISR.
And it may make good sense to look at the relative magnitude of residuals since this is what runs pass criteria are based on.

Therefore, here is something to play around with:
Conc=c(1, 2, 4, 8, 20, 50, 100, 150, 200, 300)
Ratio=c(0.5303, 0.1074, 0.2092, 0.4121, 0.9886, 2.3197, 5.0343, 7.7656, 10.2105, 14.9564)

ObjF=function(z)
{
 w=1/(Conc^z)
 M=lm(Ratio ~Conc, weight=w)
 return(sum(abs(resid(M)/Conc)))
}

##now let us find the value of z which gives the smallest sum of absolute relative residuals
optimize(ObjF,  c(0, 10))


Note: the fit is not very good, r squared is rather low, but that is besides the point. You get my drift, I hope.

z then defines the weighting scheme which can be said to give the smallest overall amount of percent-wise prediction error on the calibration curve. Not a bad place to start.

You can modify the idea as you please, perhaps you want to define ObjF via the Ratio and not via the Conc, or perhaps you want to return another type of objective altogether. Various things that don't work include but aren't limited to abs sum of residuals, sum of residuals, and more.:cool:

Thank me later. :-D

Pass or fail!
ElMaestro

Complete thread:

UA Flag
Activity
 Admin contact
22,957 posts in 4,819 threads, 1,636 registered users;
75 visitors (0 registered, 75 guests [including 9 identified bots]).
Forum time: 01:04 CET (Europe/Vienna)

With four parameters I can fit an elephant,
and with five I can make him wiggle his trunk.    John von Neumann

The Bioequivalence and Bioavailability Forum is hosted by
BEBAC Ing. Helmut Schütz
HTML5