補体活性推移

補体活性推移テンプレート。補体消費性疾患のモニタリングに使用。

補体CH50C3C4
補体活性推移

R Code (ggplot2)

library(ggplot2)

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

ggplot(df, aes(x = x, y = y)) +
  geom_point(size = 2) +
  geom_line() +
  scale_x_continuous(name = "Time (hours)", limits = c(0, 48)) +
  scale_y_continuous(name = "Complement Activity (CH50)", limits = c(0, 100)) +
  labs(title = "Complement Activity") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))