#' Process Monthly OPS Tracker (Post Analysis and PfM Commentary)
#'
#' This function processes the OPS performance data for each
#' Trading Party by OPS after the analysis and PfM Commentary
#' has been added. This will then be used to render the PfM
#' and Monthly Performance Reports created each month.
#'
#' @param save.output logical
#' @param save.dir.rds character
#' @param save.dir.csv character
#' @param my.dir character
#' @param keep.vars logical
#' @param period.create date
#'
#' @return
#' @export
#'
#' @importFrom magrittr %>%
#'
#' @examples
ops_process_tracker <- function(
my.dir = getwd(),
conf.loc = NULL,
save.output = TRUE,
save.dir.rds = paste0(my.dir, "/data/rdata/perf_status_ops.Rda"),
save.dir.csv = paste0(my.dir, "/data/outputs/perf_status_ops.csv"),
keep.vars = TRUE,
period.create = Sys.Date() %m-% months(1),
DataBase = TRUE
) {
# Setting parameters ------------------------------------------------------
if (keep.vars) {
var_list <- NULL
} else {
var_list <-
c(
"Period", "SecondaryCategory", "Trading.Party.ID", "Standard", "PerformanceMeasure",
"Action", "Rationale", "PFM_Commentary", "PerfFlag3m", "PerfFlag6m",
"ActiveIPRP", "ActivePRP", "IPRPend", "PRPend", "MilestoneFlag", "Pending", "UnderReview",
"OnWatchIPRPend", "OnWatch", "Consistency", "PerfRating", "IPRPeligible",
"CumWatch", "CumIPRP", "CumResubmit", "CumEscalate", "CumExtend"
)
}
# if(DataBase){
# Sys.setenv(R_CONFIG_ACTIVE = "sandpit")
#
# if(is.null(conf.loc)){
# err <- try(conf <- config::get(), TRUE)
# if("try-error" %in% class(err)) conf <- config::get(file = choose.files(caption = "Select configuration file"))
# } else if( conf.loc == "select"){
# conf <- config::get(file = choose.files(caption = "Select configuration file"))
# } else{
# conf <- config::get(file = conf.loc)
# }
#
#
# con <- odbc::dbConnect(odbc::odbc(),
# Driver = conf$Driver,
# Server = conf$Server,
# Database = conf$Database,
# Port = conf$Port,
# trusted_connection = conf$trusted_connection)
# }
# Importing data ----------------------------------------------------------
my_dir <- my.dir
period.create <- as.Date(period.create)
monthly_tracking_pre <-
MOSLR::ops_create_tracker(
my.dir = my_dir,
conf.loc = conf.loc,
period = period.create,
period.only = FALSE,
save.output = FALSE,
keep.vars = TRUE,
filter.category = NULL,
DataBase = DataBase
) %>%
dplyr::select(
-Action, - Rationale, -PFM_Commentary, -Template_Sent, -Response_Received_Template
)
Sys.setenv(R_CONFIG_ACTIVE = "digitaldata")
if(is.null(conf.loc)){
err <- try(conf <- config::get(), TRUE)
if("try-error" %in% class(err)) conf <- config::get(file = choose.files(caption = "Select configuration file"))
} else if( conf.loc == "select"){
conf <- config::get(file = choose.files(caption = "Select configuration file"))
} else{
conf <- config::get(file = conf.loc)
}
bl_endp_key <- AzureStor::storage_endpoint(endpoint = conf$endpoint, sas = conf$sas)
cont <- AzureStor::blob_container(bl_endp_key, "digitaldata")
monthly_tracking_post <- AzureStor::storage_read_csv(cont, paste0("/PerfReports/data/inputs/tracking_ops.csv")) %>%
dplyr::mutate(
Period = as.Date(Period, format = "%d/%m/%Y"),
#Rationale = as.character(iconv(Rationale)),
#PFM_Commentary = as.character(iconv(PFM_Commentary))
) %>%
dplyr::select(
Period, Trading.Party.ID, Standard, PerformanceMeasure, Action,
Rationale, PFM_Commentary, Response_Received_Template
)
# saveRDS(monthly_tracking_post, paste0(my.dir, "/data/rdata/monthly_tracking_ops_post.Rda"))
# Full Joining IPRP status and ops tracking ----------------------------------
perf_status_ops <- monthly_tracking_pre %>%
dplyr::full_join(
monthly_tracking_post,
by = c("Period", "Trading.Party.ID", "Standard", "PerformanceMeasure")
) %>%
dplyr::mutate(
Action = tolower(Action),
Standard = factor(
Standard,
levels = c(
"OPS A1a", "OPS A2a", "OPS A2b", "OPS A2c", "OPS A3a",
"OPS A3b", "OPS A4a",
"OPS B1a", "OPS B3a", "OPS B3b", "OPS B5a", "OPS C1a",
"OPS C1b", "OPS C2a", "OPS C3a", "OPS C4a", "OPS C4b",
"OPS C5a", "OPS C6a", "OPS F5a", "OPS F5b", "OPS G2a",
"OPS G4a", "OPS G4b", "OPS H1a", "OPS I1a", "OPS I1b",
"OPS I8a", "OPS I8b"
)
)
) %>%
dplyr::arrange(Period, Trading.Party.ID, Standard) %>%
dplyr::group_by(Trading.Party.ID, Standard, PerformanceMeasure) %>%
dplyr::mutate(
Action = tidyr::replace_na(Action, ""),
CumWatch = cumsum(OnWatch),
CumIPRP = cumsum(Action == "iprp"),
CumResubmit = cumsum(Action == "re-submit"),
CumEscalate = cumsum(Action == "escalate"),
CumExtend = cumsum(Action == "extend"),
Action = stringr::str_to_sentence(Action)
) %>%
dplyr::ungroup() %>%
{if (!keep.vars) {
dplyr::select(., var_list)
} else {
dplyr::select(., dplyr::everything())
}
}
if(save.output) {
if(DataBase){
# sql.field.types <- list(PFM_Commentary = "nvarchar(500)")
# odbc::dbWriteTable(con, "PERF_OPSPerfStatus", perf_status_ops, overwrite = TRUE, field.types = sql.field.types)
AzureStor::storage_write_csv(perf_status_ops, cont, "PerfReports/data/inputs/perf_status_OPS.csv")
} else{
utils::write.csv(perf_status_ops, save.dir.csv, row.names = FALSE)
saveRDS(perf_status_ops, save.dir.rds)
}
}
invisible(perf_status_ops)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.