蓄積係数

蓄積係数テンプレート。反復投与における血中濃度の蓄積をプロット。

蓄積反復投与定常状態
蓄積係数

R Code (ggplot2)

library(ggplot2)

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

ggplot(df, aes(x = x, y = y)) +
  geom_point(size = 2) +
  geom_line() +
  scale_x_continuous(name = "Dose number", limits = c(1, 10)) +
  scale_y_continuous(name = "Css/C1 ratio", limits = c(0, 5)) +
  labs(title = "Accumulation Factor") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))