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.
Answered by
wlandau
May 29, 2025
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.
1 reply
Answer selected by
williamorim
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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 alegend
argument.