ウィガース図テンプレート

ウィガース図テンプレート。心周期の圧変化・弁の開閉・ECGの対応を記録。

ウィガース心周期大動脈圧左室圧
ウィガース図テンプレート

R Code (ggplot2)

library(ggplot2)

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