ガイトン心機能図

ガイトン心機能図テンプレート。心拍出量と静脈還流の関係。

guytonガイトン心拍出量静脈還流
ガイトン心機能図

R Code (ggplot2)

library(ggplot2)

# ---- Guyton Cardiac Function Diagram ----
# あなたのデータを入力してください
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(-4, 12)) +
  scale_y_continuous(name = "Cardiac Output (L/min)", limits = c(0, 15)) +
  labs(title = "Guyton Cardiac Function Diagram") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))