R/read_modern_T.R

Defines functions read_modern_T

Documented in read_modern_T

#' 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)
}
jrpriceUPS/Math160UPS documentation built on April 28, 2024, 12:41 p.m.