v0.1.0
lmForc 0.1.0
-
Changed the name of the
collect()
function toforc2df()
to avoid namespace conflict withdplyr::collect()
. -
Altered
mse()
andrmse()
methods so that forecast accuracy can be calculated if there are NAforecast
orrealized
values. -
Altered
autoreg_forc()
so that AR models are properly computed using one toar_lags
number of lags andh_ahead
forecasts are computed iteratively. -
Added
mae()
,mape()
, andR2()
methods for evaluating forecast accuracy. -
Altered
estimation_end
argument so that the origin of the first forecast is always greater than or equal to theestimation_end
time. -
Changed
historical_mean_forc()
tohistorical_average_forc()
and altered the function so that forecasts can be calculated using either the historical mean or historical median. Also altered the function so that forecasts can be calculated if there are NA values inrealized_vec
. -
Added
return_betas
argument to all applicable functions. If set to TRUE, returns a data frame of the coefficients used to create the forecast in each time period to the Global Environment. -
Created
str
method forForecast
objects. -
Added
states_weighted_forc()
function for computing state weighted forecasts. -
Changed name of
mse_weighted_forc()
toperformance_weighted_forc()
to reflect that errors may be either MSE or RMSE.