Hi Robert,
You need to add paper = "special" to the postscript() call.
postscript(file="~/Desktop/figure.ps", horizontal=TRUE,
width=20, height=10, paper = "special")
plot()
...
plot()
dev.off()
Otherwise it is reset because you are specifying a size outside of
what can fit on the
Dear R users, simple figure:
postscript(file="~/Desktop/figure.ps", horizontal=T, width=20, height=10)
par(mfcol=c(2,5))
plot(rnorm(100), type='l')
plot(rnorm(100), type='l')
plot(rnorm(100), type='l')
plot(rnorm(100), type='l')
plot(rnorm(100), type='l')
##-
plot(rnorm(100), type='l')
plot(
2 matches
Mail list logo