This is a test version of Biostars. For the public version, visit https://www.biostars.org.
Error in Heat map

I'm using the ComplexHeatmap library and getting an error with the following code:

library(ComplexHeatmap)    

Heatmap(my_matrix, cluster_columns=FALSE,
         row_names_side = "left",
         row_hclust_side = "left",
         row_names_gp=gpar(cex=fontsize))

Error in Heatmap(my_matrix, cluster_columns = FALSE, row_names_side = "left",  : 
  unused argument (row_hclust_side = "left")
complexheatmap

Please use "Code sample" button (See the image) to indicate your code in a post. The error is self-explanatory and it says you got an unused argument "row_hclust_side = "left" . Proceed with your code while removing/correcting unused arguments.

enter image description here

1 answer

Use row_dend_side instead of row_hclust_side

Log in to answer this question.