Re: [R] suggestions for plotting 5000 data points

2008-10-03 Thread Uwe Ligges
Typical suggestions would be to sample from the data or use alpha blending (translucency). Best wishes; uwe Ligges Tania Oh wrote: Dear all, I have a collection of 5000 entries which represent the evolutionary rates of 3 animals. I would like to show the differences between the rates of a

Re: [R] suggestions for plotting 5000 data points

2008-10-03 Thread Tania Oh
sorry, I made a slight typo in the code below, it should be mat3 <-matrix(sample(1:5000),nrow=5000,ncol=3, byrow=TRUE) colnames(mat3) <- c("human","mouse", "chicken") mat3 <-data.frame(mat3) mat3$model <- factor( rep( "Model 3"), labels="model3") ## code I used for parallel require(lattice)

[R] suggestions for plotting 5000 data points

2008-10-03 Thread Tania Oh
Dear all, I have a collection of 5000 entries which represent the evolutionary rates of 3 animals. I would like to show the differences between the rates of all 3 animals and have tried using the function parallel (from the lattice package) and pairs() function. The parallel function wo