I have the following data frame:
week | year | politicalization_sum |
---|---|---|
52 | 2020 | 5 |
53 | 2020 | 10 |
1 | 2021 | 0 |
2 | 2021 | 4 |
3 | 2021 | 11 |
For this data frame, I want to plot the course of politicalization_sum
chronologically. I tried the following:
per_week <- per_week %>%
arrange(desc(week))
ggplot(per_week, mapping = aes(x = week, y = politicalization_sum)) +
geom_point() +
geom_smooth()
With this, the x-axis starts at week 0 and goes to week 53, with a large gap in the middle. What can I do to have the x-axis start at week 52 in 2020 and end at week 3 in 2021?