d3heatmap - 没有树状图的树状图行名和列名
d3heatmap - dendrogram row names and colnames without dendrogram plot
是否有可能删除树状图并像使用 dendrogram = 'both'
一样保留行名和列名的排序?
例如
d3heatmap(mtcars, colors = 'Blues')
d3heatmap(mtcars, dendrogram = 'none', colors = 'Blues')
两个输出看起来不同,但我想得到与第一个示例相同的图,但没有树状图。可能吗?
试试这个:
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
是否有可能删除树状图并像使用 dendrogram = 'both'
一样保留行名和列名的排序?
例如
d3heatmap(mtcars, colors = 'Blues')
d3heatmap(mtcars, dendrogram = 'none', colors = 'Blues')
两个输出看起来不同,但我想得到与第一个示例相同的图,但没有树状图。可能吗?
试试这个:
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