Displaying 4 results from an estimated 4 matches for "epsfile".
Did you mean:
depsfile
2002 Oct 30
4
PDF printer using ps2pdf ?
Hi,
Is it possible to set up a printer in samba
that will use ps2pdf converter to create pdf documents when printing on it ?
Best Regards
Steph
2006 Aug 10
1
How to speed up nested for loop computations
...es4<-res3[res3$time==min(res3$time),]
if (nrow(res4)>1)
{
res4<-res4[1,]
}
if (nrow(res4)==1)
{
res4$best<-(res4$best*100/optimal_values[optimal_values
$instance==linstance[i],]$optimum)-100
print(res4)
bestalgo<-rbind(bestalgo,res4)
}
}
}
epsfile=paste(linstance[i],"_100_lim.eps",sep="")
postscript(file=epsfile,onefile=TRUE,horizontal=TRUE)
l<-split(bestalgo$best,list(bestalgo$idalgo))
par(mar=c(5,5,5,3),cex.axis=0.7,las=2,mgp=c(4, 1, 0))
title_plot=paste("100 iterations - instance ",linstance[i],sep=&qu...
2006 Apr 10
2
Legend in the outer margin
...ht margin.
From the help archive, I found that it can be done by setting
par(xpd=NA). However, I couldn't find the correct values
for x and y co-ordinates for the legend. Please find the code snippet below:
par(mfrow=c(3,3), mar=c(4,4,0.9,0.5), oma=c(1,2,2,4),cex.main=1.1)
*postscript(*file=epsfile,onefile=FALSE,horizontal=TRUE*)*
/* some plotting */
par(xpd=NA)
legend(legend=c("2h-opt Exact","1-shift Exact","2p-opt Exact"),
lty=c("solid","dashed","dotdash"),lwd=c(2,2,2),col=c("red","green","black"),...
2003 Jun 05
1
dev.copy2eps: Why did the colors come into my postscript output?
...,width=3.5)
I was surprised that the output in the eps file included the colored
lines from the plot, even though the screen device was set to "gray" and
on screen I did not see colors.
I put some of the eps files up here, so you can see what I mean:
http://lark.cc.ku.edu/~pauljohn/R/epsfiles
And if you don't have an eps viewer handy, I made png versions, since
all browsers seem to show them.
http://lark.cc.ku.edu/~pauljohn/R/pngfiles/
The docs indicate that the x11 device is being copied, but I rather
think that a plot object that exists "behind" the x11 device is b...