Your tips heave been very helpful. I tried Plotrix package and it seems
to handle the job.
Thank you all for your help!
Gonçalo
baptiste auguie wrote:
geom_path in ggplot2 is another option, see two examples on this page:
http://had.co.nz/ggplot2/geom_path.html
HTH,
baptiste
2009/8/21 J
geom_path in ggplot2 is another option, see two examples on this page:
http://had.co.nz/ggplot2/geom_path.html
HTH,
baptiste
2009/8/21 Jim Lemon :
> Gonçalo Graça wrote:
>>
>> Hi! I'm not experienced very experienced with R and i'm looking for a way
>> doing plots like in this example
>> http:
Gonçalo Graça wrote:
Hi! I'm not experienced very experienced with R and i'm looking for a
way doing plots like in this example
http://www.mathworks.de/matlabcentral/fx_files/23566/2/color_line3.png,
which basically it is a 2d plot in which the 3rd dimension (variable)
is color coded. I have o
Have a look at the ggplot2 package. You will find a lot of examples at
http://had.co.nz/ggplot2/
library(ggplot2)
dataset <- data.frame(x = seq(-1, 1, length = 101))
dataset$y <- dataset$x + dataset$x^2
dataset$z <- 10 * dataset$x + 1
ggplot(dataset, aes(x = x, y = y, colour = z)) + geom_point()
4 matches
Mail list logo