Nothing
#' @title Plot island species-through-time (STT) plots
#' @description Produces STT plots. If only one type of species is present in
#' the simulated islands, STT is plotted for all species. If two types are
#' present, three plots are produced: STT for all, STT for type 1 and STT
#' for type 2.
#'
#' R plots with number of total, endemic and non-endemic STTs for different
#' types of species for the entire time span the islands were simulated.
#' 2.5-97.5th percentiles are plotted in light grey, 25-75th percentiles
#' plotted in dark grey.
#'
#' @inheritParams default_params_doc
#'
#' @return R plot.
#' @author Luis Valente
#' @seealso \code{\link{DAISIE_sim_cr}},
#' \code{\link{DAISIE_sim_time_dep}},
#' \code{\link{DAISIE_sim_cr_shift}}, \code{\link{DAISIE_format_CS}}
#' @references Valente, L.M., A.B. Phillimore and R.S. Etienne (2015).
#' Equilibrium and non-equilibrium dynamics simultaneously operate in the
#' Galapagos islands. Ecology Letters 18: 844-852.
#' @keywords models
#' @export
#' @examples
#'
#'
#' ### Plot islands with single process (only one type of species)
#' utils::data(islands_1type_1000reps)
#' DAISIE_plot_sims(
#' island_replicates = islands_1type_1000reps
#' )
#'
#'
#' ### Plot island with type 1 and type 2
#' utils::data(islands_2types_1000reps)
#' DAISIE_plot_sims(
#' island_replicates = islands_2types_1000reps
#' )
#'
#'
#'
DAISIE_plot_sims <- function(
island_replicates,
plot_plus_one = TRUE,
type = "all_species",
sample_freq = 25,
trait_pars = NULL
) {
time <- max(island_replicates[[1]][[1]]$stt_all[, 1])
if (sample_freq != Inf) {
# Prepare dataset
plot_lists <- DAISIE_convert_to_classic_plot(island_replicates,
trait_pars = trait_pars)
} else {
stop("Plotting STT with sample_freq = Inf not yet available.")
}
if (type == "all") {
types <- names(plot_lists)
} else {
types <- type
}
num_plots <- sum(!sapply(plot_lists[types], FUN = is.null))
oldpar <- graphics::par(mfrow = c(1, num_plots))
on.exit(graphics::par(oldpar))
for (type_here in types) {
DAISIE_plot_stt(
plot_plus_one = plot_plus_one,
time = time,
plot_lists = plot_lists,
type = type_here)
}
}
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.