Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Calculation of R^2 value for a non-linear regression

I would first like to say, that I understand that calculating an R^2 value for a non-linear regression isn't exactly correct or a valid thing to do.

However, I'm in a transition period of performing most of our work in SigmaPlot over to R and for our non-linear (concentration-response) models, colleagues are used to seeing an R^2 value associated with the model to estimate goodness-of-fit.

SigmaPlot calculates the R^2 using 1-(residual SS/total SS), but in R I can't seem to extract the total SS (residual SS are reported in summary).

Any help in getting this to work would be greatly appreciated as I try and move us into using a better estimator of goodness-of-fit.

Cheers.

like image 492
sinclairjesse Avatar asked Apr 13 '11 21:04

sinclairjesse


1 Answers

Instead of extracting the total SS, I've just calculated them:

test.mdl <- nls(ctrl.adj~a/(1((conc.calc/x0)^b)),
                data=dataSet,
                start=list(a=100,b=10,x0=40), trace=T);

1 - (deviance(test.mdl)/sum((ctrl.adj-mean(ctrl.adj))^2))

I get the same R^2 as when using SigmaPlot, so all should be good.

like image 70
sinclairjesse Avatar answered Sep 29 '22 15:09

sinclairjesse