Displaying 1 result from an estimated 1 matches for "cexmlabel".
Did you mean:
cexalabel
2010 Mar 08
1
(box-) plot annotation: italic within paste?
...oides <-c(126.5,29.3,76.7,134.1,176.7,87.9)
x<-data.frame(Acrobeles,Acrobeloides,Alaimus,Aphelenchoides)
predictor <- colnames(x)
ylabel <-"Numerical abundance"
mainlabel1 <-"Boxplot for"
mainlabel2 <-"sp."
cexalabel <-1.8 # axis label
cexmlabel <-1.6 # main label
par(oma=c(6,6,3,3),mar = c(6, 4, 4, 2) + 0.1,mfrow=c(2,2))
for (i in 1:ncol(x)){
boxplot(x[,i],
main=paste(mainlabel,predictor[i],mainlabel2),ylab=paste(ylabel),cex.lab=cexalabel,cex.main=cexmlabel,cex.axis=1.5)
}
-------------------------------------------------------...