阻止円径分布

阻止円径分布テンプレート。ディスク拡散法の結果解析に使用。

阻止円ディスク法感受性耐性
阻止円径分布

R Code (ggplot2)

library(ggplot2)

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

ggplot(df, aes(x = x, y = y)) +
  geom_point(size = 2) +
  geom_line() +
  scale_x_continuous(name = "Zone Diameter (mm)", limits = c(0, 50)) +
  scale_y_continuous(name = "Number of Isolates", limits = c(0, 50)) +
  labs(title = "Zone Diameter Distribution") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))