Skip to content
Prev 387434 / 398502 Next

Failure in predicting parameters

Just an update:
I tried with desmos and the fitting looks good. Desmos calculated the
parameters as:
Fmax = 11839.8
Chalf = 27.1102 (with matches with my estimate of 27 cycles)
k = 2.76798
Fb = -138.864
I forced R to accept the right parameters using a single named list
and re-written the formula (it was a bit unclear in the paper):
```
rutledge <- function(p, x) {
  m = p$half_fluorescence
  s = p$slope
  M = p$max_fluorescence
  B = p$back_fluorescence
  y = (M / (1+exp( -((x-m)/s) )) ) + B
  return(y)
}
```
but when I apply it I get a funny graph:
```
desmos <- rutledge(list(half_fluorescence = 27.1102, slope = 2.76798,
                        max_fluorescence = 11839.8, back_fluorescence
= -138.864) , high)
```
On Mon, Mar 15, 2021 at 7:39 AM Luigi Marongiu <marongiu.luigi at gmail.com> wrote: