日和見感染症×CD4数

日和見感染症の発症リスクとCD4数の関係テンプレート。HIV/AIDS指標。

opportunistic日和見CD4HIVAIDSPCP
日和見感染症×CD4数

R Code (ggplot2)

library(ggplot2)

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

ggplot(df, aes(x = x, y = y)) +
  geom_point(size = 2) +
  geom_line() +
  scale_x_continuous(name = "CD4 Count (cells/µL)", limits = c(0, 500)) +
  scale_y_continuous(name = "Infection Risk", limits = c(0, 1)) +
  labs(title = "Opportunistic Infection vs CD4 Count") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))