Displaying 1 result from an estimated 1 matches for "indicatormatrix".
2006 Nov 10
3
advanced plotting
!urgent! Hi all. I am facing a problem plotting a indicatormatrix to
visualize the pattern. Matrix consist from 1's and 0's.
for example x <- matrix(c(0,0,1,0, 1,1,1,1, 0,0,0,1, 1,0,1,1), nrow = 4,
ncol=4)
an i want to have a plot like
| .
| . . . .
| .
| . . .
|_______>
I thinking of somethink like a for loop, w...