Nothing
#' MacroEcological Models (MEM) in caretSDM
#'
#' This functions sums all species records into one.
#' Should be used before the data cleaning routine.
#'
#' @usage use_mem(x, add = TRUE, name = "MEM")
#'
#' @param x A \code{occurrences} or \code{input_sdm} object containing occurrences.
#' @param add Logical. Should the new MEM records be added to the pool (\code{TRUE}) of species or
#' the output should have only the summed records (\code{FALSE})? Standard is \code{TRUE}.
#' @param name How should the new records be named? Standard is "MEM".
#'
#' @returns A \code{input_sdm} or \code{occurrences} object with MEM data.
#'
#' @author Luíz Fernando Esser (luizesser@gmail.com)
#' https://luizfesser.wordpress.com
#'
#' @examples
#' # Create sdm_area object:
#' sa <- sdm_area(parana, cell_size = 25000, crs = 6933)
#'
#' # Include predictors:
#' sa <- add_predictors(sa, bioc) |> select_predictors(c("bio1", "bio4", "bio12"))
#'
#' # Include scenarios:
#' sa <- add_scenarios(sa)
#'
#' # Create occurrences:
#' oc <- occurrences_sdm(occ, crs = 6933) |> join_area(sa)
#'
#' # Create input_sdm:
#' i <- input_sdm(oc, sa)
#'
#' # Use MEM:
#' i <- use_mem(i)
#'
#' @export
use_mem <- function(x, add = TRUE, name = "MEM") {
if (is_input_sdm(x)) {
y <- x$occurrences
} else if (is_occurrences(x)) {
y <- x
} else {
stop("x must be of class input_sdm or occurrences")
}
if (!add) {
y$occurrences$species <- rep(name, length(y$occurrences$species))
y$spp_names <- name
y$n_presences <- table(y$occurrences$species)
} else {
df <- y$occurrences
df2 <- df
df2$species <- rep(name, length(df2$species))
y$occurrences <- rbind(df, df2)
y$spp_names <- c(y$spp_names, name)
y$n_presences <- table(y$occurrences$species)
}
if (is_input_sdm(x)) {
x$occurrences <- y
} else if (is_occurrences(x)) {
x <- y
}
return(x)
}
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.