CO2応答曲線

CO2応答曲線テンプレート。中枢化学受容体の換気応答を記録。

CO2換気応答化学受容体呼吸調節
CO2応答曲線

R Code (ggplot2)

library(ggplot2)

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

ggplot(df, aes(x = x, y = y)) +
  geom_point(size = 2) +
  geom_line() +
  scale_x_continuous(name = "PaCO2 (mmHg)", limits = c(20, 80)) +
  scale_y_continuous(name = "Ventilation (L/min)", limits = c(0, 40)) +
  labs(title = "CO2 Response Curve") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))