Атрибут метки узла DiagrammeR (style = "заливка" не работает) - PullRequest
0 голосов
/ 14 сентября 2018

Я хочу создать граф с узлами, помеченными.Однако, когда метка узла длинная, внутренняя часть узла не заполняется, даже если я использую style="filled"

Вот мой код и вывод:

# Create an ndf with distinct labels and
# additional node attributes (where their classes
# will be inferred from the input vectors)
node_df <-
  create_node_df(
    n = 4,
    type = "a",
    label = c(23843333, 3333942, 836332, 21943333),
    style = "filled",
    color = "aqua",
    shape = c("circle", "circle",
              "rectangle", "rectangle"),
    value = c(3.5, 2.6, 9.4, 2.7))

# Display the node data frame
node_df
# }



# Create an edf with additional edge
# attributes (where their classes will
# be inferred from the input vectors)
edf <-
  create_edge_df(
    from = c(1, 2, 3, 4),
    to = c(4, 3, 1, 1),
    rel = "a",
    length = c(50, 100, 250, 100),
    color = "green",
    width = c(1, 5, 2, 3))

# Display the edge data frame
edf
# }

g <- create_graph(nodes_df = node_df, edges_df = edf)
render_graph(g)

Вывод графика

...