我正试图从一个数据集创建一个树/本体/树状图(使用gggraph或igraph(,该数据集有三列,因此有三个不同的分支:
df <- data.frame(
parent = c("a", "a", "a", "b", "b", "c"),
child1 = c("ax", "ax", "ay", "bx", "by", "cx"),
child2 = c("ax1", "ax2", "ay1", "bx1", "by1", "cx1")
)
当层次结构有三个级别时,如何创建边列和节点列?
谢谢!
包collapsableTree可用于具有多个节点的树。
collapsibleTree::collapsibleTree(df, hierarchy = c("parent", "child1"), height = 600, width = 600, collapse = FALSE)