対向流増幅系

腎臓の対向流増幅系テンプレート。皮質から髄質への浸透圧勾配をプロット。

対向流浸透圧尿濃縮
対向流増幅系

R Code (ggplot2)

library(ggplot2)

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

ggplot(df, aes(x = x, y = y)) +
  geom_point(size = 2) +
  geom_line() +
  scale_x_continuous(name = "Position (cortex to medulla)", limits = c(0, 10)) +
  scale_y_continuous(name = "Osmolality (mOsm/kg)", limits = c(200, 1400)) +
  labs(title = "Countercurrent Multiplier") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))