I was interested in what kind of forecasts we would end up with if we
Calculated the annual growth rates for each year and industry between 2000 and 2023.
Drew a random sample of 11 of the growth rates with probabilities from discrete triangle distribution:
Code
tibble(year=2000:2023)|>mutate(prob=(year-min(year))/((length(year)-1)/2*length(year)))|>ggplot(aes(year, prob))+geom_col()+labs(title="The probabilities of drawing growth rate from each year",subtitle="The most recent past more informative than distant past")
Calculate weighted average growth rate to dampen the trend:
Code
tibble(year=factor(2024:2034))|>mutate(weight=seq(1,.5, by=-.05))|>ggplot(aes(year, weight))+geom_col()+labs(title="The weight put on the random growth rates drawn.",subtitle="Thus as time progresses the forecasts flatten out.")
Apply these weighted growth rates to the 2023 level.
Repeat 2) and 3) 1000 times, for each of the 64 LMO industries.
Plot the results: the simulation mean is in white.
This gives an indication of the uncertainty of the forecasts: the more predictable the series, the tighter the forecast cone.