Announcement

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

  • control number of graphs in each row with grc1leg

    Using grc1leg I would like to combine 5 graphs:

    grc1leg a b c d e, ycommon row(2) col(3) legendfrom(a) name(x,replace)

    I get 3 graphs in first row, and 2 graphs in second row.
    However, I need 2 graphs in the first row, and 3 in the second row.
    Is that possible?

  • #2
    As the command is based on the official gr combine, see the option -holes()- in

    Code:
    help gr combine
    If, e.g., you wanted the top right corner empty, you need

    Code:
    grc1leg a b c d e, ycommon row(2) col(3) legendfrom(a) name(x,replace) holes(3)

    Comment


    • #3
      Perfect - thanks!

      Comment

      Working...
      X