Base class for multi-factor OLS models used in event studies. All factor models (Market Model, Fama-French, Carhart) share the same estimation approach: OLS regression of excess returns on factor returns during the estimation window.
Super class
ModelBase -> LinearFactorModel
Public fields
model_nameName of the model.
formulaThe regression formula.
required_columnsColumns required in the data.
use_hacLogical. Use HAC (Newey-West) standard errors.
hac_lagInteger or NULL. Lag truncation for Newey-West.
Methods
LinearFactorModel$new()
Create a new LinearFactorModel.
Usage
LinearFactorModel$new(use_hac = FALSE, hac_lag = NULL)