Light基準胸水判別プロット

Light基準を用いた滲出性vs漏出性胸水の判別プロットテンプレート。

Light基準胸水滲出性漏出性LDH
Light基準胸水判別プロット

R Code (ggplot2)

library(ggplot2)

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

ggplot(df, aes(x = x, y = y)) +
  geom_point(size = 2) +
  geom_line() +
  scale_x_continuous(name = "Pleural LDH/Serum LDH", limits = c(0, 2)) +
  scale_y_continuous(name = "Pleural Protein/Serum Protein", limits = c(0, 1)) +
  labs(title = "Light Criteria Pleural Effusion Plot") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))