Replies: 2 comments 1 reply
-
You could use library(targets)
library(visNetwork)
tar_visnetwork() |>
visOptions(width = "800px", height = "800px") |
Beta Was this translation helpful? Give feedback.
-
What timing. I was literally wondering about sizing the network, but @pvtodorov beat me to it. I am wondering if there is a way to make the network flip to "horizontal"? I have a very "tall" pipeline at the moment, and it might be more aesthetic and easier to view the pipeline in its entirety if the pipeline was oriented horizontal such that progress through the pipeline is from top to bottom, rather than left to right. This would look better on a standard widescreen computer monitor, I think. Thoughts, @wlandau? |
Beta Was this translation helpful? Give feedback.
-
Hi, I am working in a jupyter notebook using IRKernel. I normally use
options(repr.plot.width=15, repr.plot.height=15)
to set the rendered size of ggplot2 outputs but this does not work for the HTML widget output bytar_visnetwork()
and I can't seem to figure out the right params to pass to change its size. Is there a way to do it?Beta Was this translation helpful? Give feedback.
All reactions