Hi
Andrej Kastrin wrote: > Dear useRs, > > I have 4×4 symmetrical matrix ; then I use > > image(log(my.matrix)) to visualise it. > > Is there any 'simple' way to add text labels into each cell lie on > diagonal of the image plot? Thanks for any pointers... Do you mean something like ...? m <- matrix(rnorm(100), ncol=10) image(m) text(0:9/9, 0:9/9, 0:9) Paul -- Dr Paul Murrell Department of Statistics The University of Auckland Private Bag 92019 Auckland New Zealand 64 9 3737599 x85392 [EMAIL PROTECTED] http://www.stat.auckland.ac.nz/~paul/ ______________________________________________ [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
