フォレスター分類プロット

フォレスター分類プロットテンプレート。心係数×肺動脈楔入圧の4象限分類。

forresterフォレスターCIPCWP心不全ショック
フォレスター分類プロット

R Code (ggplot2)

library(ggplot2)

# ---- Forrester Classification Plot ----
# あなたのデータを入力してください
df <- data.frame(
  x = c(),
  y = c()
)

ggplot(df, aes(x = x, y = y)) +
  geom_point(size = 2) +
  geom_line() +
  scale_x_continuous(name = "PCWP (mmHg)", limits = c(0, 30)) +
  scale_y_continuous(name = "CI (L/min/m²)", limits = c(0, 5)) +
  labs(title = "Forrester Classification Plot") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))