ティンパノグラム

ティンパノグラムテンプレート。中耳機能の評価に使用。Type A/B/Cの分類。

ティンパノグラム中耳インピーダンス鼓膜
ティンパノグラム

R Code (ggplot2)

library(ggplot2)

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

ggplot(df, aes(x = x, y = y)) +
  geom_point(size = 2) +
  geom_line() +
  scale_x_continuous(name = "Pressure (daPa)", limits = c(-400, 200)) +
  scale_y_continuous(name = "Compliance (mL)", limits = c(0, 2)) +
  labs(title = "Tympanogram") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))