FEV1低下曲線

FEV1低下曲線テンプレート。COPD患者のFEV1経年低下を表示。

curve曲線FEV1COPD低下
FEV1低下曲線

R Code (ggplot2)

library(ggplot2)

# ---- FEV1 Decline 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 = "Age (years)", limits = c(20, 80)) +
  scale_y_continuous(name = "FEV1 (L)", limits = c(0, 5)) +
  labs(title = "FEV1 Decline Curve") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))