Skip to content
Prev 368057 / 398500 Next

Managing axis labels

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
MONREPOS Archaeological Research Centre and
Museum for Human Behavioural Evolution
Schloss Monrepos
56567 Neuwied, Germany
+49 (0) 2631 9772-243
https://www.researchgate.net/profile/Ivan_Calandra
On 27/03/2017 20:26, Naser Jamil wrote: