CFUカウントプロット

コロニー形成単位(CFU)のカウントプロットテンプレート。

CFUコロニー菌数
CFUカウントプロット

R Code (ggplot2)

library(ggplot2)

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

ggplot(df, aes(x = x, y = y)) +
  geom_point(size = 2) +
  geom_line() +
  scale_x_continuous(name = "Sample", limits = c(0, 8)) +
  scale_y_continuous(name = "CFU/mL (log10)", limits = c(0, 10)) +
  labs(title = "CFU Count Plot") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))