################################################
## Generate Comparison to Recent Data ggplots ##
################################################
# All of the following functions will return ggplots,
# and will be prefixed with 'calib_plt_'
# ----------------------------------------------------------------------------
#' Plot Total Population by Nativity over Time
calib_plt_pop_by_nat_over_time <- function(loc) {
#read in the target data
#find file name
fn<-list.files(pattern="tot_pop_yr_fb",system.file(paste0(loc,"/calibration_targets/"),package = "MITUS"))
target_df <-readRDS(system.file(paste0(loc,"/calibration_targets/",fn),package="MITUS")) #read in the model output data
target_df<-as.data.frame(target_df)
#read in the model output data
#find file name
fn<-list.files(pattern="pop_yr_nat",system.file(paste0(loc,"/calibration_outputs/"),package = "MITUS"))
outcomes_df0 <-as.data.frame(readRDS(system.file(paste0(loc,"/calibration_outputs/",fn), package="MITUS")))
#update the column names for legend use
colnames(target_df)<-c("year", "total pop. target", "US born pop. target", "Non-US born pop. target")
#format the outcomes data into one dataframe and update column names for legend
outcomes_df<-as.data.frame(cbind(1950:2019,(outcomes_df0[,1]+outcomes_df0[,2]),outcomes_df0[,1],outcomes_df0[,2]))
colnames(outcomes_df)<-c("year", "total pop. model output", "US born pop. model output", "Non-US born pop. model output")
#reshape the target data
rtarget<-reshape2::melt(target_df,id="year")
#reshape the outcomes data
routcomes<-reshape2::melt(outcomes_df,id ="year" )
#set up the plot options
ggplot() + theme_bw() + scale_y_log10() + ylab("Population in Millions") + theme(legend.position="bottom") + guides(colour=guide_legend(override.aes=list(linetype=c(rep(c(1,2),times=3))))) +
scale_x_continuous(breaks = c(1950,1960,1970,1980,1990,2000,2010,2019)) +
#add the target data
geom_line(data=rtarget, aes(x=year, y=value, color=variable), linetype="dashed", alpha=.5) +
#add the model output
geom_line(data=routcomes, aes(x=year, y=value, color=variable)) +
#add legend
scale_color_manual(name = "", values=c("red","red","black","grey20","dodgerblue2","dodgerblue2"))+
#add plot title
ggtitle(paste0(loc, " Population: Total, US Born, & Non-US born (mil, log-scale)"))+
#add data source
labs(caption="Target data source: decennial census, US Census Bureau")
}
# ----------------------------------------------------------------------------
#' Plot Total Population by Age and Nativity
calib_plt_pop_by_age_nat <- function(loc) {
#read in the target data
#find file name
fn<-list.files(pattern="tot_pop19_ag_fb",system.file(paste0(loc,"/calibration_targets/"),package = "MITUS"))
#subset into 2006-2016
target_df0 <-readRDS(system.file(paste0(loc,"/calibration_targets/",fn),package="MITUS")) #read in the model output data
#subset the data
target_df<-target_df0[1:8,3:4]
#update the column names for legend use
label<-c("0-4\nyears","5-24\nyears",
"25-44\nyears","45-54\nyears",
"55-64\nyears","65-74\nyears",
"75-84\nyears","85+\nyears")
target_df<-cbind(label,target_df)
target_df<-as.data.frame(target_df); colnames(target_df)<-c("Age","US-born\ntarget","Non-US born\ntarget")
#read in the model output data
#find file name
fn<-list.files(pattern="pop_ag_nat",system.file(paste0(loc,"/calibration_outputs/"),package = "MITUS"))
outcomes_df0 <-readRDS(system.file(paste0(loc,"/calibration_outputs/",fn), package="MITUS"))
outcomes_df<-as.data.frame(outcomes_df0)
outcomes_df<-cbind(label,outcomes_df)
colnames(outcomes_df)<-c("Age","US-born\nmodel output","Non-US born\nmodel output")
#reshape the target data
rtarget<-reshape2::melt(target_df,id="Age")
#reshape the outcomes data
routcomes<-reshape2::melt(outcomes_df,id="Age")
if (loc != "US") rtarget$value<-rtarget$value/1e6
#set up the plot options
ggplot() + theme_bw() + ylab("") +xlab("Age group")+ theme(legend.position="bottom") +
scale_x_discrete(limits=label)+
#add the model output
geom_col(data=routcomes, aes(x=rep(label,2), y=value, fill=variable), position="dodge", alpha=0.3) +
scale_fill_manual("", values=c("red","dodgerblue2"))+
#add the target data
geom_point(data=rtarget, aes(x=rep(label,2), y=value, color=variable), position=position_dodge(width = .9)) +
#add legend
scale_color_manual("", values=c("red","dodgerblue2"))+
#add plot title
ggtitle(paste0("Total population 2019 in ", loc, " by age and nativity (mil)"))+
#add data source
labs(caption="Target data source: American Community Survey, 2019, US Census Bureau")
}
# ----------------------------------------------------------------------------
calib_plt_deaths_over_time <- function(loc) {
#read in the target data
#find file name
fn<-list.files(pattern="tot_mort",system.file(paste0(loc,"/calibration_targets/"),package = "MITUS"))
target_df <-readRDS(system.file(paste0(loc,"/calibration_targets/",fn),package="MITUS")) #read in the model output data
#read in the model output data
#find file name
fn<-list.files(pattern="mort_yr_nat",system.file(paste0(loc,"/calibration_outputs/"),package = "MITUS"))
outcomes_df0 <-as.data.frame(readRDS(system.file(paste0(loc,"/calibration_outputs/",fn), package="MITUS")))
#update the column names for legend use
target_df[,2]<-target_df[,2]/1e6
target_df<-as.data.frame(target_df)
colnames(target_df)<-c("year", "Total deaths target")
#get years
years<-target_df[,1]
#subset the outcomes data to match the years
outcomes_df1<-outcomes_df0[years-1949,]
#format the outcomes data into one dataframe and update column names for legend
outcomes_df<-as.data.frame(cbind(years,outcomes_df1))
colnames(outcomes_df)<-c("year", "Total deaths model output")
#reshape the target data
rtarget<-reshape2::melt(target_df,id="year")
#reshape the outcomes data
routcomes<-reshape2::melt(outcomes_df,id ="year" )
#set up the plot options
ggplot() +
theme_bw() +
scale_y_log10() +
ylab("Deaths in Millions") +
theme(legend.position="bottom") +
guides(colour=guide_legend(override.aes=list(linetype=c(1,2)))) +
expand_limits(y=0) +
scale_x_continuous(breaks = c(seq(years[1],years[length(years)],10), years[length(years)])) +
#add the target data
geom_line(data=rtarget, aes(x=year, y=value, color=variable), linetype="dashed") +
#add the model output
geom_line(data=routcomes, aes(x=year, y=value, color=variable)) +
#add legend
scale_color_manual(name = "", values=c("black","grey"))+
#add plot title
ggtitle(paste0("Total Death Counts in ", loc," (mil, log-scale)"))+
#add data source
labs(caption="Target data source: Human Mortality Database")
}
# ----------------------------------------------------------------------------
calib_plt_tb_cases_nat_over_time <- function(loc) {
#read in the target data
#find file name
#total cases
## "Total TB cases identified",
if (loc=="US"){
fb_TB_cases_target<-list.files(pattern=paste0(loc, "_fb_cases"),system.file(paste0(loc,"/calibration_targets/"),package = "MITUS"))
fb_TB_cases_target<-readRDS(system.file(paste0(loc, "/calibration_targets/", fb_TB_cases_target), package="MITUS"))
TB_cases_target<-list.files(pattern=paste0(loc, "_cases_yr"),system.file(paste0(loc,"/calibration_targets/"),package = "MITUS"))
TB_cases_target<-readRDS(system.file(paste0(loc, "/calibration_targets/", TB_cases_target), package="MITUS"))[41:67,]
} else {
TB_cases_target<-list.files(pattern=paste0(loc, "_cases_yr"),system.file(paste0(loc,"/calibration_targets/"),package = "MITUS"))
TB_cases_target<-readRDS(system.file(paste0(loc, "/calibration_targets/", TB_cases_target), package="MITUS"))
}
target_dfz<-cbind(TB_cases_target[,1], ((1-fb_TB_cases_target[,2])*TB_cases_target[,2]*1e3),(fb_TB_cases_target[,2]*TB_cases_target[,2]*1e3))
target_df<-cbind(target_dfz[,1], (target_dfz[,2]+target_dfz[,3]), target_dfz[,3],target_dfz[,2])
#get the years
years<-target_df[,1]
target_df<-as.data.frame(target_df)
#update the column names for legend use
colnames(target_df)<-c("year", "Total TB cases target", "Non-US born TB cases target", "US born TB cases target")
#read in the model output data
#find file name
fn<-list.files(pattern="TBcases",system.file(paste0(loc,"/calibration_outputs/"),package = "MITUS"))
outcomes_df0 <-readRDS(system.file(paste0(loc,"/calibration_outputs/",fn), package="MITUS"))
#format the outcomes data into one dataframe and update column names for legend
outcomes_df1<-cbind(outcomes_df0[[1]]*1e3,
c(rep(NA,length(outcomes_df0[[1]])-length(outcomes_df0[[2]])),outcomes_df0[[2]]*1e3),
c(rep(NA,length(outcomes_df0[[1]])-length(outcomes_df0[[3]])),outcomes_df0[[3]]*1e3))
outcomes_df<-outcomes_df1[years-1952,]
outcomes_df<-cbind(years,outcomes_df)
outcomes_df<-as.data.frame(outcomes_df)
colnames(outcomes_df)<-c("year", "total TB cases model output", "US born TB cases model output", "Non-US born TB cases model output")
#reshape the target data
rtarget<-reshape2::melt(target_df,id="year",color=variable)
#reshape the outcomes data
routcomes<-reshape2::melt(outcomes_df,id ="year",color=variable)
#set up the plot options
ggplot() + theme_bw() + ylab("TB cases (000s) ") + theme(legend.position="bottom") + guides(colour=guide_legend(override.aes=list(linetype=c(rep(c(1,2),times=3))))) +
scale_x_continuous(breaks = c(years[1],seq(years[1],years[length(years)],10), years[length(years)])) +
#add the target data
geom_line(data=rtarget, aes(x=year, y=value,color=variable), linetype="dashed") +
#add the model output
geom_line(data=routcomes, aes(x=year, y=value,color=variable)) +
#add legend
scale_color_manual(name = "", values=c("green","green","black","black","blue","blue"))+
#add plot title
ggtitle(paste0("Total TB cases identified (000s) in ",loc," ",years[1], "-", years[length(years)]))+
#add data source
labs(caption="Target data source: Online Tuberculosis Information System (OTIS)")
}
# ----------------------------------------------------------------------------
calib_plt_tb_cases_identified_over_ten_years <- function(loc) {
if (loc=="US"){
fb_TB_cases_target<-list.files(pattern=paste0(loc, "_fb_cases"),system.file(paste0(loc,"/calibration_targets/"),package = "MITUS"))
fb_TB_cases_target<-readRDS(system.file(paste0(loc, "/calibration_targets/", fb_TB_cases_target), package="MITUS"))
TB_cases_target<-list.files(pattern=paste0(loc, "_cases_yr"),system.file(paste0(loc,"/calibration_targets/"),package = "MITUS"))
TB_cases_target<-readRDS(system.file(paste0(loc, "/calibration_targets/", TB_cases_target), package="MITUS"))[41:68,]/1e6
target_dfz<-cbind(TB_cases_target[,1], ((1-fb_TB_cases_target[,2])*TB_cases_target[,2]*1e3),(fb_TB_cases_target[,2]*TB_cases_target[,2]*1e3))
target_df<-cbind(target_dfz[,1], (target_dfz[,2]+target_dfz[,3]), target_dfz[,3],target_dfz[,2])
#get the years
years<-target_df[,1]
target_df<-as.data.frame(target_df)
#update the column names for legend use≤
colnames(target_df)<-c("year", "Total TB cases target", "Non-US born TB cases target", "US born TB cases target")
#get the last ten years
target_df_tot<-target_df[(nrow(target_df)-10):nrow(target_df),]
#get years
years<-target_df_tot[,1]
#nativity stratification
fn<-list.files(pattern=paste0(loc, "_fb_cases"),system.file(paste0(loc,"/calibration_targets/"),package = "MITUS"))
target_df0 <-readRDS(system.file(paste0(loc,"/calibration_targets/",fn),package="MITUS")) #read in the model output data
#format the data into a single dataframe
target_df1<-cbind(target_df0[,2],1-target_df0[,2])*target_df0[,3]
target_df1<-target_df1/1e3
target_df1<-target_df1[(nrow(target_df1)-10):nrow(target_df1),]
target_df<-cbind(target_df_tot,target_df1[,1],target_df1[,2])
target_df<-as.data.frame(target_df)
#scale down to thousands
# target_df[,2:4] <-target_df[,2:4]
#update the column names for legend use
colnames(target_df)<-c("year", "Total TB cases target", "Non-US born TB cases target", "US born TB cases target")
#read in the model output data
#find file name
fn<-list.files(pattern="TBcases",system.file(paste0(loc,"/calibration_outputs/"),package = "MITUS"))
outcomes_df0 <-readRDS(system.file(paste0(loc,"/calibration_outputs/",fn), package="MITUS"))
#format the outcomes data into one dataframe and update column names for legend
outcomes_df<-cbind(years,outcomes_df0[[1]][(length(outcomes_df0[[1]])-10):length(outcomes_df0[[1]])]*1e3,
outcomes_df0[[2]][(length(outcomes_df0[[2]])-10):length(outcomes_df0[[2]])]*1e3,
outcomes_df0[[3]][(length(outcomes_df0[[3]])-10):length(outcomes_df0[[3]])]*1e3)
outcomes_df<-as.data.frame(outcomes_df)
colnames(outcomes_df)<-c("year", "total TB cases model output", "US born TB cases model output", "Non-US born TB cases model output")
#reshape the target data
rtarget<-reshape2::melt(target_df,id="year",color=variable)
#reshape the outcomes data
routcomes<-reshape2::melt(outcomes_df,id ="year",color=variable)
#set up the plot options
ggplot() + theme_bw() + ylab("TB cases (000s) ") + theme(legend.position="bottom") + guides(colour=guide_legend(override.aes=list(linetype=c(rep(c(1,2),times=3))))) +
scale_x_continuous(breaks = years) +
expand_limits(y=0) +
#add the target data
geom_line(data=rtarget, aes(x=year, y=value,color=variable), linetype="dashed", alpha=.5) +
geom_point(data=rtarget, aes(x=year, y=value,color=variable), alpha=.5) +
#add the model output
geom_line(data=routcomes, aes(x=year, y=value,color=variable)) +
#add legend
scale_color_manual(name = "", values=c("green","green","black","black","blue","blue"))+
#add plot title
ggtitle(paste0("Total TB cases identified (000s) in ",loc," ", years[1],"-",years[length(years)]))+
#add data source
labs(caption="Target data source: Online Tuberculosis Information System (OTIS)")
} else {
TB_cases_target<-list.files(pattern=paste0(loc, "_cases_yr"),system.file(paste0(loc,"/calibration_targets/"),package = "MITUS"))
TB_cases_target<-readRDS(system.file(paste0(loc, "/calibration_targets/", TB_cases_target), package="MITUS"))
target_df <- TB_cases_target
target_df[,2] <- target_df[,2]
target_df<-as.data.frame(target_df)
#update the column names for legend use
colnames(target_df)<-c("year", "Total TB cases target")
#get the last ten years
target_df<-target_df[(nrow(target_df)-9):nrow(target_df),]
#get years
#years<-target_df_tot[,1]
years<-2011:2020
#read in the model output data
#find file name
fn<-list.files(pattern="TBcases",system.file(paste0(loc,"/calibration_outputs/"),package = "MITUS"))
outcomes_df0 <-readRDS(system.file(paste0(loc,"/calibration_outputs/",fn), package="MITUS"))
#format the outcomes data into one dataframe and update column names for legend
outcomes_df<-cbind(years,outcomes_df0[[1]][(length(outcomes_df0[[1]])-9):length(outcomes_df0[[1]])]*1e6)
outcomes_df<-as.data.frame(outcomes_df)
colnames(outcomes_df)<-c("year", "total TB cases model output")
#reshape the target data
rtarget<-reshape2::melt(target_df,id="year",color=variable)
#reshape the outcomes data
routcomes<-reshape2::melt(outcomes_df,id ="year",color=variable)
#set up the plot options
ggplot() + theme_bw() + ylab("TB cases") + theme(legend.position="bottom") + guides(colour=guide_legend(override.aes=list(linetype=c(1,2)))) +
scale_x_continuous(breaks = years) +
expand_limits(y=c(0,max(routcomes$value,rtarget$value)*1.3)) +
#add the target data
geom_line(data=rtarget, aes(x=year, y=value,color=variable), linetype="dashed", alpha=.5) +
geom_point(data=rtarget, aes(x=year, y=value,color=variable), alpha=.5) +
#add the model output
geom_line(data=routcomes, aes(x=year, y=value,color=variable)) +
#add legend
scale_color_manual(name = "", values=c("black","black"))+
#add plot title
ggtitle(paste0("Total TB cases identified in ",loc," ", years[1],"-",years[length(years)]))+
#add data source
labs(caption="Target data source: Online Tuberculosis Information System (OTIS)\n
Assumed reduction in TB cases in 2020 based on national data.")
}
}
# ----------------------------------------------------------------------------
calib_plt_tb_cases_nat_dist <- function(loc) {
if (loc =="US"){
fb_TB_cases_target<-list.files(pattern=paste0(loc, "_fb_cases"),system.file(paste0(loc,"/calibration_targets/"),package = "MITUS"))
fb_TB_cases_target<-readRDS(system.file(paste0(loc, "/calibration_targets/", fb_TB_cases_target), package="MITUS"))
TB_cases_target<-list.files(pattern=paste0(loc, "_cases_yr"),system.file(paste0(loc,"/calibration_targets/"),package = "MITUS"))
TB_cases_target<-readRDS(system.file(paste0(loc, "/calibration_targets/", TB_cases_target), package="MITUS"))[41:68,]/1e6
target_dfz<-cbind(TB_cases_target[,1], ((1-fb_TB_cases_target[,2])*TB_cases_target[,2]*1e3),(fb_TB_cases_target[,2]*TB_cases_target[,2]*1e3))
target_df<-cbind(target_dfz[,1], (target_dfz[,2]+target_dfz[,3]), target_dfz[,3],target_dfz[,2])
#get the years
years<-target_df[,1]
target_df<-as.data.frame(target_df)
#update the column names for legend use≤
colnames(target_df)<-c("year", "Total TB cases target", "Non-US born TB cases target", "US born TB cases target")
#get the last ten years
target_df_tot_us<-c(sum(target_df[(nrow(target_df)-9):(nrow(target_df)-5),4]), sum(target_df[(nrow(target_df)-4):(nrow(target_df)),4]))/
c(sum(target_df[(nrow(target_df)-9):(nrow(target_df)-5),2]), sum(target_df[(nrow(target_df)-4):(nrow(target_df)),2]))*100
target_df_tot_nus<-c(sum(target_df[(nrow(target_df)-9):(nrow(target_df)-5),3]), sum(target_df[(nrow(target_df)-4):(nrow(target_df)),3]))/
c(sum(target_df[(nrow(target_df)-9):(nrow(target_df)-5),2]), sum(target_df[(nrow(target_df)-4):(nrow(target_df)),2]))*100
target_df <- cbind(target_df_tot_us[1],target_df_tot_nus[1],target_df_tot_us[2],target_df_tot_nus[2])
#scale down to thousands
# target_df[,2:4] <-target_df[,2:4]
#update the column names for legend use
} else {
#read in the target data
#find file name
fn<-list.files(pattern="ag_nat_cases_5yr",system.file(paste0(loc,"/calibration_targets/"),package = "MITUS"))
#subset into 20010-2019
target_df0 <-readRDS(system.file(paste0(loc,"/calibration_targets/",fn),package="MITUS"))
target_df0<-rbind(target_df0[((nrow(target_df0)/2)-1):(nrow(target_df0)/2),], #last 10 years
target_df0[(nrow(target_df0)-1):nrow(target_df0),] )#last 10 years
target_df <-cbind(rowSums(target_df0[1,5:14])/(rowSums(target_df0[1,5:14])+rowSums(target_df0[3,5:14])), rowSums(target_df0[3,5:14])/(rowSums(target_df0[1,5:14])+rowSums(target_df0[3,5:14])),
rowSums(target_df0[2,5:14])/(rowSums(target_df0[2,5:14])+rowSums(target_df0[4,5:14])), rowSums(target_df0[4,5:14])/(rowSums(target_df0[2,5:14])+rowSums(target_df0[4,5:14])))*1e2
}
#set the years
# years<-target_df0[,1]
years <-2011:2020
#update the column names for legend use
label<-c("2011-2015 USB", "2011-2015 NUSB", "2016-2020 USB", "2016-2020 NUSB")
target_df<-data.frame("label" = label,
"cases" = t(target_df))
colnames(target_df) <-c("label", "cases")
#read in the model output data
#find file name
fn<-list.files(pattern="TBcases",system.file(paste0(loc,"/calibration_outputs/"),package = "MITUS"))
outcomes_df0 <-readRDS(system.file(paste0(loc,"/calibration_outputs/",fn), package="MITUS"))
#get the last ten years
outcomes_df_tot<-outcomes_df0[[1]][((length(outcomes_df0[[1]]))-9):length(outcomes_df0[[1]])] #last 10 years
outcomes_df_us<-outcomes_df0[[2]][((length(outcomes_df0[[2]]))-9):length(outcomes_df0[[2]])] #last 10 years
outcomes_df_nus<-outcomes_df0[[3]][((length(outcomes_df0[[3]]))-9):length(outcomes_df0[[3]])] #last 10 years
#sum across years
outcomes_df<-c(sum(outcomes_df_us[1:5])/sum(outcomes_df_tot[1:5]), sum(outcomes_df_nus[1:5])/sum(outcomes_df_tot[1:5]),
sum(outcomes_df_us[6:10])/sum(outcomes_df_tot[6:10]), sum(outcomes_df_nus[6:10])/sum(outcomes_df_tot[6:10])+sum(outcomes_df_us[6:10]))*1e2
outcomes_df<-data.frame("label" = label,
"cases" = outcomes_df)
#set up the plot options
ggplot() + theme_bw() + ylab("% of cases") +xlab("Nativity and years")+ theme(legend.position="bottom") +
scale_x_discrete(limits=label)+
#add the model output
geom_col(data=outcomes_df, aes(x=label, y=cases, fill=c("dodgerblue2", "red","dodgerblue2", "red")), alpha=.5) +
#add the target data
geom_point(data=target_df, aes(x=label, y=cases, color="black") ) +
#add legend
scale_color_manual("", values="black", label="TB cases target")+
scale_fill_manual("", values=c("dodgerblue2", "red"), label=c("US born TB cases\nmodel output","Non-US born TB cases\nmodel output"))+
#add plot title
ggtitle(paste0("Nativity distribution of TB cases in ", loc, " ", years[1], "-", years[length(years)]))+
#add data source
labs(caption="Target data source: Online Tuberculosis Information System (OTIS)")
}
# ----------------------------------------------------------------------------
####check this one!!!!! ###
calib_plt_tb_cases_5yr_nat <- function(loc) {
#read in the target data
#find file name
fn<-list.files(pattern="nat_cases_5yr",system.file(paste0(loc,"/calibration_targets/"),package = "MITUS"))[2]
#subset into 20010-2019
target_df0 <-readRDS(system.file(paste0(loc,"/calibration_targets/",fn),package="MITUS"))
target_df <-rbind(c(target_df0[1,7], target_df0[2,7]),
c(target_df0[1,8], target_df0[2,8]))
rownames(target_df) <- c("2011-2015", "2016-2020")
colnames(target_df) <- c("US born\nTB cases target", "Non-US born\nTB cases target")
rtarget<-reshape2::melt(target_df)
rtarget[,"axis"]<-c(1,2,1,2)
#set the years
# years<-target_df0[,1]
years <-2011:2020
#read in the model output data
#find file name
fn<-list.files(pattern="TBcases",system.file(paste0(loc,"/calibration_outputs/"),package = "MITUS"))
outcomes_df0 <-readRDS(system.file(paste0(loc,"/calibration_outputs/",fn), package="MITUS"))
#get the last ten years
outcomes_df_us<-outcomes_df0[[2]][((length(outcomes_df0[[2]]))-9):length(outcomes_df0[[2]])] #last 10 years
outcomes_df_nus<-outcomes_df0[[3]][((length(outcomes_df0[[3]]))-9):length(outcomes_df0[[3]])] #last 10 years
#sum across years
outcomes_df<-rbind(c(sum(outcomes_df_us[1:5]), sum(outcomes_df_nus[1:5])),
c(sum(outcomes_df_us[6:10]), sum(outcomes_df_nus[6:10])))*1e6
rownames(outcomes_df) <- c("2011-2015", "2016-2020")
colnames(outcomes_df) <- c("US born TB cases\n model output", "Non-US born TB\ncases model output")
routcomes<-reshape2::melt(outcomes_df)
routcomes[,"axis"]<-c(1,2,1,2)
#set up the plot options
ggplot() + theme_bw() + ylab("Cases") + xlab("Years")+ theme(legend.position="bottom") + guides(colour=guide_legend(override.aes=list(linetype=c(rep(c(2,1),times=2))))) +
scale_x_continuous(breaks=c(1,2),labels=c("2011-2015", "2016-2020")) + expand_limits(y=c(0,max(routcomes$value,rtarget$value)*1.3)) +
#add the target data
geom_line(data=rtarget, aes(x=axis, y=value,color=Var2), linetype="dashed", alpha=.5) +
#add the model output
geom_line(data=routcomes, aes(x=axis, y=value,color=Var2)) +
#add legend
scale_color_manual(name = "", values=c("blue","blue","red3","red3"))+
#add plot title
ggtitle(paste0("Nativity distribution of TB cases in ", loc, " ", years[1], "-", years[length(years)]))+
#add data source
labs(caption="Target data source: Online Tuberculosis Information System (OTIS)")
}
# ----------------------------------------------------------------------------
calib_plt_tb_cases_age_dist <- function(loc) {
#read in the target data
#find file name
fn<-list.files(pattern="age_cases_tot",system.file(paste0(loc,"/calibration_targets/"),package = "MITUS"))
#subset into 20010-2019
target_df0 <-readRDS(system.file(paste0(loc,"/calibration_targets/",fn),package="MITUS"))
if (loc =="US"){
#get the last ten years
target_df0<-target_df0[(nrow(target_df0)-9):nrow(target_df0),] #last 10 years
#calculate the numbers of cases from percentages and sample size
target_df1<-cbind(target_df0[,1],target_df0[,2:11]*target_df0[,12])
#sum across years
target_df<-(colSums(target_df1[,2:11])/sum(target_df1[,2:11]))*100
} else{
target_df1<-as.matrix(target_df0[(nrow(target_df0)-1):nrow(target_df0),4:13],2,10) #last 10 years
for (i in 1:length(target_df1)){ if(is.na(target_df1[i])==TRUE){ target_df1[i]<-0}}
target_df <- (colSums(target_df1)/sum(target_df1))*100
}
#set the years
# years<-target_df0[,1]
years <-2011:2020
#update the column names for legend use
label<-c("0-4\nyears","5-14\nyears","15-24\nyears ",
"25-34\nyears","35-44\nyears","45-54\nyears",
"55-64\nyears","65-74\nyears","75-84\nyears","85+\nyears")
names(target_df)<-label
target_df<-as.data.frame(target_df); colnames(target_df)<-"percentage"
#read in the model output data
#find file name
fn<-list.files(pattern="age_cases_tot",system.file(paste0(loc,"/calibration_outputs/"),package = "MITUS"))
outcomes_df0 <-readRDS(system.file(paste0(loc,"/calibration_outputs/",fn), package="MITUS"))
#get the last ten years
outcomes_df0<-outcomes_df0[(nrow(outcomes_df0)-10):nrow(outcomes_df0),] #last 10 years
#add the last two Age groups
outcomes_df1<-outcomes_df0[,-12]; outcomes_df1[,11]<-outcomes_df1[,11]+outcomes_df0[,12]
#sum across years
outcomes_df<-(colSums(outcomes_df1[,2:11])/sum(outcomes_df1[,2:11]))*100
outcomes_df<-as.data.frame(outcomes_df)
rownames(outcomes_df)<-label;colnames(outcomes_df)<-"percentage"
#set up the plot options
ggplot() + theme_bw() + ylab("") + ylab("% of cases") + xlab("Age group")+ theme(legend.position="bottom") +
scale_x_discrete(limits=label)+
#add the model output
geom_col(data=outcomes_df, aes(x=label, y=percentage, fill="dodgerblue1"), alpha=.5) +
#add the target data
geom_point(data=target_df, aes(x=label, y=percentage,color="black") ) +
#add legend
scale_color_manual("", values="black", label="TB cases target")+
scale_fill_manual("", values="dodgerblue2", label="TB cases model output")+
#add plot title
ggtitle(paste0("Age distribution of TB cases in ", loc, " ", years[1], "-", years[length(years)]))+
#add data source
labs(caption="Target data source: Online Tuberculosis Information System (OTIS)")
}
# ----------------------------------------------------------------------------
calib_plt_tb_cases_age_over_time <- function(loc) {
#read in the target data find file name
fn<-list.files(pattern="age_cases_tot",system.file(paste0(loc,"/calibration_targets/"),package = "MITUS"))
target_df0 <-readRDS(system.file(paste0(loc,"/calibration_targets/",fn),package="MITUS")) #read in the model output data
target_df0<-target_df0[(nrow(target_df0)-10):nrow(target_df0),] #last 10 years
target_df1<-target_df0[,2:11]*target_df0[,12]
#sum into age bands
target_df<-cbind(target_df0[,1], rowSums(target_df1[,1:3]),rowSums(target_df1[,4:5]),rowSums(target_df1[,6:8]),rowSums(target_df1[,9:10]))
#update the column names for legend use
target_df<-as.data.frame(target_df)
#get the years
years<-target_df[,1]
colnames(target_df)<-c("year", "Cases in 0-24 yrs target", "Cases in 25-44 yrs target", "Cases in 45-64 yrs target", "Cases in 65+ yrs target" )
#read in the model output data
#find file name
fn<-list.files(pattern="age_cases_4grp",system.file(paste0(loc,"/calibration_outputs/"),package = "MITUS"))
outcomes_df0 <-readRDS(system.file(paste0(loc,"/calibration_outputs/",fn), package="MITUS")) #ends in 2016
#format the outcomes data into one dataframe and update column names for legend
outcomes_df<-cbind(years,outcomes_df0[(nrow(outcomes_df0)-10):nrow(outcomes_df0),])
outcomes_df<-as.data.frame(outcomes_df)
colnames(outcomes_df)<-c("year", "Cases in 0-24 yrs model output", "Cases in 25-44 yrs model output",
"Cases in 45-64 yrs model output", "Cases in 65+ yrs model output" )
ddf<-c("model","reported data")
#reshape the target data
rtarget<-reshape2::melt(target_df,id="year")
#reshape the outcomes data
routcomes<-reshape2::melt(outcomes_df,id ="year")
#set up the plot options
ggplot() + theme_bw() + ylab("") + theme(legend.position="bottom") + guides(colour=guide_legend(override.aes=list(linetype=c(rep(c(1,2),times=4))))) +
scale_x_continuous(breaks = years) +
#add the target data
geom_line(data=rtarget, aes(x=year, y=value*1e3,color=variable), linetype="dashed", alpha=.5) +
#add the model output
geom_line(data=routcomes, aes(x=year, y=value*1e3,color=variable)) +
#add legend
scale_color_manual(name = "", values=c("blue","blue","red","red","purple4","purple4","darkgreen","darkgreen"))+
#create the dashes in the legend
# scale_linetype_manual(values = c(rep("dotted",4),1,1,1,1))+
#add plot title
ggtitle(paste0("TB cases in ", loc, " by age ", years[1], "-", years[length(years)]))+
#add data source
labs(caption="Target data source: Online Tuberculosis Information System (OTIS)")
}
# ----------------------------------------------------------------------------
#' Plot Percent of TB Cases in Non-US-born Individuals
calib_plt_pct_cases_nusb <- function(loc) {
#set the location
loc<-loc
#read in the target data
#find file name
#FB stratification
fn<-list.files(pattern=paste0(loc, "_fb_cases"),system.file(paste0(loc,"/calibration_targets/"),package = "MITUS"))
target_df0 <-readRDS(system.file(paste0(loc,"/calibration_targets/",fn),package="MITUS")) #read in the model output data
target_df0<-target_df0[,-3] #keep year and percentage
target_df0<-target_df0[(nrow(target_df0)-10):nrow(target_df0),] #last 10 years
##set the parameter for years
years<-target_df0[,1]
years[9]<-2017
target_df0[9,1]<-2017
#set as dataframe
target_df<-as.data.frame(target_df0)
#update the column names for legend use
colnames(target_df)<-c("year", "% population Non-US born target")
#read in the model output data
#find file name
fn<-list.files(pattern="TBcases",system.file(paste0(loc,"/calibration_outputs/"),package = "MITUS"))
outcomes_df0 <-readRDS(system.file(paste0(loc,"/calibration_outputs/",fn), package="MITUS"))
#format the outcomes data into one dataframe and update column names for legend
outcomes_df<-cbind(years,(outcomes_df0[[3]][17:27]/outcomes_df0[[1]][57:67])*100)
outcomes_df<-as.data.frame(outcomes_df)
colnames(outcomes_df)<-c("year", "% cases Non-US born model output")
#reshape the target data
rtarget<-reshape2::melt(target_df,id="year")
#reshape the outcomes data
routcomes<-reshape2::melt(outcomes_df,id ="year")
#set up the plot options
ggplot() + theme_bw() + ylab("") + theme(legend.position="bottom") +
scale_x_continuous(breaks = years) +
# scale_y_continuous(breaks = 58:70, minor_breaks = 1) +
expand_limits(y = 0) +
guides(colour=guide_legend(override.aes=list(linetype=c(1,2)))) +
#add the target data
geom_line(data=rtarget, aes(x=year, y=value*100,color=variable), linetype="dashed") +
geom_point(data=rtarget, aes(x=year, y=value*100,color=variable)) +
#add the model output
geom_line(data=routcomes, aes(x=year, y=value,color=variable)) +
#add legend
scale_color_manual(name = "", values=c("blue","black")) +
#add plot title
ggtitle(paste0("Percent of TB cases non-US born in ",loc," ", years[1],"-", years[11]))+
#add data source
labs(caption="Target data source: Online Tuberculosis Information System (OTIS)")
}
# ----------------------------------------------------------------------------
#' Plot Percent of Non-US born TB cases from recent immigrants (<2 yrs)
calib_plt_pct_cases_nusb_recent <- function(loc) {
#read in the target data
#find file name
#FB stratification
fn<-list.files(pattern="fb_recent_cases2",system.file(paste0(loc,"/calibration_targets/"),package = "MITUS"))
target_df0 <-readRDS(system.file(paste0(loc,"/calibration_targets/",fn),package="MITUS")) #read in the model output data
target_df0<-target_df0[,-3] #keep year and percentage
target_df0<-target_df0[(nrow(target_df0)-10):nrow(target_df0),] #last 10 years
##set the parameter for years
years<-target_df0[,1]
target_df<-as.data.frame(target_df0)
#update the column names for legend use
colnames(target_df)<-c("year", "% Non-US born cases from recent immigrants (<2yrs) target")
#read in the model output data
#find file name
fn<-list.files(pattern="percentRecentFBcases",system.file(paste0(loc,"/calibration_outputs/"),package = "MITUS"))
outcomes_df0 <-readRDS(system.file(paste0(loc,"/calibration_outputs/",fn), package="MITUS"))
#format the outcomes data into one dataframe and update column names for legend
outcomes_df<-cbind(years,outcomes_df0[17:27])
outcomes_df<-as.data.frame(outcomes_df)
colnames(outcomes_df)<-c("year", "% Non-US born cases from recent immigrants (<2yrs) model output")
#reshape the target data
rtarget<-reshape2::melt(target_df,id="year",color=variable)
#reshape the outcomes data
routcomes<-reshape2::melt(outcomes_df,id ="year",color=variable)
#set up the plot options
ggplot() +
theme_bw() +
ylab("") +
theme(legend.position="bottom") +
guides(colour=guide_legend(nrow = 2, override.aes=list(linetype=c(1,2))) ) +
scale_x_continuous(breaks = years) +
expand_limits(y=0) +
#add the target data
geom_line(data=rtarget, aes(x=year, y=value*100,color=variable), linetype="dashed") +
geom_point(data=rtarget, aes(x=year, y=value*100,color=variable)) +
#add the model output
geom_line(data=routcomes, aes(x=year, y=value,color=variable)) +
#add legend
scale_color_manual(name = "", values=c("blue","black"))+
#add plot title
ggtitle(paste0("Percent of non-US born TB cases from recent immigrants (<2yrs) in ",loc," ", years[1],"-", years[11]))+
#add data source
labs(caption="Target data source: Online Tuberculosis Information System (OTIS)")
}
# ----------------------------------------------------------------------------
#' Plot LTBI Prevalence in Non-US-born Individuals by Age
calib_plt_us_ltbi_by_age <- function(loc) {
#set the location
loc1<-loc
if (loc1 != "US") {loc2<-"ST"} else {loc2<-loc1}
#read in the target data
#find file name
fn<-list.files(pattern="prev_USB_11_IGRA",system.file(paste0(loc2,"/calibration_targets/"),package = "MITUS"))
#subset into 2006-2016
target_df0 <-readRDS(system.file(paste0(loc2,"/calibration_targets/",fn),package="MITUS")) #read in the model output data
#sum across years
target_df<-as.data.frame(target_df0[,2]/rowSums(target_df0[,2:3])*100)
#update the column names for legend use
label<-c("5-14\nyears","15-24\nyears ",
"25-34\nyears","35-44\nyears","45-54\nyears",
"55-64\nyears","65-74\nyears","75+\nyears")
rownames(target_df)<-label
target_df<-as.data.frame(target_df); colnames(target_df)<-"percentage"
#read in the model output data
#find file name
fn<-list.files(pattern = "_USB_LTBI_pct", system.file(paste0(loc1, "/calibration_outputs/"), package="MITUS"))
outcomes_df0 <-readRDS(system.file(paste0(loc1,"/calibration_outputs/",fn), package="MITUS"))
outcomes_df<-as.data.frame(outcomes_df0)
rownames(outcomes_df)<-label;colnames(outcomes_df)<-"percentage"
#calculate the error
error_ltbi<-readRDS(system.file("US/error_ltbi.rds", package="MITUS"))[[2]]
# errors<-cbind(target_df-error_ltbi[,1],target_df+error_ltbi[,2],((target_df-error_ltbi[,1]+target_df+error_ltbi[,2])/2) )
error_df <- cbind.data.frame(label = label, error_ltbi, target_df)
colnames(error_df)[2:4] <- c('lower', 'upper', 'target')
#set up the plot options
ggplot() + theme_bw() + ylab("") + ylab("% of population") + xlab("Age group")+ theme(legend.position="bottom") +
scale_x_discrete(limits=label)+
#add the model output
geom_col(data=outcomes_df, aes(x=label, y=percentage, fill="dodgerblue2"),alpha=0.5) +
#add the target data
# geom_point(data=target_df, aes(x=label, y=percentage*100, color="black" ) ) +
#add legend
scale_color_manual("", values="black", label="LTBI % target")+
scale_fill_manual("", values="dodgerblue2", label="LTBI % model output")+
#add in the error bars
# geom_segment(aes(x=label, y=x[,1], xend=label, yend=x[,2]))+
geom_pointrange(data = error_df, mapping = aes(x = label, y = target, ymax = upper, ymin = lower, color = 'black')) +
# geom_pointrange(data=outcomes_df,aes(x=label, y=percentage, ymin=x[,1], ymax=x[,2]))+
#add plot title
ggtitle(paste0("IGRA+ LTBI in US born population 2011 in ",loc," by age (%)"))+
#add data source
labs(caption="target data estimated using national estimates from the\nNational Health and Nutrition Examination Survey (NHANES) data",
shape = 'target')
}
# ----------------------------------------------------------------------------
#' Plot LTBI Prevalence in Non-US-born Individuals by Age
calib_plt_nus_ltbi_by_age <- function(loc) {
#set the location
loc1<-loc
if (loc1 != "US") {loc2<-"ST"} else {loc2<-loc1}
#read in the target data
#find file name
fn<-list.files(pattern="prev_NUSB_11_IGRA",system.file(paste0(loc2,"/calibration_targets/"),package = "MITUS"))
#subset into 2006-2016
target_df0 <-readRDS(system.file(paste0(loc2,"/calibration_targets/",fn),package="MITUS")) #read in the model output data
#sum across years
target_df<-as.data.frame(target_df0[,2]/rowSums(target_df0[,2:3])*100)
#update the column names for legend use
label<-c("5-14\nyears","15-24\nyears ",
"25-34\nyears","35-44\nyears","45-54\nyears",
"55-64\nyears","65-74\nyears","75+\nyears")
rownames(target_df)<-label
target_df<-as.data.frame(target_df); colnames(target_df)<-"percentage"
#read in the model output data
#find file name
fn<-list.files(pattern = "NUSB_LTBI_pct", system.file(paste0(loc1, "/calibration_outputs/"), package="MITUS"))
outcomes_df0 <-readRDS(system.file(paste0(loc1,"/calibration_outputs/",fn), package="MITUS"))
outcomes_df<-as.data.frame(outcomes_df0)
rownames(outcomes_df)<-label;colnames(outcomes_df)<-"percentage"
#calculate the error
error_ltbi<-readRDS(system.file("US/error_ltbi.rds", package="MITUS"))[[1]]
error_df <- cbind.data.frame(label = label, error_ltbi, target_df)
colnames(error_df)[2:4] <- c('lower', 'upper', 'target')
#set up the plot options
ggplot() + theme_bw() + ylab("") + ylab("% of population") + xlab("Age group")+ theme(legend.position="bottom") +
scale_x_discrete(limits=label)+
#add the model output
geom_col(data=outcomes_df, aes(x=label, y=percentage, fill="dodgerblue2"),alpha=0.5) +
#add the target data
# geom_point(data=target_df, aes(x=label, y=percentage*100, color="black" ) ) +
#add legend
scale_color_manual("", values="black", label="LTBI % target")+
scale_fill_manual("", values="dodgerblue2", label="LTBI % model output")+
#add in the error bars
# geom_segment(aes(x=label, y=x[,1], xend=label, yend=x[,2]))+
geom_pointrange(data = error_df, mapping = aes(x = label, y = target, ymax = upper, ymin = lower, color = 'black')) +
# geom_pointrange(data=outcomes_df,aes(x=label, y=percentage, ymin=x[,1], ymax=x[,2]))+
#add plot title
ggtitle(paste0("IGRA+ LTBI in non-US born population 2011 in ",loc," by age (%)"))+
#add data source
labs(caption="target data estimated using national estimates from the\nNational Health and Nutrition Examination Survey (NHANES) data",
shape = 'target')
}
# ----------------------------------------------------------------------------
calib_plt_tb_deaths_by_year <- function(loc) {
#read in the target data
#find file name
#total tb deaths
fn<-list.files(pattern="tb_deaths",system.file(paste0(loc,"/calibration_targets/"),package = "MITUS"))
target_df0<-readRDS(system.file(paste0(loc,"/calibration_targets/",fn),package="MITUS"))
#get the last ten years
target_df0<-target_df0[(nrow(target_df0)-10):nrow(target_df0),] #last 10 years
##set the parameter for years
years<-target_df0[,1]
#create a dataframe of sum of tb deaths
target_df<-cbind(target_df0[,1],rowSums(target_df0[,2:11]))
target_df<-as.data.frame(target_df)
#scale down to thousands
# target_df[,2:4] <-target_df[,2:4]
#update the column names for legend use
colnames(target_df)<-c("year", "Total TB deaths target")
#read in the model output data
#find file name
fn<-list.files(pattern="TBdeaths_",system.file(paste0(loc,"/calibration_outputs/"),package = "MITUS"))
outcomes_df0 <-readRDS(system.file(paste0(loc,"/calibration_outputs/",fn), package="MITUS"))
outcomes_df0<-outcomes_df0[(length(outcomes_df0)-10):length(outcomes_df0)] #last 10 years
#format the outcomes data into one dataframe and update column names for legend
outcomes_df<-cbind(years,outcomes_df0*1e6)
outcomes_df<-as.data.frame(outcomes_df)
colnames(outcomes_df)<-c("year","Total TB deaths model output")
#reshape the target data
rtarget<-reshape2::melt(target_df,id="year",color=variable)
#reshape the outcomes data
routcomes<-reshape2::melt(outcomes_df,id ="year",color=variable)
#set up the plot options
ggplot() +
theme_bw() +
ylab("Deaths with TB") +
theme(legend.position="bottom") +
guides(colour=guide_legend(override.aes=list(linetype=c(1,2)))) +
expand_limits(y=c(0, max(rtarget$value, routcomes$value)*1.3)) +
scale_x_continuous(breaks = years) +
#add the target data
geom_line(data=rtarget, aes(x=year, y=value,color=variable), linetype="dashed") +
geom_point(data=rtarget, aes(x=year, y=value,color=variable))+
#add the model output
geom_line(data=routcomes, aes(x=year, y=value,color=variable)) +
#add legend
scale_color_manual(name = "", values=c("blue","black"))+
#add plot title
ggtitle(paste0("Total deaths with TB in ",loc," ", years[1],"-", years[11]))+
#add data source
labs(caption="Target data source: CDC WONDER\nTarget data is displayed for unsupressed case counts (>9 deaths/year.)")
}
# ----------------------------------------------------------------------------
calib_plt_tb_deaths_by_age_over_time <- function(loc) {
#read in the target data
#find file name
fn<-list.files(pattern="tb_deaths",system.file(paste0(loc,"/calibration_targets/"),package = "MITUS"))
target_df0 <-readRDS(system.file(paste0(loc,"/calibration_targets/",fn),package="MITUS")) #read in the model output data
#sum across years
target_df<-colSums(na.omit(target_df0[,2:11]))
#get the years
years<-target_df0[,1]
#update the column names for legend use
label<-c("0-4\nyears","5-14\nyears","15-24\nyears ",
"25-34\nyears","35-44\nyears","45-54\nyears",
"55-64\nyears","65-74\nyears","75-84\nyears","85+\nyears")
names(target_df)<-label
target_df<-as.data.frame(target_df); colnames(target_df)<-"total.deaths"
#read in the model output data
#find file name
fn<-list.files(pattern="TBdeathsAge",system.file(paste0(loc,"/calibration_outputs/"),package = "MITUS"))
outcomes_df <-readRDS(system.file(paste0(loc,"/calibration_outputs/",fn), package="MITUS"))
outcomes_df<-as.data.frame(outcomes_df)
rownames(outcomes_df)<-label;colnames(outcomes_df)<-"total.deaths"
#set up the plot options
ggplot() + theme_bw() + ylab("") +xlab("Age group")+ theme(legend.position="bottom") +
scale_x_discrete(limits=label)+
#add the model output
geom_col(data=outcomes_df, aes(x=label, y=total.deaths, fill="dodgerblue1"), alpha=.5) +
#add the target data
geom_point(data=target_df, aes(x=label, y=total.deaths,color="black" )) +
#add legend
scale_color_manual("", values="black", label="deaths with TB target")+
scale_fill_manual("", values="dodgerblue2", label="deaths with TB model output")+
#add plot title
ggtitle(paste0("Age distribution of Deaths with TB in ", loc, " ", years[1],"-",years[length(years)])) +
#add data source
labs(caption="Target data source: CDC WONDER")
}
# ----------------------------------------------------------------------------
calib_plt_trt_outcomes <- function(loc) {
#set the location
loc1<-loc
if (loc1 != "US") {loc2<-"ST"} else {loc2<-loc1}
#read in the target data
#find file name
#total tb deaths
fn<-list.files(pattern="tx_outcomes",system.file(paste0(loc2,"/calibration_targets/"),package = "MITUS"))
target_df<-readRDS(system.file(paste0(loc2,"/calibration_targets/",fn),package="MITUS"))[,1:3]
target_df<-as.data.frame(target_df)
#scale down to thousands
# target_df[,2:4] <-target_df[,2:4]
#update the column names for legend use
colnames(target_df)<-c("year","% discontinued tx target", "% died on tx target")
#read in the model output data
#find file name
fn<-list.files(pattern="txOutcomes",system.file(paste0(loc1,"/calibration_outputs/"),package = "MITUS"))
outcomes_df0 <-readRDS(system.file(paste0(loc1,"/calibration_outputs/",fn), package="MITUS"))
#format the outcomes data into one dataframe and update column names for legend
outcomes_df<-cbind(1993:2014,outcomes_df0[[1]],outcomes_df0[[2]])
outcomes_df<-as.data.frame(outcomes_df)
colnames(outcomes_df)<-c("year","% discontinued tx model output", "% died on tx model output")
#reshape the target data
rtarget<-reshape2::melt(target_df,id="year",color=variable)
#reshape the outcomes data
routcomes<-reshape2::melt(outcomes_df,id ="year",color=variable)
#set up the plot options
ggplot() + theme_bw() + ylab("") + theme(legend.position="bottom") + guides(colour=guide_legend(override.aes=list(linetype=rep(c(1,2),2)))) +
scale_x_continuous(breaks = c(1993,1995,2000,2005,2010,2014)) +
#add the target data
geom_line(data=rtarget, aes(x=year, y=value*100,color=variable), linetype="dashed") +
#add the model output
geom_line(data=routcomes, aes(x=year, y=value*100,color=variable)) +
#add legend
scale_color_manual(name = "", values=c("blue","blue", "red", "red"))+
#add plot title
ggtitle(paste0("Active TB Treatment Outcomes in ",loc," (%) 1993-2014"))+
#add data source
labs(caption="Target data source: National TB Report")
}
# ----------------------------------------------------------------------------
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.