I fight to determine the y axis of the graph using seqmtplot. I followed the steps described in the previous post ( How to configure the y axis using seqIplot in R? ). However, they do not seem to work for seqmtplot.
The y axis of my graph goes from 0 to 9, so I want it to display marks in intervals 1, i.e. 0, 1, 2 ... 9
I run these lines of code.
seqmtplot(LSAY.seq, group= , title="Mean time", yaxis=F) #axis(2, at=seq(from=0, to=9, by=1))
The problem is that the starting point of the y axis (i.e. 0) of my graph moved below the columns displaying the data.
Any ideas how I can fix this?
A second related question: how can I access the data underlying the graph created by seqmtplot?
Thanks in advance.
source share