You data is intriguing. I will pick up a couple of things and talk in details.
First, Transfer Function Model. This is a rich class of models. And you may want to check out the bible on the subject Time Series Analysis, by George E. P. Box, Gwilym M. Jenkins, Gregory C. Reinsel. I will include an introductory version using a subset of your data; attached.
The subset is the 75-79 age group. It has an embedded script, which fit a bunch of Transfer Function Models. Run it. And you should see the following table. Use the check box to bring up the report one by one. And I am going to explain what they are. (BTW, I scaled the data. If I use the original data, the algorithm has trouble in some cases due to extreme values.)
The first model, look at the formula picture. It says Scaled NL at time t is an intercept, plus a weighted value of Scaled Population at time t, plus an error. So this is just a simple linear regression. One can use Fit Y by X platform and get the same result.
But look at the residual plot below. It indicates, there are still unexplained patterns.
Now bring up the second model and look at the formula and residual.
The formula still looks like a regression. But the subscript on Scaled Population is t-1. This model says Scaled NL at time t is the sum of a constant, a weighted value of Scaled Population at the previous time t-1, and an error. So this model won't be easily fit in Fit Y by X without some data arrangement. Anyway, this is still not a good model, according to residual.
Now bring up the third model:
Its main part is the same as the first model, a simple regression, but the error term looks complicated. As you get familiar with the notation, you will recognize that the notation means: Scaled NL at time t involves it past value at time t-1. In summary, this model says: Scaled NL at time t is the sum of a constant, a weighted Scaled Population at time t, a weighted Scaled NL at time t-1, and an error term. So we are having more complicated models. And look at the residual plot, there are fewer obvious patterns.
The 4th model is similar, but used the lagged Scaled Population. The model says: Scaled NL at time t is the sum of a constant, a weighted Scaled Population at time t-1, a weighted Scaled NL at time t-1, and an error term.
The 5th and 6th models get more complicated, but unnecessary. But I leave them there to give you a sense how complicated things can go. And these examples are still considerably simple.
So as a summary, Transfer Function Model can be as simple as a simple linear regression, or more complicated by representing the response as a seemingly convoluted sum of historical values (and/or current for inputs) of response and input series values.
And seems there is at least one model fit the subset well. Let me use the third model. And look at the "Interactive Forecasting" part.
The highlighted markers are draggable. They should be self-explained if you move them. But to emphasize, the markers in the bottom frame represent future input series values. If you can forecast future input values, you should put the markers at desired places, and the output frame at top should show what the forecast on the response series looks like. Future input values can be imported in other ways, which I am not going elaborate (there is a button above the plot indicate its purpose for that.)
So the above is an example of using Transfer Function Model to analyze and forecast a subset of your data. But does not it make sense? To me, I am not sure. Your data is quite rick. The model fit this subset well. But it does not fit all subsets well. And I will leave that to you to conclude.
I did a plot to summarize what your data look like by age groups. The blue lines are NL series by age groups. And the red lines are corresponding Population series. All NL series have up tick trends. The Population series have downward trend for age groups younger than 50; and have upward trend for those older than 54. Several wonders:
- What this picture will look like next year, the year after, and so on?
- How to explain the cutoff at 50-54 group? And how to interpret the opposite trends between NL and Population for younger age groups, but same trends between them for older age groups.
- What do the wiggles at the end of NL series try to tell? They look interesting to me.