You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
qd_dag needs to check for pre-existing labels in nodes with alphanumeric node.ids because these nodes are assigned a label at graph creation (to subscript the number)
For instance:
edges <- c("A1 -> Y") labs <- c("A1" = "Exposure", "Y" = "Outcome" qd_dag(edges, node.labs = labs) %>% render_graph()
will update the Y node's label but not A1's.
The text was updated successfully, but these errors were encountered:
qd_dag needs to check for pre-existing labels in nodes with alphanumeric node.ids because these nodes are assigned a label at graph creation (to subscript the number)
For instance:
edges <- c("A1 -> Y") labs <- c("A1" = "Exposure", "Y" = "Outcome" qd_dag(edges, node.labs = labs) %>% render_graph()
will update the Y node's label but not A1's.
The text was updated successfully, but these errors were encountered: