heatmap
Heatmap visualization with row/column labels.
Syntax
Section titled “Syntax”h = heatmap(C)h = heatmap(T)h = heatmap(C, xlabels, ylabels, ...)Description
Section titled “Description”Renders a heatmap of matrix C (or table T). Cells are colored according to value; row and column labels appear on the axes. Useful for tabular data exploration.
Example
Section titled “Example”heatmap(correlation_matrix, var_names, var_names)