熱希釈曲線

熱希釈法による心拍出量測定テンプレート。温度変化曲線をプロット。

熱希釈心拍出量Swan-Ganz
熱希釈曲線

R Code (ggplot2)

library(ggplot2)

# ---- Thermodilution Curve ----
# あなたのデータを入力してください
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 (s)", limits = c(0, 15)) +
  scale_y_continuous(name = "Temperature change (C)", limits = c(-1, 0)) +
  labs(title = "Thermodilution Curve") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))