先天性代謝異常検査値パターン

先天性代謝異常の検査値パターン比較ヒートマップ。

inborn errors先天代謝糖原病PKUヒートマップ
先天性代謝異常検査値パターン

R Code (ggplot2)

library(ggplot2)

# ---- Inborn Errors of Metabolism Lab Pattern ----
# あなたのデータを入力してください
df <- data.frame(
  x = c(),
  y = c()
)

ggplot(df, aes(x = x, y = y)) +
  geom_point(size = 2) +
  geom_line() +
  scale_x_continuous(name = "", limits = c(0, 1)) +
  scale_y_continuous(name = "", limits = c(0, 1)) +
  labs(title = "Inborn Errors of Metabolism Lab Pattern") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))