Is there a way to remove the legend of tar_glimpse()? [help] #1497
-
Help
DescriptionI'm using the DAGs generated by Thank you all in advance! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
|
graph <- tar_glimpse()
graph$x$legend <- NULL
print(graph)If you're generating graphs to document your project, then static visuals from |
Beta Was this translation helpful? Give feedback.
tar_visnetwork()has no argument to remove the legend, but you can do something like this:If you're generating graphs to document your project, then static visuals from
tar_mermaid()are another nice option.tar_mermaid()does support alegendargument.