聴力レベルヒストグラム

聴力レベルヒストグラムテンプレート。聴力検査値の度数分布。

histogramヒストグラム聴力度数耳鼻
聴力レベルヒストグラム

R Code (ggplot2)

library(ggplot2)

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

ggplot(df, aes(x = x, y = y)) +
  geom_point(size = 2) +
  geom_line() +
  scale_x_continuous(name = "Hearing Level (dB HL)", limits = c(0, 100)) +
  scale_y_continuous(name = "Frequency (度数)", limits = c(0, 30)) +
  labs(title = "Hearing Level Histogram") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))