fig2_A <- ggplot(df_UTEC_Jun24, aes(x=Method, y=Percentile,fill = Target)) +
geom_col(position ="dodge")+
scale_fill_manual(values = c(
"CTX" = "blue",
"KPC" = "red",
"NDM" = "yellow"),
name = NULL)+
ylim(0,3)+
labs(x = "Método",
y = "Nivel de detección")+
theme_minimal()+
theme(legend.position = "top")
fig2_B <- ggplot(df_UTEC_Feb25, aes(x=Method, y=Percentile,fill = Target)) +
geom_col(position ="dodge")+
scale_fill_manual(values = c(
"CTX" = "blue",
"KPC" = "red",
"NDM" = "yellow"),
name = NULL)+
ylim(0,3)+
labs(x = "Método",
y = "Nivel de detección")+
theme_minimal()+
theme(legend.position = "top")
fig2_C <- ggplot(df_UTEC_Abr25, aes(x=Method, y=Percentile,fill = Target)) +
geom_col(position ="dodge")+
scale_fill_manual(values = c(
"CTX" = "blue",
"KPC" = "red",
"NDM" = "yellow"),
name = NULL)+
ylim(0,3)+
labs(x = "Método",
y = "Nivel de detección")+
theme_minimal()+
theme(legend.position = "top")
fig2_D <- ggplot(df_UPCH_Jun24, aes(x=Method, y=Percentile,fill = Target)) +
geom_col(position ="dodge")+
scale_fill_manual(values = c(
"CTX" = "blue",
"KPC" = "red",
"NDM" = "yellow"),
name = NULL)+
ylim(0,3)+
labs(x = "Método",
y = "Nivel de detección")+
theme_minimal()+
theme(legend.position = "top")
fig2_E <- ggplot(df_UPCH_Feb25, aes(x=Method, y=Percentile,fill = Target)) +
geom_col(position ="dodge")+
scale_fill_manual(values = c(
"CTX" = "blue",
"KPC" = "red",
"NDM" = "yellow"),
name = NULL)+
ylim(0,3)+
labs(x = "Método",
y = "Nivel de detección")+
theme_minimal()+
theme(legend.position = "top")
fig2_F <- ggplot(df_UPCH_Abr25, aes(x=Method, y=Percentile,fill = Target)) +
geom_col(position ="dodge")+
scale_fill_manual(values = c(
"CTX" = "blue",
"KPC" = "red",
"NDM" = "yellow"),
name = NULL)+
ylim(0,3)+
labs(x = "Método",
y = "Nivel de detección")+
theme_minimal()+
theme(legend.position = "top")
fig2_A + fig2_B + fig2_C + fig2_D + fig2_E + fig2_F + plot_annotation(tag_levels = c("A","B", "C", "D", "E", "F"))