アルドステロン応答

アルドステロン応答テンプレート。カリウム濃度とアルドステロン分泌の関係をプロット。

アルドステロンカリウムRAAS
アルドステロン応答

R Code (ggplot2)

library(ggplot2)

# ---- Aldosterone 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 K+ (mEq/L)", limits = c(3, 6)) +
  scale_y_continuous(name = "Aldosterone (ng/dL)", limits = c(0, 30)) +
  labs(title = "Aldosterone Response") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))