IBD活動性バイオリン

IBD活動性バイオリンプロットテンプレート。炎症性腸疾患のCRP分布比較。

violinバイオリンIBDCRP消化器
IBD活動性バイオリン

R Code (ggplot2)

library(ggplot2)

# ---- IBD Activity 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 = "Disease", limits = c(0, 3)) +
  scale_y_continuous(name = "CRP (mg/dL)", limits = c(0, 10)) +
  labs(title = "IBD Activity Violin") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))