Displaying 1 result from an estimated 1 matches for "fig_den".
2006 Feb 16
1
how to save the picture with par(mfrow = c(1, 3), pty='s') setti ngs?
Dear list,
I am trying to place 3 density functions in one Figure, 1 row by 3 columns:
-------------------------------------------------------
op <- par(mfrow = c(1, 3),pty='s')
pdf(file="Fig_den.pdf")
barplot2(tab.in,plot.grid=TRUE,xlab="number of HGT_in",ylab="density")
lines(dneg,col="red",lwd=2)
barplot2(tab.out,plot.grid=TRUE,xlab="number of HGT_out",ylab="density")
lines(dnegout,col="red",lwd=2)
barplot2(vt,plot.gri...