人工呼吸器波形(術中)

術中人工呼吸器波形テンプレート。圧・流量・容量波形をプロット。

人工呼吸器術中波形
人工呼吸器波形(術中)

R Code (ggplot2)

library(ggplot2)

# ---- Ventilator Waveforms ----
# あなたのデータを入力してください
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, 6)) +
  scale_y_continuous(name = "Pressure/Flow/Volume", limits = c(-30, 40)) +
  labs(title = "Ventilator Waveforms") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))