腎血漿流量

腎血漿流量テンプレート。灌流圧とRPFの関係をプロット。

RPF腎血漿流量
腎血漿流量

R Code (ggplot2)

library(ggplot2)

# ---- Renal Plasma Flow ----
# あなたのデータを入力してください
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 perfusion pressure (mmHg)", limits = c(0, 200)) +
  scale_y_continuous(name = "RPF (mL/min)", limits = c(0, 700)) +
  labs(title = "Renal Plasma Flow") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))