Hi everyone. For a dataset consisting of three quantitative variables, H, M and W I have to build a non linear model of this form: E(H)=b0+b1*M+(W/(b3+b4*M)).
I tried using the "nls()" function in R, but I don't know how to determine the start values of the coefficients, b0, b1, b3 and b4. Can...