Displaying 1 result from an estimated 1 matches for "filename_a".
Did you mean:
filename_
2003 Sep 18
1
lattice, trellis.device, dev.off() within a condition (seems t o be a bug)
Hi,
I have a strange issue under W2K;
consider these two code extracts:
1)
if(condition a){
trellis.device(png,filename = filename_a,...
xyplot(...
dev.off()
}
2)
if(condition a){
trellis.device(png,filename = filename_a,...
xyplot(...
}
dev.off()
In 1), The png file is generated, but empty; in 2), where I've taken the
dev.off clause out of the condition block, my plot is fine
I've also tried following w...