Skip to content
Prev 157358 / 398506 Next

Trend graph

C.H. wrote:
Hi Chainsaw (both my wife and I like chainsaws),

I would use lines - I don't know of any specific function that will do this.

pp.mat<-cbind(pre,post)
plot(1:2,c(1,7),type="n",xaxt="n")
axis(1,at=1:2)
apply(pp.mat,1,lines)

Jim