
Last chance! 50% off unlimited learning
Sale ends in
Apply multiple DiagrammeR global graph attributes
apply_graph_theme(dctGraph, ...)
The DiagrammeR::DiagrammeR graph.
The DiagrammeR::DiagrammeR graph to apply the attributes to.
One or more character vectors of length three, where the first element is
the attribute, the second the value, and the third, the attribute type (graph
,
node
, or edge
).
exampleSpec <-
system.file("inst",
"extdata",
"example_dct_spec_1.dct",
package="psyverse");
parsedSpecs <- load_dct_specs(exampleSpec);
dctGraph <- parsedSpecs$output$basic_graph;
dctGraph <- apply_graph_theme(dctGraph,
c("color", "#0000AA", "node"),
c("fillcolor", "#00FFFF", "node"));
Run the code above in your browser using DataLab