How to add braces to a graph?

后端 未结 5 750
北荒
北荒 2020-12-01 12:23

I want to make the following graph in R:

\"enter

How can I plot those horizont

5条回答
  •  粉色の甜心
    2020-12-01 13:22

    How about something like this?

    plot(c(0,1), c(0,1))
    text(x = 0.5, y = 0.5, '{', srt = 90, cex = 8, family = 'Helvetica Neue UltraLight')
    

    plot

    Adapt it to your purposes. You might find a lighter weight font or a shape you like better. There are hairline fonts if you do a search online.

提交回复
热议问题