呼吸不全分類PaO2×PaCO2

呼吸不全分類テンプレート。I型/II型の分類領域付きPaO2×PaCO2散布図。

respiratory failure呼吸不全I型II型PaO2PaCO2
呼吸不全分類PaO2×PaCO2

R Code (ggplot2)

library(ggplot2)

# ---- Respiratory Failure PaO2×PaCO2 Plot ----
# あなたのデータを入力してください
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 = "PaO2 (mmHg)", limits = c(30, 110)) +
  labs(title = "Respiratory Failure PaO2×PaCO2 Plot") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))