クローン病vsUC活動性スコア比較
クローン病(CDAI)vs潰瘍性大腸炎(Mayo)の活動性スコア推移比較テンプレート。

R Code (ggplot2)
library(ggplot2) # ---- Crohn vs UC Activity Score Comparison ---- # あなたのデータを入力してください df <- data.frame( x = c(), y = c() ) ggplot(df, aes(x = x, y = y)) + geom_point(size = 2) + geom_line() + scale_x_continuous(name = "Week", limits = c(0, 52)) + scale_y_continuous(name = "Activity Score", limits = c(0, 500)) + labs(title = "Crohn vs UC Activity Score Comparison") + theme_bw(base_size = 14) + theme(plot.title = element_text(face = "bold", hjust = 0.5))







