静脈還流曲線

静脈還流曲線テンプレート。右房圧と静脈還流量の関係をプロット。

静脈還流右房圧心拍出量
静脈還流曲線

R Code (ggplot2)

library(ggplot2)

# ---- Venous Return 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 = "Right atrial pressure (mmHg)", limits = c(-2, 10)) +
  scale_y_continuous(name = "Venous return (L/min)", limits = c(0, 10)) +
  labs(title = "Venous Return Curve") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))