GRS.test: GRS test and Model Estimation Results

View source: R/GRS.test.R

GRS.testR Documentation

GRS test and Model Estimation Results

Description

Wu statistic given in (5) of GRS (1989) <DOI:10.2307/1913625>

The function also provide estimation results for asset pricing models

Usage

GRS.test(ret.mat, factor.mat)

Arguments

ret.mat

portfolio return matrix, T by N

factor.mat

matrix of risk factors, T by K

Details

T: sample size, N: number of portfolio returns, K: number of risk factors

Value

GRS.stat

GRS test statistic

GRS.pval

its p-value

coef

matrix of coefficient estimates from N equations, N by (K+1)

resid

matrix of residuals from N equations, T by N

tstat

matrix of t-statistics for coefficients, N by (K+1)

se

matrix of standard errors for coefficients, N by (K+1)

R2

matrix of R-squares for N equations, N by 1

Note

Applicable to CAPM as well as a multi-factor model

Author(s)

Jae H. Kim

References

Gibbons, Ross, Shanken, 1989. A test of the efficiency of a given portfolio, Econometrica, 57,1121-1152. <DOI:10.2307/1913625>

See Also

Fama and French, 1993, Common risk factors in the returns on stocks and bonds, Journal of Financial Economics, 33, 3-56. <DOI:10.1016/0304-405X(93)90023-5>

Fama and French, 2015, A five-factor asset-pricing model, Journal of Financial Economics, 1-22. <DOI:http://dx.doi.org/10.1016/j.jfineco.2014.10.010>

Examples

data(data)
factor.mat = data[1:342,2:4]            # Fama-French 3-factor model
ret.mat = data[1:342,8:ncol(data)]      # 25 size-BM portfolio returns
GRS.test(ret.mat,factor.mat)$GRS.stat   # See Table 9C of Fama-French (1993)

GRS.test documentation built on July 2, 2022, 1:06 a.m.