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")
• 1,463 views
•
link
1 answer
Use row_dend_side instead of row_hclust_side
• 0 views
•
link
Log in to answer this question.
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.