In the following plot:
How can I break the label text in the right side into two lines? The last one (Total successful redcued tests) is not shown.
The script that I have written is:
ggplot(dataset, aes(Run,value)) + geom_line() + facet_grid(series ~ .,scales="free")+
scale_x_continuous(breaks = seq(0, 30, 1)) +
theme(legend.position="none", text = element_text(face = "bold", size = 16), axis.text.x=element_text(angle=90, hjust=1)) + xlab("\nRun") + ylab("Value\n")
Note that the three labels are the values of the series
.