肺コンプライアンス曲線

肺コンプライアンス曲線テンプレート。吸気・呼気のヒステリシスを表示。

コンプライアンスヒステリシス弾性
肺コンプライアンス曲線

R Code (ggplot2)

library(ggplot2)

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

ggplot(df, aes(x = x, y = y)) +
  geom_point(size = 2) +
  geom_line() +
  scale_x_continuous(name = "Pressure (cmH2O)", limits = c(-10, 30)) +
  scale_y_continuous(name = "Volume (mL)", limits = c(0, 6000)) +
  labs(title = "Lung Compliance Curve") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))