Re: [R] Managing axis labels

2017-03-28 Thread Ivan Calandra
Hi Jamil, You first need to specify 'xaxt' and 'yaxt' in your plot() call, and then you can set the size of the labels with cex.axis: plot(x, y, xlab=expression(vartheta), ylab="Concentration", xaxt="n", yaxt="n")axis(1, cex.axis=3) axis(2, cex.axis=2) HTH, Ivan -- Ivan Calandra, PhD MONRE

[R] Managing axis labels

2017-03-28 Thread Naser Jamil
Dear R-users, I would like to ask probably a silly thing. For some reason, I need x-axis and y-axis labels to be of different size. Here is a little example where I want "ϑ" to appear bigger than "Concentration". I have tried in the following way, but it is not working. ​ x<-seq(1,10,1) y<-seq(2,2