Displaying 1 result from an estimated 1 matches for "ymodel".
Did you mean:
  model
  
2003 Nov 20
3
nls, nlrq, and box-cox transformation
Dear r-help members
I posted this message already yesterday, but don't know whether it
reached you since I joined the group only yesterday.
I would like to estimate the boxcox transformed model
 (y^t - 1)/t ~ b0 + b1 * x.
Unfortunately, R returns with an error message when I try to 
perform this with the call
nls( I((y^t - 1)/t) ~ I(b0 + b1*x),
	start = c(t=1,b0=0,b1=0), data = mydataframe)