Can any body suggest a function to plot heat map for upper or lower triangular matrix in R
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
The most basic way to do something like this would be using
which would result in something like this:
You could also investigate the functions |
||||


image(1:10,1:10,M[,10:1])– DWin Jul 30 '11 at 14:45