search for: meanslay

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

Did you mean: manulay
2006 Jul 16
1
break axis using plotrix
...Jim Lemon: http://finzi.psych.upenn.edu/R/Rhelp02a/archive/56487.html My attempt looks like this: ########################### # x-values x <- 1:4 # small y-values with corresponding standard errors meansarr <- c(14.9, 18.2, 14.5, 18.3) searr <- c(0.47, 1.27, 1.22, 0.49) # large values meanslay <- c(36.4, 39.0, 35.3, 38.6) selay <- c(0.51, 0.34, 0.57, 0.40) library(plotrix) # plot small values plot(x, meansarr, ylim=c(12, 30), axes=F, type="b", xlab="", ylab="Day") arrows(x, meansarr-searr, x, meansarr+searr, code = 3, angle = 90, length = 0.03) box(...