突然変異率

突然変異率テンプレート。世代数と変異頻度の関係をプロット。

突然変異耐性頻度
突然変異率

R Code (ggplot2)

library(ggplot2)

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

ggplot(df, aes(x = x, y = y)) +
  geom_point(size = 2) +
  geom_line() +
  scale_x_continuous(name = "Generation", limits = c(0, 100)) +
  scale_y_log10(name = "Resistant mutant frequency", limits = c(1e-09, 0.001)) +
  labs(title = "Mutation Rate") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))