Thanks, but this proposal has the same effect as type="b" in
panel.xyplot, which as noted in the documentation is the same as
type="o". To clarify, I don't want type="o" at all; I want there to be
gaps between the lines and points. Have a look at

plot(y~x,data=dat,type="b")

to see what I mean.

Ben

ronggui wrote:

>> apropos("^panel")
>
> will show you what panel function exist.It seems that panel.points
> plus panel.lines are what you want.
>
>> dat<-data.frame(x=1:10,y=1:10,z=sample(letters[1:3],10,T))
>> xyplot(y~x | z, data = dat,pan=function(x,y,...)
>> {panel.points(x,y,...);panel.lines(x,y,...)})
>
>
>
>
>
>
> 2006/6/21, Benjamin Tyner <[EMAIL PROTECTED]>:
>
>> Is there any way to have xyplot produce the "points connected by lines"
>> analogous to the effect of type="b" under standard graphics? I seem to
>> recall doing this in xyplot at one point.
>>
>> Thanks,
>> Ben
>>
>> ______________________________________________
>> [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
>>
>
>

______________________________________________
[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

Reply via email to