ADH応答

ADH応答テンプレート。血漿浸透圧とADH分泌の関係をプロット。

ADH浸透圧分泌
ADH応答

R Code (ggplot2)

library(ggplot2)

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

ggplot(df, aes(x = x, y = y)) +
  geom_point(size = 2) +
  geom_line() +
  scale_x_continuous(name = "Plasma osmolality (mOsm/kg)", limits = c(275, 310)) +
  scale_y_continuous(name = "Plasma ADH (pg/mL)", limits = c(0, 10)) +
  labs(title = "ADH Response") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))