高解像度食道内圧検査

高解像度食道内圧検査テンプレート。食道運動障害の評価。

hrm食道内圧マノメトリー嚥下
高解像度食道内圧検査

R Code (ggplot2)

library(ggplot2)

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

ggplot(df, aes(x = x, y = y)) +
  geom_point(size = 2) +
  geom_line() +
  scale_x_continuous(name = "Time (sec)", limits = c(1, 30)) +
  scale_y_continuous(name = "Sensor Position (cm)", limits = c(1, 20)) +
  labs(title = "High-Resolution Manometry (HRM)") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))