免疫状態レーダー

免疫状態の多面的評価レーダーチャートテンプレート。

免疫状態レーダー評価リンパ球
免疫状態レーダー

R Code (ggplot2)

library(ggplot2)

# ---- Immune Status Radar ----
# あなたのデータを入力してください
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, 6)) +
  scale_y_continuous(name = "", limits = c(0, 1)) +
  labs(title = "Immune Status Radar") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))