Skip to content

sort list

4 messages · R. Michael Weylandt, sybil kennelly

#
What sort of plot are you using? I'm not really clear on what your
data as a whole look like: if you use dput() you can create a
representation and we can work from there.

In addition to the resources Josh recommended, the following sites can
direct you to all sorts of graphical goodies, all of which come with
source code (though at the latter site, they are often a little
complicated):

http://had.co.nz/ggplot2/
http://addictedtor.free.fr/graphiques/

Michael

On Wed, Mar 14, 2012 at 10:13 AM, sybil kennelly
<sybilkennelly at gmail.com> wrote:
#
Errr...I'm still not sure how plot(table) gives you read and green
points, but it sounds like the easiest thing to do would be to use the
points() function to come back in and put new green points over the
red ones. E.g.

plot(runif(5000), runif(5000))
points(c(0.5, 0.25), c(0.5, 0.75), col = 2, pch = 19, cex = 2)

Perhaps you can give us a hint of your data with

dput(head(table, 30))

Please give us that rather than copy and pasting the printed output of
table: it's easier (and more precise) for us to reproduce your data
since dput keeps the internal structure.

Michael
On Wed, Mar 14, 2012 at 7:44 PM, sybil kennelly <sybilkennelly at gmail.com> wrote: