心周期イベント

心周期の主要イベントテンプレート。弁開閉のタイミングをプロット。

心周期開閉
心周期イベント

R Code (ggplot2)

library(ggplot2)

# ---- Cardiac Cycle Events ----
# あなたのデータを入力してください
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 (ms)", limits = c(0, 800)) +
  scale_y_continuous(name = "Pressure (mmHg)", limits = c(0, 130)) +
  labs(title = "Cardiac Cycle Events") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))