Announcement

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

  • Critical values in Stata

    Hello.

    For different tests, is it possible to access what the critical values for each test is based on some function in stata?

    Thanks in advance.

  • #2
    Yes. For example, try this:

    Code:
    clear
    sysuse auto
    regress mpg price weight length
    return list
    matrix list r(table) // crit row shows critical t-values
    HTH.
    --
    Bruce Weaver
    Email: [email protected]
    Version: Stata/MP 18.5 (Windows)

    Comment


    • #3
      If you are looking for functions, see

      help density_functions
      -------------------------------------------
      Richard Williams, Notre Dame Dept of Sociology
      StataNow Version: 19.5 MP (2 processor)

      EMAIL: [email protected]
      WWW: https://www3.nd.edu/~rwilliam

      Comment

      Working...
      X