甲状腺機能バイオリン

甲状腺機能バイオリンプロットテンプレート。甲状腺疾患のTSH分布比較。

violinバイオリン甲状腺TSH内分泌
甲状腺機能バイオリン

R Code (ggplot2)

library(ggplot2)

# ---- Thyroid Function Violin ----
# あなたのデータを入力してください
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, 3)) +
  scale_y_continuous(name = "TSH (mIU/L)", limits = c(0, 20)) +
  labs(title = "Thyroid Function Violin") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))