膀胱内圧測定図

膀胱内圧測定図テンプレート。膀胱機能(蓄尿・排尿)の評価に使用。

膀胱内圧シストメトリー蓄尿排尿
膀胱内圧測定図

R Code (ggplot2)

library(ggplot2)

# ---- Cystometrogram ----
# あなたのデータを入力してください
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 (mL)", limits = c(0, 600)) +
  scale_y_continuous(name = "Pressure (cmH2O)", limits = c(0, 100)) +
  labs(title = "Cystometrogram") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))