R | pheatmap: Error in convert_annotations(annotation_col, annotation_colors) : Factor levels on var

> pheatmap(e2,cluster_rows = F,cluster_cols = F,scale = "row",
+          border_color = NA,
+          gaps_row = cumsum(as.numeric(table(imd[rownames(e2),2]))),
+          annotation_col = ac,annotation_colors = acs,annotation_row = ar)
Error in convert_annotations(annotation_row, annotation_colors) : 
  Factor levels on variable check do not match with annotation_colors

做热图的时候这样报错了,现在暂时还不知道要怎么办。

更新:

已经知道为什么了。因为check里的rownames输错了。。大家一定要注意。。NA后面加空格。。。“NA ”

还有颜色一定要加#。。

你可能感兴趣的:(r语言,开发语言)