冠血流量

冠血流自動調節テンプレート。灌流圧と冠血流の関係をプロット。

冠血流自動調節圧-流量
冠血流量

R Code (ggplot2)

library(ggplot2)

# ---- Coronary 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 = "Aortic pressure (mmHg)", limits = c(40, 160)) +
  scale_y_continuous(name = "Coronary blood flow (mL/min)", limits = c(0, 300)) +
  labs(title = "Coronary Flow") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))