For the variable SelfEthnicity there is meant to be 4 levels.
I have made it so there should not be a reference category, but the R output still only shows 3 Ethnicities.
> poissonmodel <-glm(rate~0+SelfEthnicity+Force, family=poisson,data=df_merge)
> dput(head(df_merge, 20))
structure(list(Force = structure(c(1L, 1L, 1L, 1L, 1L, 1L, 1L,
1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L), levels = c("BTP",
"Cumbria", "South-Wales"), class = "factor"), SelfEthnicity = structure(c(1L,
1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L,
1L, 1L, 1L), levels = c("Asian", "Black", "Other", "White"), class = "factor"),
month = c("2017/10/01", "2017/11/01", "2017/12/01", "2018/01/01",
"2018/02/01", "2018/04/01", "2018/05/01", "2018/06/01", "2018/07/01",
"2018/08/01", "2018/09/01", "2018/10/01", "2018/11/01", "2018/12/01",
"2019/01/01", "2019/02/01", "2019/03/01", "2019/04/01", "2019/05/01",
"2019/06/01"), number = c(2L, 3L, 1L, 2L, 2L, 1L, 2L, 2L,
1L, 5L, 2L, 6L, 2L, 4L, 5L, 5L, 16L, 5L, 3L, 3L), roll_sum = c(2L,
5L, 6L, 8L, 10L, 11L, 13L, 15L, 16L, 21L, 23L, 29L, 29L,
30L, 34L, 37L, 51L, 55L, 56L, 57L), Resident Population = c(4213531,
4213531, 4213531, 4213531, 4213531, 4213531, 4213531, 4213531,
4213531, 4213531, 4213531, 4213531, 4213531, 4213531, 4213531,
4213531, 4213531, 4213531, 4213531, 4213531), rate = c(0,
0.001, 0.001, 0.002, 0.002, 0.003, 0.003, 0.004, 0.004, 0.005,
0.005, 0.007, 0.007, 0.007, 0.008, 0.009, 0.012, 0.013, 0.013,
0.014)), class = c("grouped_df", "tbl_df", "tbl", "data.frame"
), row.names = c(NA, -20L), groups = structure(list(Force = structure(1L, levels = c("BTP",
"Cumbria", "South-Wales"), class = "factor"), SelfEthnicity = structure(1L, levels = c("Asian",
"Black", "Other", "White"), class = "factor"), .rows = structure(list(
1:20), ptype = integer(0), class = c("vctrs_list_of", "vctrs_vctr",
"list"))), class = c("tbl_df", "tbl", "data.frame"), row.names = c(NA,
-1L), .drop = TRUE))

dput(head(your_data, 20))– jpsmith Jan 18 '23 at 19:080to show that my reference category was in the force category. – Jan 18 '23 at 19:17