鼻腔通気度検査

鼻腔通気度検査テンプレート。鼻腔抵抗の圧-流量曲線。

rhinomanometry鼻腔通気度鼻閉
鼻腔通気度検査

R Code (ggplot2)

library(ggplot2)

# ---- Rhinomanometry ----
# あなたのデータを入力してください
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 (Pa)", limits = c(-300, 300)) +
  scale_y_continuous(name = "Flow (cm³/s)", limits = c(-800, 800)) +
  labs(title = "Rhinomanometry") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))