FEV1分布ヒストグラム

FEV1分布ヒストグラムテンプレート。FEV1予測値の度数分布。

histogramヒストグラムFEV1度数呼吸器
FEV1分布ヒストグラム

R Code (ggplot2)

library(ggplot2)

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

ggplot(df, aes(x = x, y = y)) +
  geom_point(size = 2) +
  geom_line() +
  scale_x_continuous(name = "FEV1 (% predicted)", limits = c(20, 120)) +
  scale_y_continuous(name = "Frequency (度数)", limits = c(0, 30)) +
  labs(title = "FEV1 Distribution Histogram") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))