TSHフィードバック

TSH-T4フィードバックテンプレート。甲状腺ホルモンの負のフィードバックをプロット。

TSHT4フィードバック甲状腺
TSHフィードバック

R Code (ggplot2)

library(ggplot2)

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

ggplot(df, aes(x = x, y = y)) +
  geom_point(size = 2) +
  geom_line() +
  scale_x_continuous(name = "Free T4 (ng/dL)", limits = c(0, 4)) +
  scale_y_continuous(name = "TSH (mIU/L)", limits = c(0, 50)) +
  labs(title = "TSH Feedback") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))