濾過率
濾過率テンプレート。GFRとRPFの比をプロット。

R Code (ggplot2)
library(ggplot2) # ---- Filtration Fraction ---- # あなたのデータを入力してください df <- data.frame( x = c(), y = c() ) ggplot(df, aes(x = x, y = y)) + geom_point(size = 2) + geom_line() + scale_x_continuous(name = "Renal artery pressure (mmHg)", limits = c(0, 200)) + scale_y_continuous(name = "GFR or RPF (mL/min)", limits = c(0, 700)) + labs(title = "Filtration Fraction") + theme_bw(base_size = 14) + theme(plot.title = element_text(face = "bold", hjust = 0.5))







