Nothing
#' Plot a home-range estimate
#' @param x A home-range estimate.
#' @param add.relocations `logical(1)` indicates if a relocations should be
#' added to the plot.
#' @template dots_none
#' @return A plot
#' @export
#'
plot.hr <- function(x, add.relocations = TRUE, ...) {
plot(sf::st_geometry(hr_isopleths(x)), ...)
if (!is.null(x$data) & add.relocations) {
points(x$data$x_, x$data$y_, col = grDevices::adjustcolor("black", 0.2),
pch = 20)
}
}
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.