純音-SRT散布図

純音聴力-SRT散布図テンプレート。純音聴力とSRTの相関。

scatter散布図PTASRT耳鼻
純音-SRT散布図

R Code (ggplot2)

library(ggplot2)

# ---- PTA vs SRT 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 = "PTA (dB HL)", limits = c(0, 100)) +
  scale_y_continuous(name = "SRT (dB HL)", limits = c(0, 100)) +
  labs(title = "PTA vs SRT Scatter") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))