4

我正在尝试在 DiagrammeR 中使用 GraphViz 图。我怎样才能做到这一点?

myGraph = grViz("
digraph boxes_and_circles {

  # a 'graph' statement
  graph [overlap = true, fontsize = 10]

  # several 'node' statements
  node [shape = box,
        fontname = Helvetica]
  A; B; C; D; E; F

  node [shape = circle,
        fixedsize = true,
        width = 0.9] // sets as circles
  1; 2; 3; 4; 5; 6; 7; 8

  # several 'edge' statements
  A->1 B->2 B->3 B->4 C->A
  1->D E->A 2->4 1->5 1->F
  E->6 4->6 5->7 6->7 3->8
}
")

然后我想在 DiagrammeR 中使用它,但它不允许。

render_graph(myGraph)

给出:

Error: class(graph) == "dgr_graph" are not all TRUE

我需要将 GraphViz 图转换或输入到 DiagrammeR 环境中吗?

4

2 回答 2

4

grViz 接受一个描述图形的字符串(vis.js 样式):它是由 vis.js 解释的。它的返回值是一个 htmlwidget 对象。

render_graph 接受一个使用 create_graph 函数创建的 dgr_graph 对象。

您可以在 DiagrammeR 文档中看到

library(DiagrammeR)

# Create a simple NDF
nodes <-
  create_nodes(
    nodes = 1:4,
    type = "number")

# Create a simple EDF
edges <-
  create_edges(
    from = c(1, 1, 3, 1),
    to = c(2, 3, 4, 4),
    rel = "related")

# Create the graph object,
# incorporating the NDF and
# the EDF, and, providing
# some global attributes
graph <-
  create_graph(
    nodes_df = nodes,
    edges_df = edges,
    graph_attrs = "layout = neato",
    node_attrs = "fontname = Helvetica",
    edge_attrs = "color = gray20")

# View the graph
render_graph(graph)

DiagrammeR 可以生成 Graphviz 代码:来自下面提到的文档:“如果您想返回 Graphviz DOT 代码(也许,共享它或直接与 Graphviz 命令行实用程序一起使用),只需使用 output = “DOT “在 render_graph() 中”

所以

  1. 您可以使用 create_graph 生成 graphviz 点代码
  2. 您可以在 DiagrammeR 中直接将 graphviz 点代码与 grViz 一起使用
于 2016-08-25T06:07:00.057 回答
0

这里的问题是render_graph(myGraph),使用myGraph就像魅力一样。

library(DiagrammeR)

myGraph = grViz("
digraph boxes_and_circles {

  # a 'graph' statement
  graph [overlap = true, fontsize = 10]

  # several 'node' statements
  node [shape = box,
        fontname = Helvetica]
  A; B; C; D; E; F

  node [shape = circle,
        fixedsize = true,
        width = 0.9] // sets as circles
  1; 2; 3; 4; 5; 6; 7; 8

  # several 'edge' statements
  A->1 B->2 B->3 B->4 C->A
  1->D E->A 2->4 1->5 1->F
  E->6 4->6 5->7 6->7 3->8
}
") 

myGraph

render_graph(myGraph)在 R 中不起作用。

只是myGraph工作正常。

于 2020-11-11T13:24:17.930 回答