ウィガースダイアグラム

ウィガースダイアグラムテンプレート。心周期の圧・容量・ECG・心音の時間経過。

ウィガース心周期大動脈圧心室圧
ウィガースダイアグラム

R Code (ggplot2)

library(ggplot2)

# ---- Wiggers Diagram ----
# あなたのデータを入力してください
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) / Volume (mL)", limits = c(0, 130)) +
  labs(title = "Wiggers Diagram") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))