小児輸液計算

小児輸液計算テンプレート。体重別の維持輸液量をプロット。Holliday-Segar式。

輸液小児Holliday-Segar
小児輸液計算

R Code (ggplot2)

library(ggplot2)

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

ggplot(df, aes(x = x, y = y)) +
  geom_point(size = 2) +
  geom_line() +
  scale_x_continuous(name = "Body weight (kg)", limits = c(0, 40)) +
  scale_y_continuous(name = "Maintenance fluid (mL/hr)", limits = c(0, 80)) +
  labs(title = "Fluid Calculation") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))