How to place titles in lattice plots
[This article was first published on mages' blog, and kindly contributed to R-bloggers]. (You can report issue about the content on this page here)
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.
I like the Economist theme in the Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.
latticeExtra
package. It produces nice looking charts that mimic the design of the weekly newspaper, such as in this example:For some time I wondered how I could put the title of my
lattice
plots into the top left corner as well (by default titles are centred). Reviewing the code of the theEconomist.theme
function by Felix Andrews reveals the trick. It is the setting of par.main.text
:library(lattice) my.settings <- list( par.main.text = list(font = 2, # make it bold just = "left", x = grid::unit(5, "mm"))) xyplot(sin(1:100) ~ cos(1:100), par.settings=my.settings, main="Hello World", type="l")
Furthermore, I can use the same approach to place a sub-title in the bottom left corner of my chart, e.g. to describe the source of my data:
my.settings <- list( par.main.text = list(font = 2, # make it bold just = "left", x = grid::unit(5, "mm")), par.sub.text = list(font = 1, just = "left", x = grid::unit(5, "mm")) ) xyplot(sin(1:100) ~ cos(1:100), par.settings=my.settings, main="Hello World", sub="Source: Nobody knows", type="l")
For more information see also the lattice help pages or the lattice book by Deepayan Sarkar: Lattice: Multivariate Data Visualization with R.
Session Info
R version 3.2.0 (2015-04-16) Platform: x86_64-apple-darwin13.4.0 (64-bit) Running under: OS X 10.10.3 (Yosemite) locale: [1] en_GB.UTF-8/en_GB.UTF-8/en_GB.UTF-8/C/en_GB.UTF-8/en_GB.UTF-8 attached base packages: [1] stats graphics grDevices utils datasets methods base other attached packages: [1] lattice_0.20-31 loaded via a namespace (and not attached): [1] tools_3.2.0 grid_3.2.0
To leave a comment for the author, please follow the link and comment on their blog: mages' blog.
R-bloggers.com offers daily e-mail updates about R news and tutorials about learning R and many other topics. Click here if you're looking to post or find an R/data-science job.
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.