Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法向使用 R 中的 networkD3 包创建的图形添加键?我的图表是使用以下方法创建的:
g1 <- simpleNetwork(df) ; htmltools::html_print(g1, viewer = utils::browseURL)
目前尚不清楚您的需求是什么。但是如果你可以使用 forceNetwork() 而不是 simpleNetwork() (来自同一个包),它有一个 legend = 参数。数据结构需要进行一些转换——您需要在一个数据帧中定义节点,在另一个数据帧中定义链接/边。链接需要是与节点数据框中的行相关的数字,从零开始。