Announcement

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

  • Add one overall note, text or caption to a combined coefplot

    Hi I use coefplot to stack several graphs together. When I want to add a note, it adds to each sub graph rather than to the bottom of the stacked graph. How can I achieve adding one OVERALL note/text/caption to the overall graph than to each subgraph?

    coefplot (normal1, offset(0) keep(treat)) ///
    || (normal2, offset(0) keep(treat))///
    ||, vertical byopts(compact cols(1) yrescale legend(off)) //
    coeflabels(, tlcolor(none) labsize(small)) ///
    mlabel(cond(@pval<.01, "***", cond(@pval<.05, "**", cond(@pval<.1, "*", "")))) note("able")

    Thanks!
    Last edited by ZH ZH; 13 Feb 2019, 20:54.

  • #2
    Hello,

    I realize this is a few months late and so might no longer be helpful, but you can add an overall note with the following option:

    Code:
    byopts(note("This is a note!"))
    In your specific case, then, you need only add the note() option to your byopts() call.

    Comment

    Working...
    X