細菌増殖曲線

細菌増殖曲線テンプレート。対数期・定常期・死滅期の記録に使用。

増殖曲線対数期定常期細菌
細菌増殖曲線

R Code (ggplot2)

library(ggplot2)

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

ggplot(df, aes(x = x, y = y)) +
  geom_point(size = 2) +
  geom_line() +
  scale_x_continuous(name = "Time (hours)", limits = c(0, 24)) +
  scale_y_continuous(name = "log CFU/mL", limits = c(0, 10)) +
  labs(title = "Bacterial Growth Curve") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))