Announcement

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

  • VAR estimation in stata

    Hi friends, how to order the variables when using VAR command?

    For example, if x1 is exogenous in my VAR model, should I place it at the head or else?

    i.e., var x1 x2 x3 or var x2 x3 x1?

    Does the order matter in VAR estimation? Thanks a lot.

  • #2
    The order only matters insofar as it changes the order of the output:

    Code:
    var x1 x2 x3
    Returns the same values as:

    Code:
    var x2 x3 x1

    Comment


    • #3
      Thanks. But I find it different between two commands.

      Comment

      Working...
      X