標準オージオグラム

標準オージオグラムテンプレート。純音聴力検査結果の記録に使用。

オージオグラム聴力聴力検査dB
標準オージオグラム

R Code (ggplot2)

library(ggplot2)

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

ggplot(df, aes(x = x, y = y)) +
  geom_point(size = 2) +
  geom_line() +
  scale_x_continuous(name = "Frequency (Hz)", limits = c(125, 8000)) +
  scale_y_continuous(name = "Hearing Level (dB HL)", limits = c(-10, 120)) +
  labs(title = "Standard Audiogram") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))