透析種類別溶質クリアランス

透析の種類別溶質クリアランス比較テンプレート。HD vs PD。

dialysis透析クリアランスHDPD溶質
透析種類別溶質クリアランス

R Code (ggplot2)

library(ggplot2)

# ---- Dialysis Modality Solute Clearance ----
# あなたのデータを入力してください
df <- data.frame(
  x = c(),
  y = c()
)

ggplot(df, aes(x = x, y = y)) +
  geom_point(size = 2) +
  geom_line() +
  scale_x_continuous(name = "Molecular Weight (Da)", limits = c(0, 50000)) +
  scale_y_continuous(name = "Clearance (mL/min)", limits = c(0, 200)) +
  labs(title = "Dialysis Modality Solute Clearance") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))