Announcement

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

  • Customization of graph combine with three graphs

    Hi Statalisters

    I am working on a visualization where I am interested in the following graph combination:

    Click image for larger version

Name:	customization_graph_combine.png
Views:	1
Size:	9.1 KB
ID:	1614548

    Does anyone know how to code this? It seems like a trivial adjustment to graph combine, but I only get a standard size second row (i.e., graph C is equal in size to A/B), and I have not found assistance in Stata's help documentation on this.

    Best
    Tarjei





  • #2
    Combine A and B first and then combine the combination of A and B with C.

    Code:
    gr combine A.gph B.gph, row(1) saving(AB)
    gr combine AB.gph C.gph, row(2)

    Comment


    • #3
      Found a solution that works for me that I'll post in case anyone is interested:

      1. graph combine A.gph B.gph, save as AB.gph
      2. graph combine AB.gph C.gph

      EDIT: My page was not updated when I wrote this post so I did not see the replies. Thanks for the suggested solutions!
      Last edited by Tarjei W. Havneraas; 14 Jun 2021, 06:00.

      Comment


      • #4
        much is unclear in what you write, but my guess is that you will need to do this in two steps where step 1 combines (in one row), graphs A and B, and step then combines the result of step 1 with graph C (now in one column)

        Comment

        Working...
        X