Hi RuReady,
With this little script,
t=seq(0,10,0.1)
y=sin(t)
plot(t,y,type="l", xlab="time", ylab="Sine wave")
library(ggplot2)
qplot(t,y,geom="path", xlab="time", ylab="Sine wave")
I tested the library ggplot2 and got the expected result.
Any other way of knowing if everything is fine with the library ggplot2?