Announcement

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

  • How to draw a graph like this?

    Dear All, Does anyone know how to draw a graph like this.
    Click image for larger version

Name:	20180714110100.jpg
Views:	1
Size:	29.0 KB
ID:	1453361

    However, no data available at this moment.
    Ho-Chuan (River) Huang
    Stata 17.0, MP(4)

  • #2
    See the last example in help section for graph combine

    For example:
    Code:
    sysuse auto,clear
    lowess price mpg, name(gr1,replace) xscale(off) yscale(off) note("") title("")
    twoway kdensity price, name(gr2,replace) horiz fxsize(25) xscale(off) ytitle(Price)
    twoway kdensity mpg, name(gr3,replace)  fysize(20) yscale(off) xtitle(MPG)
    graph combine gr2 gr1 gr3, hole(3) imargin(0 0 0 0 )
    Click image for larger version

Name:	Graph3.png
Views:	1
Size:	32.7 KB
ID:	1453378

    Comment


    • #3
      Dear Scott, Thank you so much for the wonderful illustration.
      Ho-Chuan (River) Huang
      Stata 17.0, MP(4)

      Comment

      Working...
      X