Skip to content

graph tick label size

2 messages · FISCHER, Matthew, Uwe Ligges

#
FISCHER, Matthew wrote:

            
Not directly, but you can fake by plotting the stuff in two chunks as in:

plot(1:12, xaxt="n")
months <- c("J","F","M","A","M","J","J","A","S","O","N","D")
temp <- seq(1, 12, 2)
axis(1, temp, labels=months[temp])
temp <- seq(2, 12, 2)
axis(1, temp, labels=months[temp])

Uwe Ligges