Skip to content

Commit 32a031b

Browse files
Add labels to plot
1 parent 9b086f6 commit 32a031b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

analyses/simulate_transmission/epidemics_odin_interop.qmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@ library(ggplot2)
2929

3030
### Prepare population initial conditions
3131

32-
3332
```{r}
3433
# get social contacts data
3534
polymod <- socialmixr::polymod
@@ -129,5 +128,6 @@ y <- melt(y, id.vars = c("t"))
129128
130129
ggplot(y[variable %like% "I"]) +
131130
geom_line(aes(t, value, col = variable)) +
131+
labs(x = "Time", y = "# Infectious", col = "Age group") +
132132
facet_grid(~variable)
133133
```

0 commit comments

Comments
 (0)