抗菌薬殺菌性/濃度依存性4象限分類

抗菌薬の殺菌性/静菌性×濃度依存性/時間依存性の4象限分類テンプレート。

antibiotic抗菌薬殺菌性濃度依存時間依存4象限
抗菌薬殺菌性/濃度依存性4象限分類

R Code (ggplot2)

library(ggplot2)

# ---- Antibiotic Kill Mode 4-Quadrant ----
# あなたのデータを入力してください
df <- data.frame(
  x = c(),
  y = c()
)

ggplot(df, aes(x = x, y = y)) +
  geom_point(size = 2) +
  geom_line() +
  scale_x_continuous(name = "Concentration Dependence", limits = c(0, 10)) +
  scale_y_continuous(name = "Bactericidal Activity", limits = c(0, 10)) +
  labs(title = "Antibiotic Kill Mode 4-Quadrant") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))