标签: r graph tree
我正试图在R
This is what I expect
这是我的代码(我正在使用库“data.tree”):
library(data.tree) a <- Node$new("a") b <- Node$new("b") c <- Node$new("c") d <- Node$new("d") a$AddChildNode(b) a$AddChildNode(c) b$AddChildNode(d) c$AddChildNode(d) plot(a)
But this is what I got