Skip to content
Prev 73600 / 398498 Next

plot the number of replicates at the same point

You can do the following (don't know it this is the most efficient way but
it works)

temp<-read.table("your file to read the data", header=T)
temp1<-table(temp)
plot(temp$x, temp$y, cex=0)
text(as.numeric(rownames(temp1)), as.numeric(colnames(temp1)), temp1)

HTH
On Wed, 13 Jul 2005, Kerry Bush wrote: