バルサルバ手技位相

バルサルバ手技位相テンプレート。自律神経機能評価の圧変化記録。

バルサルバ自律神経血圧変動位相
バルサルバ手技位相

R Code (ggplot2)

library(ggplot2)

# ---- Valsalva Maneuver Phases ----
# あなたのデータを入力してください
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 (seconds)", limits = c(0, 30)) +
  scale_y_continuous(name = "Blood Pressure (mmHg)", limits = c(60, 160)) +
  labs(title = "Valsalva Maneuver Phases") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))