n=10
x=rnorm(n)
y=rnorm(n)
z=seq(n)
w=sample(rep(c("A","B"),each=n/2))
# Shouldn't the colours used for the two 'lines' be identical here?
qplot(x,y,colour=z,geom="line",group=w,size=I(2))
# Shouldn't the colours used for the two 'lines' be identical here?
qplot(x,y,colour=z,geom="path",group=w,size=I(2))
# And using alpha now causes a problem with geom_line too,
# not just with geom_path, as in my previous bug report
qplot(x,y,alpha=z,geom="line",group=w,size=I(2))
qplot(x,y,alpha=z,geom="path",group=w,size=I(2))
--
Karl Ove Hufthammer
> # Shouldn't the colours used for the two 'lines' be identical here?
> qplot(x,y,colour=z,geom="line",group=w,size=I(2))
No, of course they shouldn't. Ignore this comment. The following
problem is real, though.
> # And using alpha now causes a problem with geom_line too,
> # not just with geom_path, as in my previous bug report
> qplot(x,y,alpha=z,geom="line",group=w,size=I(2))
> qplot(x,y,alpha=z,geom="path",group=w,size=I(2))
--
Mvh.
Karl Ove Hufthammer