David Lloyd wrote:
> I have code like this: - 
> 
> #-----------------------------------------------------------------------
> ------------------------------------------------------
> 
> x=scan()
> 0 0 0 0 0 1 2 3 4
> 
> y=scan()
> 1 1 1 2 2 1 3 4 5
> 
> plot(x,y)
> 
> identify(0,1,3) #Allows me to select manually to identify co-ordinate
> (0,1) as being duplicated 3 times
> identify(0,2,2) #Allows me to select manually to identify co-ordinate
> (0,2) as being duplicated 2 times
> #-----------------------------------------------------------------------
> ------------------------------------------------------
> 
> Is there not a way I can automatically display if points are duplicated
> and by how many times?
> 
> I thought if I 'jittered' the points ever so slightly I could get an
> idea of how many duplicates there are but with >100 points the graph
> looks very messy.

  You might consider using alpha transparency - the more times a point
is duplicated the darker it will be.  For example:

df <- data.frame(x=c(0, 0, 0, 0, 0, 1, 2, 3, 4),
                 y=c(1, 1, 1, 2, 2, 1, 3, 4, 5))

pdf("alphaExample.pdf", version = "1.4", width = 6, height = 6)

with(df, plot(x,y, col=rgb(1,0,0,.3), pch=16))

dev.off()

RSiteSearch("alpha transparency")

> Regards
> DaveL
> 
> 
> 
> 
> 
> 
> 
> 
> Click for free info on getting an MBA and make $200K/ year
> 
> 
> 
> 
> Need cash? Click to get a payday loan
> <http://tagline.bidsystem.com/fc/CAaCDCZ60nyjrrOboFeUJgRjigwgNftK/> 
> 
> 
> 
> <span id=m2wTl><p><font face="Arial, Helvetica, sans-serif" size="2" 
> style="font-size:13.5px">_______________________________________________________________<BR>Get
>  the Free email that has everyone talking at <a 
> href=http://www.mail2world.com target=new>http://www.mail2world.com</a><br>  
> <font color=#999999>Unlimited Email Storage &#150; POP3 &#150; Calendar 
> &#150; SMS &#150; Translator &#150; Much More!</font></font></span>
>       [[alternative HTML version deleted]]
> 
> ______________________________________________
> [email protected] mailing list
> https://stat.ethz.ch/mailman/listinfo/r-help
> PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
> and provide commented, minimal, self-contained, reproducible code.

-- 
Chuck Cleland, Ph.D.
NDRI, Inc.
71 West 23rd Street, 8th floor
New York, NY 10010
tel: (212) 845-4495 (Tu, Th)
tel: (732) 512-0171 (M, W, F)
fax: (917) 438-0894

______________________________________________
[email protected] mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.

Reply via email to