search for: finalscore

Displaying 1 result from an estimated 1 matches for "finalscore".

2010 Jan 22
0
Help changing position of x-axis
.... I notice when I output the graph to the dataset "mp" then it's value is NULL. Is the stripchart design to be outputted like other graphs? What is the correct syntax to change the position of the x-axis? library(lattice) par(mar = c(7, 4, 4, 2) + .9) mp<-stripchart(InitialScore+FinalScore ~ Scale,data=mpi, vertical=TRUE, method="jitter",pch=1:11,col=1:11, ylab="Scale (0-100)") axis(1, at = mp, labels = FALSE) text(mp,par("usr")[3] - 0.5,srt = 45, adj = 1.1,labels = mpi$Scale,xpd = TRUE) Error in text.default(mp, par("usr")[3] - 0.5, srt = 4...