On 07/19/2014 07:17 PM, William Dunlap wrote:
Wrap all your calls to plot() with print(). E.g., change
plot(s, type="vectors", idx=1:12, main="")
to
print(plot(s, type="vectors", idx=1:12, main="")
Some plot methods require their output to be printed to display, some
don't. Some help f
Wrap all your calls to plot() with print(). E.g., change
plot(s, type="vectors", idx=1:12, main="")
to
print(plot(s, type="vectors", idx=1:12, main="")
Some plot methods require their output to be printed to display, some
don't. Some help files for plot methods mention this requirement,
so
On 07/19/2014 01:25 PM, Duncan Murdoch wrote:
On 19/07/2014, 5:41 AM, Ingo Wardinski wrote:
Hello,
I try to plot some results of an analysis to multiple individual
postscript files, like:
postscript("A1_zonflow.ps",onefile=F)
plot(s, type = "vectors", idx = 1:12,main="")
dev.off()
#
On 19/07/2014, 5:41 AM, Ingo Wardinski wrote:
> Hello,
> I try to plot some results of an analysis to multiple individual
> postscript files, like:
>postscript("A1_zonflow.ps",onefile=F)
>plot(s, type = "vectors", idx = 1:12,main="")
>dev.off()
> #
>postscript("vectors_paired_zonfl
Hello,
I try to plot some results of an analysis to multiple individual
postscript files, like:
postscript("A1_zonflow.ps",onefile=F)
plot(s, type = "vectors", idx = 1:12,main="")
dev.off()
#
postscript("vectors_paired_zonflow.ps",onefile=F)
plot(s, type = "paired", idx = 1:12,plot.con
5 matches
Mail list logo