# Copyright 2019 Province of British Columbia
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and limitations under the License.
#' @title Write all data frames and plots from a list of objects into a directory
#'
#' @description Write a list of tables (data frames) and plots (\code{ggplots}; as used by \code{fasstr}) into a directory. Objects
#' that are not class "data.frame" or "gg" will not be saved. Each table and plot will be named by the object name in the list.
#'
#' @param list List of data frames and plots to write to disk.
#' @param folder_name Name of folder to create on disk (if it does not exist) to write each plot from list.
#' If using \code{combined_pdf} argument, then it will be the name of the PDF document.
#' @param table_filetype Table file type to write. One of \code{'csv'}, \code{'xls'}, or \code{'xslx'}.
#' @param plot_filetype Image type to write. One of \code{'png'}, \code{'eps'}, \code{'ps'}, \code{'tex'}, \code{'pdf'}, \code{'jpeg'},
#' \code{'tiff'}, \code{'bmp'}, or \code{'svg'}. Image type will be overwritten if using \code{combined_pdf} is used.
#' @param width Numeric plot width in \code{units}. If not supplied, uses the size of current graphics device.
#' @param height Numeric plot height in \code{units}. If not supplied, uses the size of current graphics device.
#' @param units Character string plot height and width units, one of \code{'in'}, \code{'cm'}, or \code{'mm'}. Default \code{'in'}.
#' @param dpi Numeric resolution of plots. Default \code{300}.
#'
#' @examples
#' \dontrun{
#'
#' # Working examples:
#'
#' # Example list of tables and plots to save
#' frequency <- compute_annual_frequencies(station_number = "08NM116")
#'
#' # Write objects in a folder
#' write_objects_list(list = frequency,
#' folder_name = "Frequency Analysis",
#' table_filetype = "xlsx",
#' plot_filetype = "png")
#'
#' }
#' @export
write_objects_list <- function(list,
folder_name,
table_filetype,
plot_filetype,
width,
height,
units = "in",
dpi = 300){
# ARGUMENT CHECKS
# ---------------
if (missing(list)) {
list <- NULL
}
if (missing(table_filetype)) {
table_filetype <- NULL
}
if (missing(plot_filetype)) {
plot_filetype <- NULL
}
if (missing(width)) {
width <- NA
}
if (missing(height)) {
height <- NA
}
if (missing(folder_name))
stop("A folder name is required with the folder_name argument to write all results tables and plots.", call. = FALSE)
# Check list of plots
if (is.null(list)) stop("Must provide a list.", call. = FALSE)
if (!is.list(list)) stop("Object provided is a not a list.", call. = FALSE)
for (i in names(list)) {
if (inherits( list[[i]], what = "data.frame")) {
if (is.null(table_filetype)) stop("Must provide an table type to save using the table_filetype argument. One of 'csv', 'xls', or 'xlsx'.", call. = FALSE)
} else if (inherits(list[[i]], what = "gg")) {
if (is.null(plot_filetype)) stop("Must provide an image type to save using the plot_filetype argument. Once of 'png', 'eps', 'ps', 'tex', 'pdf', 'jpeg', 'tiff', 'bmp', or 'svg'.", call. = FALSE)
if (!plot_filetype %in% c("png", "eps", "ps", "tex", "pdf", "jpeg", "tiff", "bmp", "svg"))
stop("Use of the file types required.", call. = FALSE)
# Check dimensions
if ((!is.na(height) & !is.numeric(height)))
stop("height argument must be numeric.", call. = FALSE)
if (length(height) !=1) stop("Only one height value can be provided.", call. = FALSE)
if ((!is.na(width) & !is.numeric(width)))
stop("width argument must be numeric.", call. = FALSE)
if (length(width) !=1) stop("Only one width value can be provided.", call. = FALSE)
if (length(units) != 1) stop("only one unit type can be provided.", call. = FALSE)
if (!units %in% c("in", "cm", "mm")) stop("Only units of 'in', 'cm', or 'mm' can be provided.", call. = FALSE)
}
}
# SAVE PLOTS
# ----------
# Create a folder of plots
message(paste0("* writing tables and plots in '", folder_name, "' folder"))
# Check if folder exists, create if not
dir.create(folder_name, showWarnings = FALSE)
# Add the slash to folder_name if it doesn't exist
if (!substr(folder_name, nchar(folder_name), nchar(folder_name)) == "/") {
folder_name <- paste0(folder_name, "/")
}
for (i in names(list)) {
if (inherits( list[[i]], what = "gg")) {
suppressMessages(
ggplot2::ggsave(filename = paste0(folder_name, i, ".", plot_filetype),
plot = list[[i]],
width = width,
height = height,
units = units,
dpi = dpi)
)
} else if (inherits(list[[i]], what = "data.frame")) {
suppressMessages(
write_results(data = list[[i]],
file_name = paste0(folder_name, i, ".", table_filetype))
)
} else {
warning(paste0("Object in list, ", as.character(substitute(list)), "$", i, ", is not a ggplot2 or data frame object and was not saved."), call. = FALSE)
}
}
# message(paste0("Successfully created folder ", folder_name, " with all plots and tables."))
message(paste0("* DONE. For files go to: '", normalizePath(folder_name), "'"))
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.