腫瘍増殖セミログ
腫瘍増殖セミログテンプレート。腫瘍体積の経時変化を対数軸で表示。

R Code (ggplot2)
library(ggplot2) # ---- Tumor Growth 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, 60)) + scale_y_log10(name = "Tumor Volume (mm³)", limits = c(1, 10000)) + labs(title = "Tumor Growth Semi-log") + theme_bw(base_size = 14) + theme(plot.title = element_text(face = "bold", hjust = 0.5))







