knitr::opts_chunk$set(echo = TRUE)
This is an R Markdown document that checks data that has been delivered to the datahost.
When you click the Knit button a document will be generated that includes both content as well as the output of any embedded R code chunks within the document.
scriptstart = Sys.time() library(SHARK4R) library(tidyverse) library(DT) setwd("C:/__R/_test_SHARK4R/") myfile = shark_read_deliv(params$targetDataset)
Uses the check_fields() function to control if all required fields are present.
check_deliv_GreySeal(myfile)
glimpse(myfile) DT::datatable(myfile)
# Date time Sys.time() # Here we store the session info for this script sessioninfo::session_info()
scriptend = Sys.time() print(scriptend-scriptstart)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.