eGFR-シスタチン散布回帰
eGFR散布回帰テンプレート。Cr式とCys-C式の一致度分析。

R Code (ggplot2)
library(ggplot2) # ---- eGFR vs Cystatin 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 = "Cr-based eGFR", limits = c(0, 120)) + scale_y_continuous(name = "Cystatin C-based eGFR", limits = c(0, 120)) + labs(title = "eGFR vs Cystatin Scatter Regression") + theme_bw(base_size = 14) + theme(plot.title = element_text(face = "bold", hjust = 0.5))







