迅速導入挿管

RSI(迅速導入挿管)タイムラインテンプレート。各ステップのタイミングをプロット。

RSI挿管迅速導入
迅速導入挿管

R Code (ggplot2)

library(ggplot2)

# ---- Rapid Sequence Intubation ----
# あなたのデータを入力してください
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 (min)", limits = c(0, 10)) +
  scale_y_continuous(name = "Step", limits = c(0, 8)) +
  labs(title = "Rapid Sequence Intubation") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))