search for: asym_inf

Displaying 2 results from an estimated 2 matches for "asym_inf".

2010 Jan 13
1
Problem fitting a non-linear regression model with nls
Hi, I'm trying to make a regression of the form : formula <- y ~ Asym_inf + Asym_sup * ( (1 / (1 + (n1 * (exp( (tmid1-x) / scal1) )^(1/n1) ) ) ) - (1 / (1 + (n2 * (exp( (tmid2-x) / scal2) )^(1/n2) ) ) ) ) which is a sum of the generalized logistic model proposed by richards. with data such as these: x <- c(88,113,128,143,157,172,184,198,210,226,240,249,263,284,30...
2010 Feb 03
1
comparison of parameters for nonlinear regression
Hi, I have two series of data set (it's measurment of growth but under two different conditions). To model these data I use the same function which is : formula <- y ~ Asym_inf + Asym_sup * ( (1 / (1 + (n1 * (exp( (tmid1-x) / scal1) )^(1/n1) ) ) ) - (1 / (1 + (n2 * (exp( (tmid2-x) / scal2) )^(1/n2) ) ) ) ) After the estimation of the parameters thanks to "nls", I have 2 models. The idea is I want to compare this 2 models and particularly I want to know if t...