カプノグラフィー波形

カプノグラフィー波形テンプレート。呼気終末CO2濃度の経時変化をモニタリング。

カプノグラフィーEtCO2モニタリング
カプノグラフィー波形

R Code (ggplot2)

library(ggplot2)

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

ggplot(df, aes(x = x, y = y)) +
  geom_point(size = 2) +
  geom_line() +
  scale_x_continuous(name = "Time (s)", limits = c(0, 10)) +
  scale_y_continuous(name = "EtCO2 (mmHg)", limits = c(0, 50)) +
  labs(title = "Capnography Waveform") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))