0

是否有可能删除树状图并保持行名和列名的排序,就像它使用的那样dendrogram = 'both'

例如

d3heatmap(mtcars, colors = 'Blues')


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

两个输出看起来不同,但我想获得与第一个示例相同的图,但没有树状图。可能吗?

4

1 回答 1

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
于 2016-07-29T17:41:00.853 回答