Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
  • Show
Clear All
new posts

  • Estimates store problem

    Hi,

    I'm trying to save an estimation of a simple regression, but I have tried with different datas and always when I try "estimates store..." after running my regressión the results are only 1s. I don't know why is happenning.

    Please help.

  • #2
    If you want to view the stored estimates, then use

    Code:
    estimates replay ...
    estimates restore ...
    followed by

    Code:
    ereturn list
    My guess is that you are looking at the variables that estimates store generates, but these are not the actual estimates.
    Last edited by Andrew Musau; 11 Oct 2023, 14:30.

    Comment


    • #3
      This is my code
      clear all
      webuse auto.dta, clear

      reg price weight length displacement
      estimates store xb

      The min and max of _est_xb is 1

      Comment


      • #4
        As I said, the estimates refer to the estimated coefficients, variances, statistics and so on. I directed you on how to get them in #2.

        Comment

        Working...
        X