Skip to content

Tick label orientation

2 messages · Murray Jorgensen, Dieter Menne

#
I had hoped that

plot(c(0,24),c(0,-6),xlab="Time",ylab="Day",
      type="n", main="This Week",axes=FALSE)

axis(2,at=0:(-6), labels = 
c("Sun","Mon","Tues","Wed","Thurs","Fri","Sat"),hadj=TRUE)
axis(1,at=seq(0,24,4))

would give me horizontal tick labels.
It doesn't.  What would?

Murray
#
Murray Jorgensen wrote:
Add las=1

Dieter