甲状腺ホルモン値

甲状腺ホルモン値テンプレート。甲状腺機能亢進/低下の検査値パターンをプロット。

甲状腺T3T4TSH
甲状腺ホルモン値

R Code (ggplot2)

library(ggplot2)

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

ggplot(df, aes(x = x, y = y)) +
  geom_point(size = 2) +
  geom_line() +
  scale_x_continuous(name = "Condition", limits = c(0, 5)) +
  scale_y_continuous(name = "T3 / T4 / TSH level", limits = c(0, 10)) +
  labs(title = "Thyroid Hormone Levels") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))