Skip to content
Prev 318559 / 398503 Next

solving x in a polynomial function

On 2013-03-01 13:06, Mike Rennie wrote:
You need to replace the following line

   if(names(model)[1] == "(Intercept)")

with

   if(names(coef(model))[1] == "(Intercept)")


Peter Ehlers