血清蛋白分画パターン比較

血清蛋白分画パターン比較テンプレート。正常・肝硬変・骨髄腫・炎症。

protein蛋白分画電気泳動M蛋白肝硬変
血清蛋白分画パターン比較

R Code (ggplot2)

library(ggplot2)

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

ggplot(df, aes(x = x, y = y)) +
  geom_point(size = 2) +
  geom_line() +
  scale_x_continuous(name = "Migration", limits = c(0, 7)) +
  scale_y_continuous(name = "Density", limits = c(0, 1)) +
  labs(title = "Serum Protein Electrophoresis Patterns") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))