[R] Identify function with matplot
Uwe Ligges
ligges at statistik.uni-dortmund.de
Fri Jul 29 11:31:39 CEST 2005
Hari Iyer wrote:
> Hello
> Is there a way to use the "identify" function with "matplot" ?
Not directly, but you can write a wrapper for the particular case as in:
sines <- outer(1:20, 1:4, function(x, y) sin(x / 20 * pi * y))
matplot(sines, pch = 1:4, type = "o", col = rainbow(ncol(sines)))
identifyMat <- function(x, ...){
label <- paste(row(x), ", ", col(x), sep="")
identify(row(x), x, labels=label, ...)
}
identifyMat(sines)
Uwe Ligges
> Thanks.
> Hari
>
> ______________________________________________
> R-help at stat.math.ethz.ch mailing list
> https://stat.ethz.ch/mailman/listinfo/r-help
> PLEASE do read the posting guide! http://www.R-project.org/posting-guide.html
More information about the R-help
mailing list