尿浸透圧ダイアグラム
尿浸透圧ダイアグラムテンプレート。尿濃縮・希釈障害の評価に使用。

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







