乳酸-死亡率散布図

乳酸-死亡率散布図テンプレート。乳酸値と転帰の関係。

scatter散布図乳酸死亡率救急
乳酸-死亡率散布図

R Code (ggplot2)

library(ggplot2)

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

ggplot(df, aes(x = x, y = y)) +
  geom_point(size = 2) +
  geom_line() +
  scale_x_continuous(name = "Lactate (mmol/L)", limits = c(0, 15)) +
  scale_y_continuous(name = "Mortality (%)", limits = c(0, 100)) +
  labs(title = "Lactate vs Mortality Scatter") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))