eGFR-PSA散布図

eGFR-PSA散布図テンプレート。腎機能とPSA値の相関。

scatter散布図eGFRPSA泌尿器
eGFR-PSA散布図

R Code (ggplot2)

library(ggplot2)

# ---- eGFR vs PSA 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 = "eGFR (mL/min/1.73m²)", limits = c(0, 120)) +
  scale_y_continuous(name = "PSA (ng/mL)", limits = c(0, 20)) +
  labs(title = "eGFR vs PSA Scatter") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))