how to return the R-squared using lscov command

3 visualizaciones (últimos 30 días)
Janis
Janis el 12 de En. de 2013
How can I get the R-squared using the LSCOV command?

Respuestas (1)

Wayne King
Wayne King el 13 de En. de 2013
Editada: Wayne King el 13 de En. de 2013
I'm not sure whether your A matrix can be interpreted as a design matrix for a linear model and B is your response vector (here I'm using the input designations in lscov), but if that is the case, then the classic R-squared would be.
X = lscov(A,B);
xhat = A*X;
resid = xhat-B;
SSE = norm(resid,2)^2;
TSE = norm((B-mean(B),2)^2;
R2 = 1-SSE/TSS;
Alternatively, you could use something like:
X = lscov(A,B);
xhat = A*X;
r2 = norm(xhat,2)^2/norm(B,2)^2;
The l2-norm of xhat is less than or equal to the l2 norm of the B vector. If A*X is a good fit for B, then the norm of xhat will be close to the l2 norm of B and the ratio will be close to 1.
If A*X is bad fit for B, then the ratio will be small.
  2 comentarios
Matt J
Matt J el 13 de En. de 2013
Editada: Matt J el 13 de En. de 2013
This would only work if LSCOV is called with no more than 2 input args, i.e., if it is unweighted least squares. With the syntax
x=lscov(A,B,V)
you would perhaps need
resid = xhat-B;
resid = dot(resid,V\resid);
Tom Lane
Tom Lane el 14 de En. de 2013
I would recommend computing both SSE and TSS using weights.

Iniciar sesión para comentar.

Categorías

Más información sobre Creating and Concatenating Matrices en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by