CH50補体活性

CH50補体活性テンプレート。血清希釈と溶血率の関係から補体価を決定。

CH50補体溶血
CH50補体活性

R Code (ggplot2)

library(ggplot2)

# ---- CH50 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 = "Serum dilution", limits = c(0, 1)) +
  scale_y_continuous(name = "% Hemolysis", limits = c(0, 100)) +
  labs(title = "CH50 Complement Activity") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))