MIC測定

MIC(最小発育阻止濃度)測定テンプレート。微量液体希釈法での結果をプロット。

MIC抗菌薬感受性
MIC測定

R Code (ggplot2)

library(ggplot2)

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

ggplot(df, aes(x = x, y = y)) +
  geom_point(size = 2) +
  geom_line() +
  scale_x_continuous(name = "Antibiotic concentration (ug/mL)", limits = c(0, 10)) +
  scale_y_continuous(name = "OD600", limits = c(0, 1.5)) +
  labs(title = "MIC Determination") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))