I need to wrap the text in this plot. Anyone knows how?
I already tried using check_overlap but the labels are very separated from each other.
ex<-data.frame(x=1:10, y=c(1.732050808, 1.732050808, 1.732050808, 1.732050808, 0.866025404, 0.866025404, 0.866025404, 0.866025404, 0.866025404, 0.866025404
), z="Very very very very very very very very very very long text")
ggplot(ex,mapping = aes(x,y, label = (z)))+
geom_text(size=2, check_overlap = F)+
geom_point()