Re: [R] Difference between xyplot() and plot()

2011-10-28 Thread Jörg Reuter
Thanks, i have it now: library(lattice) mein.panel <- function(x, y){ panel.xyplot(x, y) panel.abline(a=0, b=1, lwd=2, col="red")} x<-c(1,2,3,4,5,6) y<-x xyplot(x ~ y, main = "xyplot", xlab="Sequenz 2", ylab="Sequenz 1", las=1, panel=mein.panel) 2011/10/28 S Ellison : > > >> From:  Jörg

Re: [R] Difference between xyplot() and plot()

2011-10-28 Thread S Ellison
> From: Jörg Reuter > > Why > is the line with xyplot() not always in the middle of the > dots like plot()? Because you used the base graphics command abline() on a lattice plot? They don't mix. The plot regions are different for lattice and base graphics - notice that the second abline

[R] Difference between xyplot() and plot()

2011-10-28 Thread Jörg Reuter
Hi, I draw two Plots, one with xyplot() and one with plot(). Why is the line with xyplot() not always in the middle of the dots like plot()? library(lattice) x<-c(1,2,3,4,5,6) y<-x plot.new() plot(x ~ y, main = "Sequenz 1 und Sequenz 2", xlab="Sequenz 2", ylab="Sequenz 1", las=1) abline(a=0, b=1,c