R lattice - change "cex.lab" in "levelplot"
November 12, 2019 by
Cannot be done within levelplot()
but with
trellis.par.set("par.xlab.text", list(cex=.7))
trellis.par.set("par.ylab.text", list(cex=.7))
run
trellis.par.get()$par.xlab.text
to get the full customizable arguments.
Edit: Wrong!
Can be done with
...,
par.settings = list(xlab.text = list(...)),
...