圧受容器反射

動脈圧受容器の応答曲線テンプレート。血圧と神経発火頻度の関係をプロット。

圧受容器血圧反射
圧受容器反射

R Code (ggplot2)

library(ggplot2)

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

ggplot(df, aes(x = x, y = y)) +
  geom_point(size = 2) +
  geom_line() +
  scale_x_continuous(name = "Mean arterial pressure (mmHg)", limits = c(40, 180)) +
  scale_y_continuous(name = "Nerve firing rate (Hz)", limits = c(0, 100)) +
  labs(title = "Baroreceptor Response") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))