hierarchicalHeatMap

Convenience function that creates a hierarchically clustered heat map and, if provided, rearranges your row and column names according to the clustering.

The distance and linkage aliases control the distance and linkage functions for hierarchical clustering. See plot2kill.hierarchical.hierarchicalCluster() for details.

hierarchicalHeatMap
(
alias distance = euclidean
alias linkage = mean
R
)
(
,
string[] rowNames = null
,
string[] colNames = null
)
if (
isInputRange!R &&
isInputRange!(ElementType!R)
&&
is(ElementType!(ElementType!(R)) : double)
)

Meta