View source: R/hermite_estimator.R
kendall | R Documentation |
This method calculates the Kendall rank correlation coefficient value. It is only applicable to the bivariate Hermite estimator i.e. est_type = "bivariate".
kendall(h_est_obj, clipped = FALSE)
h_est_obj |
A hermite_estimator_bivar object. |
clipped |
A boolean value. Indicates whether to clip the Kendall rank correlation estimates to lie between -1 and 1. |
The object must be updated with observations prior to the use of this method.
A numeric value.
## Not run:
hermite_est <- hermite_estimator(N = 10, standardize = TRUE,
est_type="bivariate", observations = matrix(rnorm(30*2), nrow=30,
ncol=2, byrow = TRUE))
kendall_est <- kendall(hermite_est)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.