Displaying 2 results from an estimated 2 matches for "legend_args".
2008 Sep 26
2
adjusting textsize and spacing in mosaic (vcd package)
...change the font size
mosaic(HairEyeColor, shade = TRUE, gp=gpar(fontsize=16))
#This successfully changes most of the text sizes, but not the numbers on
the legend scale
mosaic(HairEyeColor, shade = TRUE,
labeling_args=list(gp_labels=gpar(fontsize=16),
gp_varnames=gpar(fontsize=18)),
legend_args=list(fontsize=16),
margins=unit(4, "lines"),
legend_width=unit(7, "lines"))
How do I change the size of the text on the legend scale?
Also, is there a way to change all the font sizes at once?
Regards,
Richie.
Mathematical Sciences Unit
HSL
-------------------------...
2008 Oct 15
0
R-help Digest, Vol 67, Issue 31
...Color, shade = TRUE, gp=gpar(fontsize=16))
>
> #This successfully changes most of the text sizes, but not the numbers
on
> the legend scale
> mosaic(HairEyeColor, shade = TRUE,
> labeling_args=list(gp_labels=gpar(fontsize=16),
> gp_varnames=gpar(fontsize=18)),
> legend_args=list(fontsize=16),
> margins=unit(4, "lines"),
> legend_width=unit(7, "lines"))
>
> How do I change the size of the text on the legend scale?
>
> Also, is there a way to change all the font sizes at once?
For mailing list posterity, the workaround tha...