This function is deprecated, use save_image() instead.
orca(
p,
file = "plot.png",
format = tools::file_ext(file),
scale = NULL,
width = NULL,
height = NULL,
mathjax = FALSE,
parallel_limit = NULL,
verbose = FALSE,
debug = FALSE,
safe = FALSE,
more_args = NULL,
...
)
orca_serve(
port = 5151,
mathjax = FALSE,
safe = FALSE,
request_limit = NULL,
keep_alive = TRUE,
window_max_number = NULL,
quiet = FALSE,
debug = FALSE,
more_args = NULL,
...
)a plotly object.
output filename.
the output format (png, jpeg, webp, svg, pdf, eps).
Sets the image scale. Applies to all output images.
Sets the image width. If not set, defaults to layout.width value.
Applies to all output images.
Sets the image height. If not set, defaults to layout.height value.
Applies to all output images.
whether or not to include MathJax (required to render TeX).
If TRUE, the PLOTLY_MATHJAX_PATH environment variable must be set and point
to the location of MathJax (this variable is also used to render TeX in
interactive graphs, see config).
Sets the limit of parallel tasks run.
Turn on verbose logging on stdout.
Starts app in debug mode and turn on verbose logs on stdout.
Turns on safe mode: where figures likely to make browser window hang during image generating are skipped.
additional arguments to pass along to system command. This is useful
for specifying display and/or electron options, such as --enable-webgl or --disable-gpu.
for orca(), additional arguments passed along to processx::run. For
orca_serve(), additional arguments passed along to processx::process.
Sets the server's port number.
Sets a request limit that makes orca exit when reached.
Turn on keep alive mode where orca will (try to) relaunch server if process unexpectedly exits.
Sets maximum number of browser windows the server can keep open at a given time.
Suppress all logging info.
The orca_serve() function returns an object with two methods:
export(p, file = "plot.png", format = tools::file_ext(file), scale = NULL, width = NULL, height = NULL)Export a static image of a plotly graph. Arguments found here are the same as those found in orca()
close()Close down the orca server and kill the underlying node process.
The orca_serve() function returns an object with two fields:
portThe port number that the server is listening to.
processAn R6 class for controlling and querying the underlying node process.
if (FALSE) { # \dontrun{
# NOTE: in a headless environment, you may need to set `more_args="--enable-webgl"`
# to export webgl correctly
p <- plot_ly(z = ~volcano) %>% add_surface()
orca(p, "surface-plot.svg")
#' # launch the server
server <- orca_serve()
# export as many graphs as you'd like
server$export(qplot(1:10), "test1.pdf")
server$export(plot_ly(x = 1:10, y = 1:10), "test2.pdf")
# the underlying process is exposed as a field, so you
# have full control over the external process
server$process$is_alive()
# convenience method for closing down the server
server$close()
# remove the exported files from disk
unlink("test1.pdf")
unlink("test2.pdf")
} # }