I currently have R version 3.2.2 with DiagrammeR
R package. I get these two errors when trying to run the following code:
library(DiagrammeR)
nodes <- create_nodes(nodes = seq(uniquenodes),
type = "number",
label = uniquenodes)
Error: could not find function "create_nodes"
edges <- create_edges(from = match(df$col1, uniquenodes),
to = match(df$col2,uniquenodes),
rel = "related")
Error: could not find function "create_edges"