d3heatmap - 没有树形图的树形图行名和列

时间:2016-07-29 16:25:30

标签: r d3heatmap

是否有可能删除树形图并保留rownames和colnames的顺序,就像它与dendrogram = 'both'一样?

E.g。

d3heatmap(mtcars, colors = 'Blues')


d3heatmap(mtcars, dendrogram = 'none', colors = 'Blues')

两个输出看起来都不一样,但我希望得到与没有树形图的第一个例子中相同的图。有可能吗?

1 个答案:

答案 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