search for: avgmatrix

Displaying 1 result from an estimated 1 matches for "avgmatrix".

Did you mean: a_matrix
2010 Apr 23
2
3D Plot
...>I can make a 2D Heatmap of this matrix.<br /><br />My question:<br />Can I also make a 3D Heatmap of this matrix - so the third parameter should the value in the matrix.<br /><br />My first thought was :<br />&gt; mat &lt;- read.table(file = &quot;AvgMatrix.mat&quot;)<br />&gt; x &lt;-as.matrix(mat)<br />&gt; hv &lt;- heatmap.2 (x, col=topo.colors, Colv = NA, Rowv = NA, main=&quot;AvgMatrix&quot;, xlab=&quot;Columns&quot;, ylab=&quot;Rows&quot;, key=TRUE, trace = &quot;none&quot;)<br /...