Skip to content
Prev 279077 / 398502 Next

legend, "lheight", and alignment

On 2011-12-01 08:54, emorway wrote:
You can adjust the alignment a little by adding 'merge = TRUE';
this will left-align both the boxes and the lines.

For your second question, use the y.intersp argument, e.g.
'y.intersp = 2'.

You might also avoid using 'paste' in your expressions;
Try replacing
   expression(paste("Observed",italic(bar(EC)[e])))

with
   expression("Observed"~italic(bar(EC)[e]))


Peter Ehlers