Learn R Programming

tsensembler (version 0.0.5)

constructive_aggregation-class: constructive_aggregation-class

Description

Constructive aggregation via out-performance contiguity This method denotes the idea of rearranging a portfolio of models (base_ensemble) into different overlapping subsets. These subsets are aggregated (aggregate_subsets) into combined opinions, forming new models. These models are combined into a final decision through aggregate_hypos.

Arguments

Slots

base_ensemble

object of class base_ensemble-class. It contains the base models used that can be used for predicting new data or forecasting future values;

committee_set

a list of ids -- the individual models of each subset;

form

formula;

specs

object of class model_specs-class. Contains the parameter setting information for training the base models;

lambda

window size used to average loss. How far to to back in time.

alpha

contiguity size. How long should a subset outperform other for it to be considered in the committee

recent_series

the most recent lambda observations.

out_of_bag

Out of bag observations used to compute the subsets

aggregate_subsets

aggregation approach for the set of subsets.

aggregate_hypos

final aggregation approach. How should the combined opinions be aggregated.