search for: leftci

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

Did you mean: left
2005 Jul 11
1
small first graph of par(3,2), other 5 are correct
...up with each time. Any help on fixing this problem so that all 6 graphs appear the same size on the figure would be most welcome. Thanks, Scot #### Here is the toy example that shows the layout and plots in my figure: par(mfrow=c(3,2)) groups<-LETTERS[1:5] ### for graph 1 ### # data leftci <- c(1:5) rightci <- c(2:6) # left column graph so: par(mar=c(0.5, 1, 5, 5)) # right column graph so: #par(mar=c(0.5, 5, 5, 1)) plot.new() title(main = "Graph 1") plot.window(xlim=c(0, 8), ylim=c(-1.5, 5.5)) ticks <- seq(0, 8, 1) y <- 1:5 # how many spaces on y axis: 1 for...