Simple econometric regression
Mostra commenti meno recenti
Hi,
I would like to perform a simple econometric regression using Matlab, but I have been struggling to do it for a few days now. Quite simply, I have a set of data for both X and Y. I would like to perform a regression of the following form: Y= BetaZero + Beta*X + ErrorTerm. Could anyone please tell me what is the right function to do so? I've been trying to accomplish that by using regress(), but I realised that it does not return the value of the constant term (aka Beta zero or alpha). Thank you very much for your help.
Risposta accettata
Più risposte (2)
Fangjun Jiang
il 1 Ago 2011
0 voti
You have the right function. Just try it with three return variables.
[B,BINT,R] = REGRESS(Y,X) returns a vector R of residuals.
Read the full text of help regress
3 Commenti
Marcin Kuc
il 1 Ago 2011
Oleg Komarov
il 1 Ago 2011
You have to add a column of ones for the constant. As already suggested read the documentation.
Marcin Kuc
il 1 Ago 2011
Fangjun Jiang
il 2 Ago 2011
To use regress();
x=(1:100)';
y=10+2*x+rand(100,1);
[B,BINT,ErrorTerm]=regress(y,[ones(size(x)),x]);
BetaZero=B(1)
Beta=B(2)
BetaZero =
10.6381
Beta =
1.9976
Categorie
Scopri di più su Econometrics Toolbox in Centro assistenza e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!