#' Read modern temperature
#'
#' Function to load modern temperature data.
#' @export
read_modern_T <- function(modern_T_website){
modern_T <- read.delim(modern_T_website,
sep = "", skip = 5,
col.names = c("year", "T_anomaly", "smoothed_T_anomaly"),
check.names = FALSE)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.