#' plot the accuracy of scenarios
#'
#' @param object an object of class "VernaBotaSims"
#' @param ... other arguments passed to or from other methods
#'
#' @return a ggplot of the accuracy of the different scenarios
#'
#' @export
#'
#' @importFrom ggplot2 autoplot
#'
autoplot.VernaBotaSims <- function(object, ...)
{
d <- data.frame(accuracy = unlist(object@pc_results),
scenario = rep(letters[1:length(object@pc_results)],times = sapply(object@pc_results,length)))
ggplot(d,aes(x = scenario, y = accuracy, color = scenario)) +
geom_boxplot()
}
#' @export
ggplot2::autoplot
#' plot the accuracy of scenarios
#'
#' @param x an object of class "VernaBotaSims"
#' @param ... other arguments passed to or from other methods
#'
#' @export
#'
#' @importFrom graphics plot
#'
#' @importFrom graphics boxplot
#'
plot.VernaBotaSims <- function(x, ...)
{
d <- data.frame(accuracy = unlist(x@pc_results),
scenario = rep(letters[1:length(x@pc_results)],times = sapply(x@pc_results,length)))
boxplot(accuracy~scenario, data=d)
}
#' @export
graphics::plot
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.