両側オージオグラム
両側オージオグラムテンプレート。左右の聴力検査結果を1枚のグラフに記録。

R Code (ggplot2)
library(ggplot2) # ---- Bilateral 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 = "Bilateral Audiogram") + theme_bw(base_size = 14) + theme(plot.title = element_text(face = "bold", hjust = 0.5))






