Bulent Miran a écrit :
Would it be possible to get p values in logit/probit outputs?
B Miran
----- Original Message -----
Sent: Monday, May 28, 2007 10:02 AM
Subject: [Gretl-users] wishes list bis
Would it be possible please, to save a matrix as a .gdt file for further use?
When I saved a matrix as .txt file and tried to import it into Gretl, the result was a really mismatched and unusable file.
Best,
Artur
I'm afraid not. As long as I'm aware, Gretl has not an internal variable grasping the p-value of estimators. But you can always compute it yourself.
For example, after executing "logit" or "probit" command you can add the following code :
genr p_val = pvalue(t, $df, $coeff(X)/$stderr(X))
and you'll get what you need
Artur