Implements the Fama and French (1993) three-factor model: $$R_i - R_f = \alpha + \beta_m (R_m - R_f) + \beta_s SMB + \beta_h HML + \epsilon$$
The data must contain columns: excess_return (firm return minus risk-free),
market_excess (market return minus risk-free), smb, and hml.
These can be joined via a factor table in EventStudyTask.
Super classes
ModelBase -> LinearFactorModel -> FamaFrench3FactorModel
Public fields
model_nameName of the model.
formulaThe three-factor regression formula.
required_columnsRequired data columns.
Methods
Inherited methods
FamaFrench3FactorModel$new()
Create a new FamaFrench3FactorModel.
Usage
FamaFrench3FactorModel$new(use_hac = FALSE, hac_lag = NULL)