心拍出量-心拍数散布回帰

心拍出量-心拍数散布回帰テンプレート。心拍数と心拍出量の回帰分析。

scatterregression心拍出量心拍数
心拍出量-心拍数散布回帰

R Code (ggplot2)

library(ggplot2)

# ---- CO vs HR Scatter Regression ----
# あなたのデータを入力してください
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(2, 25)) +
  labs(title = "CO vs HR Scatter Regression") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))