Description Usage Arguments Value Examples
The boundsKendallStar function calculates the upper and lower bounds the weighted zero-inflated Kendall's tau star association measure, given a matrix containing a number of weights.
1 | boundsKendallStar(x, y, W = 1)
|
x |
data vector |
y |
data vector |
W |
weight matrix, number of columns correspond to length of x and y. |
list
list with two objects named "upper" and "lower", vectors of upper and lower bounds on the association measure
1 2 3 4 5 | x = pmax(0,rnorm(100))
y = pmax(0,rnorm(100))
w = runif(100)
wcor = weightedKendallStar(x,y,w)
boundsKendallStar(x,y,w)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.