尿流動態検査ヒートマップ

尿流動態検査の結果パターンをヒートマップで表示するテンプレート。

尿流動態ヒートマップ排尿機能
尿流動態検査ヒートマップ

R Code (ggplot2)

library(ggplot2)

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

ggplot(df, aes(x = x, y = y)) +
  geom_point(size = 2) +
  geom_line() +
  scale_x_continuous(name = "Parameter", limits = c(0, 4)) +
  scale_y_continuous(name = "Phase", limits = c(0, 3)) +
  labs(title = "Urodynamic Study Heatmap") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))