Nothing
print.scppp <- function(x, ...) {
cat("An object of class scppp\n")
cat(" * data = [",paste0(dim(x$data), collapse = " x ") ,
"] <",paste0(class(x$data),collapse = "/"),"> ", sep = "")
}
#' get example data
#' @param x data set to choose
#' @return A data set from example data
#' @export
get_example_data <- function(x = c("p5","p56")) {
switch (x[1],
p5 = p5,
p56 = p56
)
}
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.