Description Usage Arguments Details Value References See Also Examples
View source: R/model_HyndmanUllah.R
The Functional Demographic Model
1 |
data |
demogdata object. Output from read.demogdata. |
x |
Numerical vector indicating the ages in input |
y |
Numerical vector indicating the years in input |
order |
Number of basis functions to fit. |
transform |
If TRUE, the data are transformed with a Box-Cox transformation before the model is fitted. |
... |
Extra arguments passed to |
hyndman2007MortalityForecast
The output is a list with the components:
input |
List with arguments provided in input. Saved for convenience; |
info |
Short details about the model; |
call |
An unevaluated function call, that is, an unevaluated expression which consists of the named function applied to the given arguments; |
coefficients |
Estimated coefficients; |
fitted.values |
Fitted values of the estimated model; |
observed.values |
The observed values used in fitting arranged in the same format as the fitted.values; |
residuals |
Deviance residuals; |
x |
Vector of ages used in the fitting; |
y |
Vector of years used in the fitting. |
1 2 3 4 5 6 7 8 | # Data
x <- 0:89
y <- 1985:2014
mx <- HMD_male$mx$GBRTENW[paste(x), paste(y)]
M <- model.HyndmanUllah(data = mx, x = x, y = y) # fit
P <- predict(M, h = 20) # forecast
P
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.