Re: [R] Bug in gap.plot

2008-07-25 Thread Carl Witthoft
Jim L: I tried your example under R 2.2.1, and sure enough it plotted points on the right-hand section. Sounds like a bug that got fixed in the newer versions. (BTW, I get a warning from plotrix about being built under 2.7, but it does seem to execute OK under 2.2.1). -- example used was

Re: [R] Bug in gap.plot

2008-07-25 Thread Jim Lemon
On Thu, 2008-07-24 at 20:19 -0700, Arthur Roberts wrote: > Hi, all > > I am trying to make a plot with a axis break and I want the whole plot > to be line, not points. However, when I execute the following command > half of the graph is points and the other lines. > > gap.plot(Xdata, Ydata,g

Re: [R] Bug in gap.plot

2008-07-25 Thread Uwe Ligges
This is a bug in that function which does not respect the type="" argument in the subsequent call to points() inetrnally. Please report such bugs in functions of contributed packages to the corresponding package maintainer. Best wishes, Uwe Ligges Arthur Roberts wrote: Hi, all I am trying

[R] Bug in gap.plot

2008-07-24 Thread Arthur Roberts
Hi, all I am trying to make a plot with a axis break and I want the whole plot to be line, not points. However, when I execute the following command half of the graph is points and the other lines. gap.plot(Xdata, Ydata,gap=c(5,6),gap.axis="x",type="l") I think it might be a bug in plotri