細胞数セミログ

細胞数セミログテンプレート。細胞増殖を対数軸で表示。

semi-logセミログ細胞増殖解剖
細胞数セミログ

R Code (ggplot2)

library(ggplot2)

# ---- Cell Count Semi-log ----
# あなたのデータを入力してください
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 (days)", limits = c(0, 14)) +
  scale_y_log10(name = "Cell Count", limits = c(100, 1e+07)) +
  labs(title = "Cell Count Semi-log") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))