How do I get base R plots title and subtitle to mimic ggplots? I'd prefer everything left aligned, nothing in bold, and subtitle to be directly below title.
I'd also like a little more space between everything. Maybe my newline \n
'hack' is the best way to accomplish this?
plot(mtcars)
title(main = "I want main title NOT bold and left aligned\n\n",
sub = "Sub title should be under the main title left aligned")