統合失調症無再発曲線
統合失調症の薬物治療別無再発曲線テンプレート。

R Code (ggplot2)
library(ggplot2) # ---- Schizophrenia Relapse-Free ---- # あなたのデータを入力してください df <- data.frame( x = c(), y = c() ) ggplot(df, aes(x = x, y = y)) + geom_point(size = 2) + geom_line() + scale_x_continuous(name = "Time (months)", limits = c(0, 24)) + scale_y_continuous(name = "Relapse-Free Survival", limits = c(0, 1)) + labs(title = "Schizophrenia Relapse-Free") + theme_bw(base_size = 14) + theme(plot.title = element_text(face = "bold", hjust = 0.5))







