I am playing with the ggforce library and I have difficulties with displaying long text. When the text to display is a bit longer, it disappears from the plot (see example #2). Is there a way to fix that?
library(tidyverse)
library(ggforce)
ggplot(iris, aes(Petal.Length, Petal.Width)) +
geom_mark_circle(aes(color = Species, label = "Small sentence"),
expand = unit(0.2, "mm")
) +
geom_point() +
theme(legend.position = "none") +
theme_minimal()

This does not work
ggplot(iris, aes(Petal.Length, Petal.Width)) +
geom_mark_circle(aes(color = Species, label = "This is a very long text to display"),
expand = unit(0.2, "mm")
) +
geom_point() +
theme(legend.position = "none") +
theme_minimal()

Created on 2019-07-25 by the reprex package (v0.3.0)

ggsaveto a pdf or png. - Philippe Massicottep <-ggplot(iris, aes(Petal.Length, Petal.Width)) + geom_mark_circle(aes(color = Species, label = "This is a very long text to display"), expand = unit(0.2, "mm") ) + geom_point() + theme(legend.position = "none") + theme_minimal() ggsave("prueba.pdf",p, width = 10, height = 10)- LocoGris