Is it possible to split the main title of a plot() in 2 or more lines in R?
Moreover I have a title which consists of many argumenets pasted together
plot(1, main=paste("X:",1," ","Y:", 2," ","Z:",3))
How can I insert a line break between Y and Z in the main?
Thanks E.C
Like this:
plot(1) title(main="This is Title")
Edit:
Try this
plot(1, main=paste("X:",1," ","Y:", 2," "," Z:",3))
2.1m questions
2.1m answers
60 comments
57.0k users