chi3.emp | R Documentation |
Calculates empirical estimate of triple-wise chi for (U,V,W)
.
chi3.emp(U, V, W, q)
U |
Vector of length n of standard uniform variables. |
V |
Vector of length n of standard uniform variables. |
W |
Vector of length n of standard uniform variables. |
q |
Value of exceedance probability used in estimation. |
Estimate of triple-wise chi for (U,V,W).
data(Aus_Heat) Z<-Aus_Heat$Temp. unif<-function(x) rank(x)/(length(x)+1) Z_U<-Z for(i in 1:dim(Z_U)[2]) Z_U[,i]<-unif(Z[,i]) # Transform to uniform margins q<-0.95 ind.triple<-c(1,2,3) ##Denotes indices of triple for which triple-wise chi calculated. chi3.emp(Z_U[,ind.triple[1]],Z_U[,ind.triple[2]],Z_U[,ind.triple[3]],q)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.