Replicating Fama-French Factors

Note

You are reading Tidy Finance with R. You can find the equivalent chapter for the sibling Tidy Finance with Python here.

In this chapter, we provide a replication of the famous Fama-French factor portfolios. The Fama-French factor models are a cornerstone of empirical asset pricing Fama and French (2015). On top of the market factor represented by the traditional CAPM beta, the three-factor model includes the size and value factors to explain the cross section of returns. Its successor, the five-factor model, additionally includes profitability and investment as explanatory factors.

We start with the three-factor model. We already introduced the size and value factors in Value and Bivariate Sorts, and their definition remains the same: size is the SMB factor (small-minus-big) that is long small firms and short large firms. The value factor is HML (high-minus-low) and is long in high book-to-market firms and short in low book-to-market counterparts.

After the replication of the three-factor model, we move to the five factors by constructing the profitability factor RMW (robust-minus-weak) as the difference between the returns of firms with high and low operating profitability and the investment factor CMA (conservative-minus-aggressive) as the difference between firms with high versus low investment rates.

The current chapter relies on this set of R packages.

library(tidyverse)
library(RSQLite)

Data Preparation

We use CRSP and Compustat as data sources, as we need the same variables to compute the factors in the way Fama and French do it. Hence, there is nothing new below, and we only load data from our SQLite-database introduced in Accessing and Managing Financial Data and WRDS, CRSP, and Compustat.1

tidy_finance <- dbConnect(
  SQLite(),
  "data/tidy_finance_r.sqlite",
  extended_types = TRUE
)

crsp_monthly <- tbl(tidy_finance, "crsp_monthly") |>
  select(
    permno, gvkey, month, ret_excess,
    mktcap, mktcap_lag, exchange
  ) |>
  collect()

compustat <- tbl(tidy_finance, "compustat") |>
    select(gvkey, datadate, be, op, inv) |>
    collect() 

factors_ff3_monthly <- tbl(tidy_finance, "factors_ff3_monthly") |>
  select(month, smb, hml) |>
  collect()

factors_ff5_monthly <- tbl(tidy_finance, "factors_ff5_monthly") |>
  select(month, smb, hml, rmw, cma) |>
  collect()

Yet when we start merging our dataset for computing the premiums, there are a few differences to Value and Bivariate Sorts. First, Fama and French form their portfolios in June of year \(t\), whereby the returns of July are the first monthly return for the respective portfolio. For firm size, they consequently use the market capitalization recorded for June. It is then held constant until June of year \(t+1\).

Second, Fama and French also have a different protocol for computing the book-to-market ratio. They use market equity as of the end of year \(t - 1\) and the book equity reported in year \(t-1\), i.e., the datadate is within the last year. Hence, the book-to-market ratio can be based on accounting information that is up to 18 months old. Market equity also does not necessarily reflect the same time point as book equity. The other sorting variables are analogously to book equity taken from year \(t-1\).

To implement all these time lags, we again employ the temporary sorting_date-column. Notice that when we combine the information, we want to have a single observation per year and stock since we are only interested in computing the breakpoints held constant for the entire year. We ensure this by a call of distinct() at the end of the chunk below.

size <- crsp_monthly |>
  filter(month(month) == 6) |>
  mutate(sorting_date = month %m+% months(1)) |>
  select(permno, exchange, sorting_date, size = mktcap)

market_equity <- crsp_monthly |>
  filter(month(month) == 12) |>
  mutate(sorting_date = ymd(str_c(year(month) + 1, "0701)"))) |>
  select(permno, gvkey, sorting_date, me = mktcap)

book_to_market <- compustat |>
  mutate(sorting_date = ymd(str_c(year(datadate) + 1, "0701"))) |>
  select(gvkey, sorting_date, be) |>
  inner_join(market_equity, join_by(gvkey, sorting_date)) |>
  mutate(bm = be / me) |>
  select(permno, sorting_date, me, bm)

sorting_variables <- size |>
  inner_join(
    book_to_market, join_by(permno, sorting_date)
    ) |>
  drop_na() |>
  distinct(permno, sorting_date, .keep_all = TRUE)

Portfolio Sorts

Next, we construct our portfolios with an adjusted assign_portfolio() function. Fama and French rely on NYSE-specific breakpoints, they form two portfolios in the size dimension at the median and three portfolios in the dimension of each other sorting variable at the 30- and 70-percentiles, and they use dependent sorts. The sorts for book-to-market require an adjustment to the function in Value and Bivariate Sorts because the seq() we would produce does not produce the right breakpoints. Instead of n_portfolios, we now specify percentiles, which take the breakpoint-sequence as an object specified in the function’s call. Specifically, we give percentiles = c(0, 0.3, 0.7, 1) to the function. Additionally, we perform an inner_join() with our return data to ensure that we only use traded stocks when computing the breakpoints as a first step.

assign_portfolio <- function(data, 
                             sorting_variable, 
                             percentiles) {
  breakpoints <- data |>
    filter(exchange == "NYSE") |>
    pull({{ sorting_variable }}) |>
    quantile(
      probs = percentiles,
      na.rm = TRUE,
      names = FALSE
    )

  assigned_portfolios <- data |>
    mutate(portfolio = findInterval(
      pick(everything()) |>
        pull({{ sorting_variable }}),
      breakpoints,
      all.inside = TRUE
    )) |>
    pull(portfolio)
  
  return(assigned_portfolios)
}

portfolios <- sorting_variables |>
  group_by(sorting_date) |>
  mutate(
    portfolio_size = assign_portfolio(
      data = pick(everything()),
      sorting_variable = size,
      percentiles = c(0, 0.5, 1)
    ),
    portfolio_bm = assign_portfolio(
      data = pick(everything()),
      sorting_variable = bm,
      percentiles = c(0, 0.3, 0.7, 1)
    )
  ) |>
  ungroup() |> 
  select(permno, sorting_date, 
         portfolio_size, portfolio_bm)

Next, we merge the portfolios to the return data for the rest of the year. To implement this step, we create a new column sorting_date in our return data by setting the date to sort on to July of \(t-1\) if the month is June (of year \(t\)) or earlier or to July of year \(t\) if the month is July or later.

portfolios <- crsp_monthly |>
  mutate(sorting_date = case_when(
    month(month) <= 6 ~ ymd(str_c(year(month) - 1, "0701")),
    month(month) >= 7 ~ ymd(str_c(year(month), "0701"))
  )) |>
  inner_join(portfolios, join_by(permno, sorting_date))

Fama-French Three-Factor Model

Equipped with the return data and the assigned portfolios, we can now compute the value-weighted average return for each of the six portfolios. Then, we form the Fama-French factors. For the size factor (i.e., SMB), we go long in the three small portfolios and short the three large portfolios by taking an average across either group. For the value factor (i.e., HML), we go long in the two high book-to-market portfolios and short the two low book-to-market portfolios, again weighting them equally.

factors_replicated <- portfolios |>
  group_by(portfolio_size, portfolio_bm, month) |>
  summarize(
    ret = weighted.mean(ret_excess, mktcap_lag), .groups = "drop"
  ) |>
  group_by(month) |>
  summarize(
    smb_replicated = mean(ret[portfolio_size == 1]) -
      mean(ret[portfolio_size == 2]),
    hml_replicated = mean(ret[portfolio_bm == 3]) -
      mean(ret[portfolio_bm == 1])
  )

Replication Evaluation

In the previous section, we replicated the size and value premiums following the procedure outlined by Fama and French. The final question is then: how close did we get? We answer this question by looking at the two time-series estimates in a regression analysis using lm(). If we did a good job, then we should see a non-significant intercept (rejecting the notion of systematic error), a coefficient close to 1 (indicating a high correlation), and an adjusted R-squared close to 1 (indicating a high proportion of explained variance).

test <- factors_ff3_monthly |>
  inner_join(factors_replicated, join_by(month)) |>
  mutate(
    across(c(smb_replicated, hml_replicated), ~round(., 4))
  )

To test the success of the SMB factor, we hence run the following regression:

model_smb <- lm(smb ~ smb_replicated, data = test)
summary(model_smb)

Call:
lm(formula = smb ~ smb_replicated, data = test)

Residuals:
      Min        1Q    Median        3Q       Max 
-0.020103 -0.001448 -0.000012  0.001483  0.014957 

Coefficients:
                Estimate Std. Error t value Pr(>|t|)    
(Intercept)    -0.000131   0.000131      -1     0.32    
smb_replicated  0.992550   0.004327     229   <2e-16 ***
---
Signif. codes:  0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1

Residual standard error: 0.00354 on 736 degrees of freedom
Multiple R-squared:  0.986, Adjusted R-squared:  0.986 
F-statistic: 5.26e+04 on 1 and 736 DF,  p-value: <2e-16

The results for the SMB factor are really convincing, as all three criteria outlined above are met and the coefficient is 0.99 and the R-squared is at 99 percent.

model_hml <- lm(hml ~ hml_replicated, data = test)
summary(model_hml)

Call:
lm(formula = hml ~ hml_replicated, data = test)

Residuals:
     Min       1Q   Median       3Q      Max 
-0.02321 -0.00291 -0.00010  0.00229  0.03412 

Coefficients:
               Estimate Std. Error t value Pr(>|t|)    
(Intercept)    0.000300   0.000218    1.37     0.17    
hml_replicated 0.962447   0.007258  132.60   <2e-16 ***
---
Signif. codes:  0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1

Residual standard error: 0.0059 on 736 degrees of freedom
Multiple R-squared:  0.96,  Adjusted R-squared:  0.96 
F-statistic: 1.76e+04 on 1 and 736 DF,  p-value: <2e-16

The replication of the HML factor is also a success, although at a slightly lower coefficient of 0.96 and an R-squared around 96 percent.

The evidence hence allows us to conclude that we did a relatively good job in replicating the original Fama-French size and value premiums, although we do not know their underlying code. From our perspective, a perfect match is only possible with additional information from the maintainers of the original data.

Fama-French Five-Factor Model

Now, let us move to the replication of the five-factor model. We extend the other_sorting_variables table from above with the additional characteristics operating profitability op and investment inv. Note that the drop_na() statement yields different sample sizes as some firms with be values might not have op or inv values.

other_sorting_variables <- compustat |>
  mutate(sorting_date = ymd(str_c(year(datadate) + 1, "0701"))) |>
  select(gvkey, sorting_date, be, op, inv) |>
  inner_join(market_equity, 
             join_by(gvkey, sorting_date)) |>
  mutate(bm = be / me) |>
  select(permno, sorting_date, me, be, bm, op, inv)

sorting_variables <- size |>
  inner_join(
    other_sorting_variables, 
    join_by(permno, sorting_date)
    ) |>
  drop_na() |>
  distinct(permno, sorting_date, .keep_all = TRUE)

In each month, we independently sort all stocks into the two size portfolios. The value, profitability, and investment portfolios, on the other hand, are the results of dependent sorts based on the size portfolios. We then merge the portfolios to the return data for the rest of the year just as above.

portfolios <- sorting_variables |>
  group_by(sorting_date) |>
  mutate(
    portfolio_size = assign_portfolio(
      data = pick(everything()),
      sorting_variable = size,
      percentiles = c(0, 0.5, 1)
    )) |> 
  group_by(sorting_date, portfolio_size) |> 
  mutate(
    across(c(bm, op, inv), ~assign_portfolio(
      data = pick(everything()), 
      sorting_variable = ., 
      percentiles = c(0, 0.3, 0.7, 1)),
      .names = "portfolio_{.col}"
    )
  ) |>
  ungroup() |> 
  select(permno, sorting_date, 
         portfolio_size, portfolio_bm,
         portfolio_op, portfolio_inv)

portfolios <- crsp_monthly |>
  mutate(sorting_date = case_when(
    month(month) <= 6 ~ ymd(str_c(year(month) - 1, "0701")),
    month(month) >= 7 ~ ymd(str_c(year(month), "0701"))
  )) |>
  inner_join(portfolios, join_by(permno, sorting_date))

Now, we want to construct each of the factors, but this time the size factor actually comes last because it is the result of averaging across all other factor portfolios. This dependency is the reason why we keep the table with value-weighted portfolio returns as a separate object that we reuse later. We construct the value factor, HML, as above by going long the two portfolios with high book-to-market ratios and shorting the two portfolios with low book-to-market.

portfolios_value <- portfolios |>
  group_by(portfolio_size, portfolio_bm, month) |>
  summarize(
    ret = weighted.mean(ret_excess, mktcap_lag), 
    .groups = "drop"
  )

factors_value <- portfolios_value |>
  group_by(month) |>
  summarize(
    hml_replicated = mean(ret[portfolio_bm == 3]) -
      mean(ret[portfolio_bm == 1])
  )

For the profitability factor, RMW, we take a long position in the two high profitability portfolios and a short position in the two low profitability portfolios.

portfolios_profitability <- portfolios |>
  group_by(portfolio_size, portfolio_op, month) |>
  summarize(
    ret = weighted.mean(ret_excess, mktcap_lag), 
    .groups = "drop"
  ) 

factors_profitability <- portfolios_profitability |>
  group_by(month) |>
  summarize(
    rmw_replicated = mean(ret[portfolio_op == 3]) -
      mean(ret[portfolio_op == 1])
  )

For the investment factor, CMA, we go long the two low investment portfolios and short the two high investment portfolios.

portfolios_investment <- portfolios |>
  group_by(portfolio_size, portfolio_inv, month) |>
  summarize(
    ret = weighted.mean(ret_excess, mktcap_lag), 
    .groups = "drop"
  )

factors_investment <- portfolios_investment |>
  group_by(month) |>
  summarize(
    cma_replicated = mean(ret[portfolio_inv == 1]) -
      mean(ret[portfolio_inv == 3])
  )

Finally, the size factor, SMB, is constructed by going long the six small portfolios and short the six large portfolios.

factors_size <- bind_rows(
  portfolios_value,
  portfolios_profitability,
  portfolios_investment
) |> 
  group_by(month) |>
  summarize(
    smb_replicated = mean(ret[portfolio_size == 1]) -
      mean(ret[portfolio_size == 2])
  )

We then join all factors together into one dataframe and construct again a suitable table to run tests for evaluating our replication.

factors_replicated <- factors_size |>
  full_join(
    factors_value, join_by(month)
  ) |>
  full_join(
    factors_profitability, join_by(month)
  ) |>
  full_join(
    factors_investment, join_by(month)
  )

test <- factors_ff5_monthly |>
  inner_join(factors_replicated, join_by(month)) |>
  mutate(
    across(c(smb_replicated, hml_replicated, 
             rmw_replicated, cma_replicated), ~round(., 4))
  )

Let us start the replication evaluation again with the size factor:

model_smb <- lm(smb ~ smb_replicated, data = test)
summary(model_smb)

Call:
lm(formula = smb ~ smb_replicated, data = test)

Residuals:
      Min        1Q    Median        3Q       Max 
-0.018162 -0.001874  0.000233  0.001956  0.014321 

Coefficients:
                Estimate Std. Error t value Pr(>|t|)    
(Intercept)    -0.000200   0.000135   -1.48     0.14    
smb_replicated  0.969302   0.004364  222.13   <2e-16 ***
---
Signif. codes:  0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1

Residual standard error: 0.0036 on 712 degrees of freedom
Multiple R-squared:  0.986, Adjusted R-squared:  0.986 
F-statistic: 4.93e+04 on 1 and 712 DF,  p-value: <2e-16

The results for the SMB factor are quite convincing as all three criteria outlined above are met and the coefficient is 0.97 and the R-squared is at 99 percent.

model_hml <- lm(hml ~ hml_replicated, data = test)
summary(model_hml)

Call:
lm(formula = hml ~ hml_replicated, data = test)

Residuals:
     Min       1Q   Median       3Q      Max 
-0.04465 -0.00413 -0.00034  0.00412  0.03637 

Coefficients:
               Estimate Std. Error t value Pr(>|t|)    
(Intercept)    0.000474   0.000297    1.59     0.11    
hml_replicated 0.991694   0.010266   96.60   <2e-16 ***
---
Signif. codes:  0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1

Residual standard error: 0.00792 on 712 degrees of freedom
Multiple R-squared:  0.929, Adjusted R-squared:  0.929 
F-statistic: 9.33e+03 on 1 and 712 DF,  p-value: <2e-16

The replication of the HML factor is also a success, although at a slightly higher coefficient of 0.99 and an R-squared around 93 percent.

model_rmw <- lm(rmw ~ rmw_replicated, data = test)
summary(model_rmw)

Call:
lm(formula = rmw ~ rmw_replicated, data = test)

Residuals:
      Min        1Q    Median        3Q       Max 
-0.019813 -0.003075  0.000029  0.003209  0.018327 

Coefficients:
               Estimate Std. Error t value Pr(>|t|)    
(Intercept)    4.68e-05   2.02e-04    0.23     0.82    
rmw_replicated 9.54e-01   8.87e-03  107.58   <2e-16 ***
---
Signif. codes:  0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1

Residual standard error: 0.00535 on 712 degrees of freedom
Multiple R-squared:  0.942, Adjusted R-squared:  0.942 
F-statistic: 1.16e+04 on 1 and 712 DF,  p-value: <2e-16

We are also able to replicate the RMW factor quite well with a coefficient of 0.95 and an R-squared around 94 percent.

model_cma <- lm(cma ~ cma_replicated, data = test)
summary(model_cma)

Call:
lm(formula = cma ~ cma_replicated, data = test)

Residuals:
      Min        1Q    Median        3Q       Max 
-0.015218 -0.002710 -0.000184  0.002446  0.021704 

Coefficients:
               Estimate Std. Error t value Pr(>|t|)    
(Intercept)    0.000668   0.000172    3.89  0.00011 ***
cma_replicated 0.964072   0.008207  117.46  < 2e-16 ***
---
Signif. codes:  0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1

Residual standard error: 0.00456 on 712 degrees of freedom
Multiple R-squared:  0.951, Adjusted R-squared:  0.951 
F-statistic: 1.38e+04 on 1 and 712 DF,  p-value: <2e-16

Finally, the CMA factor also replicates well with a coefficient of 0.96 and an R-squared around 95 percent.

Overall, our approach seems to replicate the Fama-French five-factor models just as well as the three factors.

Exercises

  1. Fama and French (1993) claim that their sample excludes firms until they have appeared in Compustat for two years. Implement this additional filter and compare the improvements of your replication effort.
  2. On his homepage, Kenneth French provides instructions on how to construct the most common variables used for portfolio sorts. Try to replicate the univariate portfolio sort return time series for E/P (earnings/price) provided on his homepage and evaluate your replication effort using regressions.

References

Fama, Eugene F., and Kenneth R. French. 1992. The cross-section of expected stock returns.” The Journal of Finance 47 (2): 427–65. https://doi.org/2329112.
———. 1993. Common risk factors in the returns on stocks and bonds.” Journal of Financial Economics 33 (1): 3–56. https://doi.org/10.1016/0304-405X(93)90023-5.
———. 2015. “A Five-Factor Asset Pricing Model.” Journal of Financial Economics 116 (1): 1–22. https://doi.org/10.1016/j.jfineco.2014.10.010.

Footnotes

  1. Note that Fama and French (1992) claim to exclude financial firms. To a large extent this happens through using industry format “INDL”, as we do in WRDS, CRSP, and Compustat. Neither the original paper, nor Ken French’s website, or the WRDS replication contains any indication that financial companies are excluded using additional filters such as industry codes.↩︎