症状重症度散布図

症状重症度散布図テンプレート。不安と抑うつの相関分析。

scatter散布図不安抑うつ精神科
症状重症度散布図

R Code (ggplot2)

library(ggplot2)

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

ggplot(df, aes(x = x, y = y)) +
  geom_point(size = 2) +
  geom_line() +
  scale_x_continuous(name = "Anxiety Score", limits = c(0, 40)) +
  scale_y_continuous(name = "Depression Score", limits = c(0, 40)) +
  labs(title = "Symptom Severity Scatter") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))