Announcement

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

  • Joint Hypothesis testing

    Hi all together,

    I need to test a joint hypothesis that the constant is equal to zero and the first and second coefficients are equal to 1. How can I do this using Stata?

    Thank you very much!

  • #2
    Code:
    reg y x1 x2
    test (_cons=0) (x1=1) (x2=1)
    help test
    Best wishes

    (Stata 18.0 MP)

    Comment

    Working...
    X