I have a dataset with conccentrations, mycelium growth and two populations. I fitted LL.4 model (checked with mselect)
##LL.4 model of the data
FD7_LL4<-drm(Growth ~ Concentration, Treatment, data=FD7,
fct = LL.4(),
pmodels=list(~Treatment-1, ~Treatment-1, ~Treatment-1, ~Treatment-1))
and got a nice fit (Dose-response curves of two treatments using LL.4 model).
I got the ED50 estimates
ED(FD7_LL4, 50, interval="delta")
##results
Estimated effective doses
Estimate Std. Error Lower Upper
e:R:50 2.619512 0.085679 2.451342 2.787682
e:S:50 5.456838 0.256763 4.952865 5.960810
The problem is, that treatment "S" never reaches 0, and therefore also ED50 calculates from ymax-ymin. I would need to calculate it between ymax-0, because i want to have the value, when mycelium growth is inhibited at 50%. From experimental data the ED50 of S should be around 10, which I get with LL.3 model (Dose-response curves of the two treatments using LL.3 model), but as you can see it does not fit so well... Do you think I can still use LL.3 model as it is more relevant from biological point of view? the ED50 values of LL.3 model are:
Estimated effective doses
Estimate Std. Error Lower Upper
e:R:50 2.704085 0.083539 2.540116 2.868054
e:S:50 10.487770 0.693789 9.126012 11.849529
which correspond to my experimental data. Thanks a lot for your help.