Nothing
#' Saves/writes a figure image.
#'
#' Writes a figure image to file and returns the file name.
#'
#' @param aFigure The \code{EBImage} figure.
#' @param file Name and location of file to save. Supports .jpg, .png, and
#' .tiff image formats.
#' @return Vector of file names.
#'
#' @seealso \code{\link{figure_read}}
#'
#' @export
figure_write <- function (aFigure,
file = NULL) {
# if EBImage not installed, do it
.metagearDependencies("EBImage")
# save EBImage to file
return (EBImage::writeImage(aFigure, file))
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.