How can I calculate r-square from basic fitting parameters?
Afficher commentaires plus anciens
hello there! i have a short question about how to calculate r-square with the help of the basic fitting parameters. i have two vectors x and y, which i plot against each other in a scatter plot and fit a linear regression line through that cluster with the basic fitting tool matlab provides. i get the residuals and coefficients from that, but i don't know how to get to the r-square value from there. help anyone? thanks a lot in advance!
Réponses (3)
the cyclist
le 11 Août 2012
0 votes
Which "basic fitting tool" are you using?
The "regress" command in the Statistics Toolbox reports the value of r-square in the stats output structure.
Image Analyst
le 11 Août 2012
You mean like where you got an array of estimated values and you have an array of actual values? Like if you used the actual values in polyfit() to get an equation, and then used polyval() to get the fitted (estimated) values? From the help for corrcoeff():
R = corrcoef(X) returns a matrix R of correlation coefficients calculated from ....
R = corrcoef(x,y) where x and y are column vectors is the same as corrcoef([x y]). If x and y are not column vectors, corrcoef converts them to column vectors. For example, in this case R=corrcoef(x,y) is equivalent to R=corrcoef([x(:) y(:)]).
Here x would be the actual values and y would be your estimated (fitted) values.
Star Strider
le 11 Août 2012
Modifié(e) : Star Strider
le 11 Août 2012
0 votes
It will even calculate the P-value and confidence limits for the R-statistic if you want it to.
Catégories
En savoir plus sur Descriptive Statistics dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!