Towards HEATMAP representation - R -
Posted
by
user3710390
on Stack Overflow
See other posts from Stack Overflow
or by user3710390
Published on 2014-06-05T09:18:47Z
Indexed on
2014/06/05
9:25 UTC
Read the original article
Hit count: 146
I am trying to plot a simple heatmap of some data distribution in R.
My data = matrix (5000 x3( Time , Complexity, Localisation )).
Time ( 0- 7000)
Cmplx (0-4)
Localisation (1-15).
i.e
Time Cmplx Localisation
567 3 1
54 0 2
345 3 12
567 4 12
345 2 9
989 4 7
... ... ...
The idea is to plot the Time in relation to each Cmplx and each Localisation (Something like accumarray in mathlab)
Have someone an idea?
Thanks in advance,
Guillon_
© Stack Overflow or respective owner