是否有可能删除树形图并保留rownames和colnames的顺序,就像它与dendrogram = 'both'
一样?
E.g。
d3heatmap(mtcars, colors = 'Blues')
d3heatmap(mtcars, dendrogram = 'none', colors = 'Blues')
两个输出看起来都不一样,但我希望得到与没有树形图的第一个例子中相同的图。有可能吗?
答案 0 :(得分:1)
试试这个:
a <- d3heatmap(mtcars, dendrogram = 'both', colors = 'Blues')
b <- d3heatmap(mtcars, dendrogram = 'none', colors = 'Blues')
b$x$matrix <- a$x$matrix
b$x$image <- a$x$image
b