| RTS_FN | R Documentation | 
This function is to estimate factor numbers robustly via multivariate Kendall’s tau eigenvalue ratios.
RTS_FN(X, rmax)
| X | Input matrix, of dimension  | 
| rmax | The user-supplied maximum factor numbers. | 
See Yu et al. (2019) for details.
| rhat | The estimated factor number. | 
Yong He, Lingxiao Li, Dong Liu, Wenxin Zhou.
Yu, L., He, Y., Zhang, X., 2019. Robust factor number specification for large-dimensional elliptical factor model. Journal of Multivariate analysis 174, 104543.
set.seed(1)
T=50;N=50;r=3
L=matrix(rnorm(N*r,0,1),N,r);F=matrix(rnorm(T*r,0,1),T,r)
E=matrix(rnorm(T*N,0,1),T,N)
X=F%*%t(L)+E
RTS_FN(X,8)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.