カルシウム-PTH関係

カルシウム-PTH関係テンプレート。血清Caの変化に対するPTH応答をプロット。

カルシウムPTH副甲状腺
カルシウム-PTH関係

R Code (ggplot2)

library(ggplot2)

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

ggplot(df, aes(x = x, y = y)) +
  geom_point(size = 2) +
  geom_line() +
  scale_x_continuous(name = "Serum calcium (mg/dL)", limits = c(6, 14)) +
  scale_y_continuous(name = "PTH (pg/mL)", limits = c(0, 200)) +
  labs(title = "Calcium-PTH Relationship") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))