VO2-運動負荷散布図

VO2-運動負荷散布図テンプレート。運動強度と酸素消費量の関係。

scatter散布図VO2運動生理学
VO2-運動負荷散布図

R Code (ggplot2)

library(ggplot2)

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

ggplot(df, aes(x = x, y = y)) +
  geom_point(size = 2) +
  geom_line() +
  scale_x_continuous(name = "Workload (W)", limits = c(0, 300)) +
  scale_y_continuous(name = "VO2 (mL/min)", limits = c(0, 3000)) +
  labs(title = "VO2-Workload Scatter") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))