Chart: No big changes in sentences after new police-assaults law
The government recently doubled the maximum sentence for assaulting a police officer to 12 months in prison, introducing a new offence of assaulting an emergency worker. So far, this change is associated with only small increases in sentences handed down in court.
larger image | annotated R code to produce this chart
Data source: Ministry of Justice, 2020
Notes
To test whether there were any differences between imprisonment probability or sentence length before and after the new law was introduced, I ran separate ARIMA regression models (using the auto.arima()
function in the forecast
R package) on the monthly probability of being imprisoned for assaulting police and on the average length of prison sentences. Each model included a variable that was set to false for months before the new law was introduced and true for months afterwards. If these variables were statistically significant (i.e. \(p < 0.05\)) we can say there is a difference in either imprisonment probability or imprisonment length after the law was introduced.
The first model assessed whether the new law was associated with any change in the probability of being imprisoned on conviction for assaulting a police officer. This table shows that there was a small, but statistically significant, increase in the probability of being imprisoned after the new law came into effect.
variable | estimate | standard error | p value |
---|---|---|---|
intercept | 0.135 | 0.005 | <0.001 |
after new law passed | 0.026 | 0.007 | <0.001 |
The second model assessed whether the new law was associated with any change in the number of days imprisonment that people were sentenced to, if they were sent to prison for assaulting police. This table shows there was another small, but again statistically significant, increase in sentence length.
variable | estimate | standard error | p value |
---|---|---|---|
intercept | 60.6 | 1.9 | <0.001 |
after new law passed | 9.7 | 2.4 | <0.001 |
Both these models are limited, because there are no comparison groups against which to compare the differences observed. This means it is not possible to estimate how likely it is that any differences are due to the new law or to other factors (such as long-term trends in sentencing practice) that were happening at the same time.