尿濃縮
尿濃縮テンプレート。尿流量と尿浸透圧の関係をプロット。ADHの影響を評価。

R Code (ggplot2)
library(ggplot2) # ---- Urine Concentration ---- # あなたのデータを入力してください df <- data.frame( x = c(), y = c() ) ggplot(df, aes(x = x, y = y)) + geom_point(size = 2) + geom_line() + scale_x_continuous(name = "Flow rate (mL/min)", limits = c(0, 20)) + scale_y_continuous(name = "Urine osmolality (mOsm/kg)", limits = c(0, 1200)) + labs(title = "Urine Concentration") + theme_bw(base_size = 14) + theme(plot.title = element_text(face = "bold", hjust = 0.5))







