我正在尝试使用this awesome D3 layout来显示群集树!但是,它需要JSON格式的数据 - 如何从R中的hclust-object
转换为分层JSON结构?
set.seed(123)
m <- matrix(runif(100), nrow=10)
cl <- hclust(dist(m))
plot(cl)
我的谷歌搜索出现了这个hclustToTree函数,它返回一个看起来很有希望的列表 - 但我真的不知道从那里去哪里。任何建议都将不胜感激。
halfway <- hclustToTree(cl)
答案 0 :(得分:1)
你快到了:
jsonTree <- toJSON(halfway) # part of the RJSONIO library