I would be very grateful for advice. I would would like to include all x-axis labels on ticks, reduce the font size so that they don't overlap and rotate them. In this example, there are 23 tick marks but only 12 1abels. I would like them all displayed. Many thanks!
data(mvad)
mvad=mvad%>%select(1:37)
mvad.labels <- c("employment", "further education", "higher education",
"joblessness", "school", "training")
mvad.scodes <- c("EM","FE","HE","JL","SC","TR")
mvad.seq <- seqdef(mvad, 15:37, states=mvad.scodes, labels=mvad.labels)
seqiplot(mvad.seq, withlegend=F)
Since version 2.2-9, all TraMineR plot functions have gained improved support of graphical parameters. In particular, they support now the las
and cex.axis
arguments to control the display of tick labels. For example, with:
seqiplot(mvad.seq, with.legend=F, las=2, cex.axis=.7)