創傷治癒段階

創傷治癒段階テンプレート。炎症・増殖・成熟の各段階をプロット。

創傷治癒炎症増殖成熟
創傷治癒段階

R Code (ggplot2)

library(ggplot2)

# ---- Wound Healing Phases ----
# あなたのデータを入力してください
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 (days)", limits = c(0, 30)) +
  scale_y_continuous(name = "Activity level", limits = c(0, 10)) +
  labs(title = "Wound Healing Phases") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))