凝固因子レベル

凝固因子活性レベルテンプレート。各因子の活性を正常値と比較。

凝固因子活性欠乏
凝固因子レベル

R Code (ggplot2)

library(ggplot2)

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

ggplot(df, aes(x = x, y = y)) +
  geom_point(size = 2) +
  geom_line() +
  scale_x_continuous(name = "Factor", limits = c(0, 10)) +
  scale_y_continuous(name = "Activity (%)", limits = c(0, 150)) +
  labs(title = "Coagulation Factor Levels") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))