Nothing
#' Get Shark Column Example
#'
#' This function reads a SHARK submission example from a file included in the package.
#' This format is used for submitting IFCB data to \url{https://shark.smhi.se/}.
#'
#' @return A data frame containing example data following the SHARK submission format.
#' @export
#'
#' @seealso \code{\link{ifcb_get_shark_colnames}}
#'
#' @examples
#' shark_example <- ifcb_get_shark_example()
#'
#' # Print example as tibble
#' dplyr::tibble(shark_example)
ifcb_get_shark_example <- function() {
shark_example <- read.table(system.file("exdata/shark_col.txt", package = "iRfcb"),
sep = "\t",
header = TRUE)
shark_example$DATE_TIME <- as.character(shark_example$DATE_TIME)
shark_example
}
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.