難聴タイプ別オージオグラム比較
難聴タイプ別オージオグラム比較テンプレート。伝音性/感音性/混合性の3パターン。

R Code (ggplot2)
library(ggplot2) # ---- Hearing Loss Type Audiogram Comparison ---- # あなたのデータを入力してください 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)", limits = c(-10, 120)) + labs(title = "Hearing Loss Type Audiogram Comparison") + theme_bw(base_size = 14) + theme(plot.title = element_text(face = "bold", hjust = 0.5))







