聴力低下進行曲線

聴力低下進行曲線テンプレート。加齢性難聴の進行を追跡。

curve曲線聴力難聴進行
聴力低下進行曲線

R Code (ggplot2)

library(ggplot2)

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

ggplot(df, aes(x = x, y = y)) +
  geom_point(size = 2) +
  geom_line() +
  scale_x_continuous(name = "Age (years)", limits = c(20, 90)) +
  scale_y_continuous(name = "Hearing Level (dB HL)", limits = c(0, 80)) +
  labs(title = "Hearing Loss Progression Curve") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))