Announcement

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

  • Modifying -irf graph- output

    I want to remove the box at the top of an IRF graph, which reports "impulse" and "response" and the name of the irf. This is my code:

    irf create set1, set(vartmp1, replace) step(`nsteps') replace
    irf table oirf, std noci impulse(ytis) response(yis)
    irf graph oirf, impulse(ytis) response(yis) level(67) ///
    byopts(title("") note("") legend(off)) xtitle("`xaxislab'")

    The output is a graph, and at the top of the graph there's a yellowish box with the text "set1, xvar1, y1". I want to remove the text "set1, xvar1, y1".

    I have seen these three related threads about modifying the output of irf graph, but if they answer this question I don't see where. Thread 1, thread 2, thread 3.

    Thanks,
    Ben Meiselman

  • #2
    It turns out the "box" was a subtitle. The solution was to include subtitle("") as an option, so for example replace the final line of code from my previous post with:

    byopts(title("") note("") legend(off)) xtitle("`xaxislab'") subtitle("")

    Comment

    Working...
    X