I have a list of heatmaps
[:HeatMap [column,row] (analyte_value),
:HeatMap [column,row] (analyte_value),
:HeatMap [column,row] (analyte_value),
:HeatMap [column,row] (analyte_value)]
Is there a command to render them all in the notebook, rather than:
(heatmaps[0] + heatmaps[1] + heatmaps[2] + heatmaps[3]).cols(1)
?