血行動態波形

血行動態波形テンプレート。各心腔の圧波形を記録。

血行動態圧波形カテーテルSwan-Ganz
血行動態波形

R Code (ggplot2)

library(ggplot2)

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