Predicts the inflation of hourly rates of pay, between two financial years.
wage_inflator(wage = 1, from_fy = NULL, to_fy = NULL, useABSConnection = FALSE, allow.projection = TRUE, forecast.series = c("mean", "upper", "lower", "custom"), forecast.level = 95, wage.series = NULL, accelerate.above = 100000L)
wage | The amount to be inflated (1 by default). |
---|---|
from_fy, to_fy | (character) a character vector with each element in the form "2012-13" representing the financial years between which the CPI inflator is desired. If both |
useABSConnection | Should the function connect with ABS.Stat via an SDMX connection? If If the SDMX connection fails, a message is emitted (not a warning) and
the function contines as if The internal data was updated on 2019-11-15 to 2019-Q3. |
allow.projection | If set to |
forecast.series | Whether to use the forecast mean, or the upper or lower boundaries of the prediction intervals. A fourth option |
forecast.level | The prediction interval to be used if |
wage.series | If |
accelerate.above | An integer setting the threshold for 'acceleration'.
When the maximum length of the arguments exceeds this value, calculate each unique value individually
then combine. Set to 100,000 as a rule of thumb beyond which calculation speeds benefit
dramatically. Can be set to |
The wage inflation between the two years.
# Wage inflation wage_inflator(from_fy = "2013-14", to_fy = "2014-15")#> [1] 1.022746# Custom wage inflation wage_inflator(from_fy = "2016-17", to_fy = "2017-18", forecast.series = "custom", wage.series = 0.05)#> [1] 1.021378