心拍出量-心拍数曲線

心拍数と心拍出量の関係テンプレート。至適心拍数と最大心拍出量をプロット。

心拍出量心拍数
心拍出量-心拍数曲線

R Code (ggplot2)

library(ggplot2)

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

ggplot(df, aes(x = x, y = y)) +
  geom_point(size = 2) +
  geom_line() +
  scale_x_continuous(name = "Heart rate (bpm)", limits = c(40, 200)) +
  scale_y_continuous(name = "Cardiac output (L/min)", limits = c(0, 20)) +
  labs(title = "Cardiac Output vs HR") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))