造血因子応答曲線

造血因子応答曲線テンプレート。EPO投与量とヘモグロビン上昇の関係。

curve曲線EPO造血因子血液
造血因子応答曲線

R Code (ggplot2)

library(ggplot2)

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

ggplot(df, aes(x = x, y = y)) +
  geom_point(size = 2) +
  geom_line() +
  scale_x_continuous(name = "EPO Dose (U/kg)", limits = c(0, 300)) +
  scale_y_continuous(name = "Hb Change (g/dL)", limits = c(0, 5)) +
  labs(title = "Growth Factor Response Curve") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))