#' Scale PPR index by total primary production
#'
#' Total primary production (PP) should be in units mtC year^-1, since
#' PPR has units mtC year^-1.
#' The ratio of PPR:PP is then returned
#'
#' Units: Percentage
#'
#'
#'@param PPR Data frame (n x 2). Primary production required index over time. Two columns YEAR and INDEX
#'@param PP List. First element labeled \code{PP} is a Data frame of size (n x 2). Columns YEAR, ANNUAL_MEAN. Second element labeled \code{EPUarea} is the area of the region
#'@param pprField Character string. The name of the field in \code{PPR} which contains the PPR index data.
#'@param yearFieldPPR Character string. The name of the field in \code{PPR} which contains the Year.
#'@param yearFieldPP Character string. The name of the field in \code{PP} which contains the Year.
#'@param ppField Character string. The name of the field in \code{PP} which contains the PP data.
#'
#'
#'@return Data frame (n x 7)
#'\item{YEAR}{Year of scaled index}
#'\item{SCALEDINDEX}{Ratio of PPR:PP}
#'
#'@importFrom magrittr "%>%"
#'
#'@export
calc_ppr_scaled <- function(PPR,PP,pprField="INDEX",yearFieldPPR="YEAR",ppField = "ANNUAL_MTON",yearFieldPP="YEAR") {
names(PPR)[names(PPR) == yearFieldPPR] <- "YEAR"
names(PPR)[names(PPR) == pprField] <- "INDEX"
names(PP)[names(PP) == yearFieldPP] <- "YEAR"
names(PP)[names(PP) == ppField] <- "ANNUAL_MTON"
# join data frames
joinedTab <- dplyr::left_join(PP,PPR,by = "YEAR")
# scale the index
scaledIndex <- joinedTab %>%
dplyr::mutate(SCALEDINDEX = INDEX/ANNUAL_MTON)
return(scaledIndex)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.