Displaying 1 result from an estimated 1 matches for "raf1".
Did you mean:
raf
2007 Apr 18
1
Changing axis lable text size in plots?
Dear list
I'm plotting ( boxplot() and plot() ) some data for a publication.
The editor would like the text labels on the plots in a larger font.
I'm doing something like this:
<snip>
jpeg(
filename = "D:/Martin/Work/CleanPath/RAF1%03d.jpg",
width = 1000,
height = 600,
pointsize = 12,
quality = 100,
bg = "white",
res = 96,
restoreConsole = TRUE
)
boxplot(
dafExpo[,c(1,2,3,4,5,6,7,8,9,10,11,12)],
main = "Total NOx Exposure per trip"
)
numAxeMax = max(dafExpo$grn07, dafExpo$grn09, dafExpo$grn...