On Mon, 28 Sep 2020, Filipe Costa wrote:
Ok, thanks for the quick reply. Just another question related to
these models. Let's say I run several models in one session and save them in this
way:
Model1 <- ols y 0 x1
Model2 <- ols y 0 x2
I can retrieve the models with the code:
Model1.show
Model2.show
But a question I have is the following: can I by then retrieve the
coefficients and standard errors of the regressions using the
console? The variables $coeff and $stderr store info just for the
last model run, so can't use them after running everything.
For named models:
matrix b = Model1.$coeff
matrix se = Model1.$stderr
Allin