Announcement

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

  • impulse response functions modifications

    Hello, I was wondering if there is a way to modify the impulse magnitude in the impulse response fucntions. Can I select or set the value I want the impulse of my variable to be?
    Also how can I change the scaling on the x-axis of the IRF's, it is 4,8,12,16 I would like it to be 1,2,3,4,5 etc.
    Thank you in advance

  • #2
    Dear Nick,

    I cannot be of any help regarding your impulse magnitude modification.
    But, the adjustment of the x-axis labels is not too difficult - using this reference manual example:
    Code:
    * Set up
    use https://www.stata-press.com/data/r17/lutkepohl2 , clear
    * Model
    var dln_inv dln_inc dln_consump if qtr<=tq(1978q4), lags(1/2) dfk
    * impulse–response function analysis & plot
    irf create order1, step(10) set(myirf1, new)
    irf graph oirf, impulse(dln_inc) response(dln_consump) xlabel(0(1)10)
    http://publicationslist.org/eric.melse

    Comment

    Working...
    X