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

フランク-スターリング曲線テンプレート。前負荷と心拍出量の関係。

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

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 = "Preload (LVEDV)", limits = c(0, 300)) +
  scale_y_continuous(name = "Cardiac Output", limits = c(0, 15)) +
  labs(title = "Frank-Starling Curve") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))