耐性-MIC散布図

耐性-MIC散布図テンプレート。抗菌薬感受性と耐性率の関係。

scatter散布図MIC耐性微生物
耐性-MIC散布図

R Code (ggplot2)

library(ggplot2)

# ---- Resistance vs MIC Scatter ----
# あなたのデータを入力してください
df <- data.frame(
  x = c(),
  y = c()
)

ggplot(df, aes(x = x, y = y)) +
  geom_point(size = 2) +
  geom_line() +
  scale_x_continuous(name = "MIC (μg/mL)", limits = c(0, 128)) +
  scale_y_continuous(name = "Resistance Rate (%)", limits = c(0, 100)) +
  labs(title = "Resistance vs MIC Scatter") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))