I'd like to know how to set the initial "kicks" to use
the nonlinear power regression model. I'm working with a pet
of data, testing several regression models, even without adjustment,
I would like to cite this model, but I have difficulties in defining the values
I would like to know a method that would allow me to apply to any set of data, to obtain the initial values of A and B for the function nls(y~B*x^A,start=list(A=1, B=1.7))
dados<-structure(list(y = c(44.42, 77.9, 95.72, 40.24, 63.7, 46.62,
84.6, 52.49, 88.53, 56.52, 71.21, 65.16, 72.24, 53.81, 67.02),
x = c(11.26, 14.78, 17.56, 10.37, 13.27, 10.3, 14.07, 12.26,
13.3, 12.84, 13.72, 12.8, 14.86, 11.47, 15.06)), .Names = c("y",
"x"), row.names = c(NA, -15L), class = "data.frame")
attach(dados)
nls(y~B*x^A,start=list(A=1, B=1.7))