心臓PVループ

心臓圧容積ループテンプレート。心機能の評価に使用。

PVループ圧容積心機能前負荷
心臓PVループ

R Code (ggplot2)

library(ggplot2)

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

ggplot(df, aes(x = x, y = y)) +
  geom_point(size = 2) +
  geom_line() +
  scale_x_continuous(name = "Volume (mL)", limits = c(0, 160)) +
  scale_y_continuous(name = "Pressure (mmHg)", limits = c(0, 140)) +
  labs(title = "Cardiac PV Loop") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))