Sigma.est | R Documentation |
Estimate of covariance matrix of the two components of Lancaster correlation. Lancaster correlation is a bivariate measures of dependence.
Sigma.est(xx)
xx |
a matrix or data frame with two columns. |
For more details see the Appendix in Holzmann, Klar (2024).
the estimated covariance matrix.
Hajo Holzmann, Bernhard Klar
Holzmann, Klar (2024). "Lancester correlation - a new dependence measure linked to maximum correlation". \Sexpr[results=rd]{tools:::Rd_expr_doi("https://doi.org/10.1111/sjos.12733")}
lcor.ci
Sigma <- matrix(c(1,0.1,0.1,1), ncol=2)
R <- chol(Sigma)
n <- 1000
x <- matrix(rnorm(n*2), n)
nu <- 8
y <- x / sqrt(rchisq(n, nu)/nu) #multivariate t
Sigma.est(y)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.