-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
32f0938
commit d241ed4
Showing
8 changed files
with
117 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,83 @@ | ||
|
||
###########################. | ||
### Create Product Pack ### | ||
###########################. | ||
|
||
# Author: Bex Madden | ||
# Date: 2024-03-07 | ||
|
||
|
||
create_product_pack_mth <- function(){ | ||
library(openxlsx) | ||
|
||
|
||
# 1. Derive dates --------------------------------------------------------- | ||
|
||
#get most recent and earliest dates for which products have been created | ||
|
||
files <- list.files(product2_dir) # list files in directory | ||
files <- files[grep("mth_product2_heatmap", files)] # gets only the heatmap file names | ||
files <- gsub("mth_product2_heatmap_","", gsub(".png","", files)) # remove the non-date elements of the file names | ||
|
||
count_files <- length(files) # finds number of files | ||
|
||
latest_date <- files[count_files] # creates object with latest product date only | ||
earliest_date <- files[1] # creates object with earliest product date only | ||
|
||
|
||
|
||
# 2. Populate workbook --------------------------------------------------------- | ||
|
||
|
||
# pull template excel workbook containing products 1, 2, 3 - narrative and readme in template | ||
|
||
wb <- loadWorkbook(paste0("../../../output/product_pack_working/template_products.xlsx")) | ||
modifyBaseFont(wb, fontName = "Arial") | ||
|
||
# load in the created .pngs of each product | ||
|
||
insertImage(wb, "1. Data Retention", paste0(product1_dir, "/product1.png"), | ||
startRow = 11, startCol = 2, width = 29, height = 13.5, units = "cm") | ||
|
||
insertImage(wb, "2. RTT Summary", paste0(product2_dir, "/mth_product2_heatmap_", latest_date, ".png"), | ||
startRow = 10, startCol = 2, width = 27, height = 13.5, units = "cm") | ||
# insertImage(wb, "2. RTT Summary", paste0(product2_dir, "/product2_heatmap_", earliest_date, ".png"), | ||
# startRow = 31, startCol = 2, width = 24, height = 13.5, units = "cm") | ||
# | ||
# insertImage(wb, "3. Data Completeness", paste0(product3_dir, "/product3_closed_cases_until_", latest_date, ".png"), | ||
# startRow = 8, startCol = 2, width = 30, height = 15, units = "cm") | ||
|
||
# If wanting to add a dated comment above main narrative | ||
prod1_narrative <- paste0("The following heatmap shows retained data by Health Board in the 12 months up to and including ", latest_date, ".") | ||
prod2_narrative <- paste0("The following heatmap shows the percentage of the valid patient pathways where it is possible to calculate Unadjusted RTT,", | ||
" by Health Board in the 12 months up to and including ", latest_date, ". See below for detail on the reasons RTT cannot be calculated in the latest month.") | ||
prod2_narrative2 <- paste0("The following table contains detail on the reasons why RTT could not be calculated in the latest month.", | ||
" Please use the drop-down column headers to find the data relating to your own Health Board.") | ||
#prod3_narrative <- paste0("The data shown relates to completed patient pathways in CAPTND up until ", latest_date) | ||
|
||
# insert narrative text to each sheet | ||
writeData(wb, "1. Data Retention", x = prod1_narrative, startCol = 2, startRow = 6) #, headerStyle = my_fontsize | ||
writeData(wb, "2. RTT Summary", x = prod2_narrative, startCol = 2, startRow = 6) #, headerStyle = my_fontsize | ||
writeData(wb, "2. RTT Summary", x = prod2_narrative2, startCol = 2, startRow = 26) #, headerStyle = my_fontsize | ||
#writeData(wb, "3. Data Completeness", x = prod3_narrative, startCol = 2, startRow = 6) #, headerStyle = my_fontsize | ||
|
||
|
||
# read in data relating to ability to calculate RTT | ||
|
||
source("./05_data_quality/get_prod2_reasons_table.R") | ||
p2_reasons <- get_prod2_reasons_table(latest_date = latest_date) | ||
|
||
writeDataTable(wb, "2. RTT Summary", p2_reasons, | ||
startRow = 28, startCol = 2, | ||
tableStyle = "TableStyleLight9", | ||
colNames = TRUE, withFilter = TRUE, | ||
keepNA = TRUE, na.string = "NA") | ||
|
||
saveWorkbook(wb, paste0(external_reports_dir, "/CAPTND_opti_summary_mth_", latest_date, ".xlsx"), overwrite = TRUE) | ||
|
||
} | ||
|
||
|
||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters