呼吸仕事量

呼吸仕事量テンプレート。圧-容量曲線で囲まれた面積を評価。

呼吸仕事量圧-容量
呼吸仕事量

R Code (ggplot2)

library(ggplot2)

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

ggplot(df, aes(x = x, y = y)) +
  geom_point(size = 2) +
  geom_line() +
  scale_x_continuous(name = "Volume (L)", limits = c(0, 6)) +
  scale_y_continuous(name = "Pressure (cmH2O)", limits = c(-10, 20)) +
  labs(title = "Work of Breathing") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))