フランク・スターリング曲線

フランク・スターリング曲線テンプレート。前負荷と一回拍出量の関係をプロット。

フランク・スターリング前負荷心拍出量
フランク・スターリング曲線

R Code (ggplot2)

library(ggplot2)

# ---- Frank-Starling 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 = "End-diastolic volume (mL)", limits = c(0, 200)) +
  scale_y_continuous(name = "Stroke volume (mL)", limits = c(0, 150)) +
  labs(title = "Frank-Starling Curve") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))