Hello,
I have some nls model fitted with a four parameter logistic curve.
model<-nls(V1 ~ SSfpl(V2, a, b, c, e))
I want to test the effect of a factor on this fit, something like:
model<-nls(V1 ~ SSfpl(V2+factor, a, b, c, e))
or
model<-nls(V1 ~ SSfpl(V2, a, b, c, e)+factor)...