How to annotate across or between plots in multi-plot panels in R

前端 未结 4 578
耶瑟儿~
耶瑟儿~ 2020-12-18 00:33

If I have several plots in a single panel, I would like to be able to put text annotations that go across more than one plot area or that go in between plot areas. I\'m sure

4条回答
  •  抹茶落季
    2020-12-18 01:38

    You want to use mtext with outer=TRUE. For instance, mtext('Results2', side=1, line=-2, outer=TRUE) and mtext('Results1', side=3, line=-20, outer=TRUE).

提交回复
热议问题