This is FAQ 7.22.  Lattice functions produce graphic objects, which are not
displayed by default. If you print your graph, you should be fine.  Also,
take a look at the documentation for panel.xyplot.  Using type = c("p", "r")
should make things simpler.
Regards,

Matt Wiener 

-----Original Message-----
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of
[EMAIL PROTECTED]
Sent: Tuesday, October 03, 2006 8:00 AM
To: [email protected]
Subject: [R] postcript file / xyplot function [Broadcast]

Hi,

I  would like save a curve in a postscript file.

It when I use a common "plot" function (plot)

postscript(file="file.eps")
plot(x,y)
dev.off()

It's not working with the  "xyplot" function (lattice package).

postscript(file="Z",height=8,width=8,horizontal=FALSE)
xyplot(data[,3]~data[,2]|data[,1],panel=function(x,y){panel.xyplot(x,y)
COEFF<-coef(lm(log(y)~x))
panel.curve(exp(COEFF[1]+COEFF[2]*x))
dev.off()

Do anyone know how to use the postscript function with a xyplot function ?

Thanks by advance 

Jessica Gervais

        [[alternative HTML version deleted]]

______________________________________________
[email protected] mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.



------------------------------------------------------------------------------
Notice:  This e-mail message, together with any attachments,...{{dropped}}

______________________________________________
[email protected] mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.

Reply via email to