tdcc {ODEsensitivity} | R Documentation |
A Measure of Top-Down Correlation
Description
With the use of Savage scores, the Top-Down Correlation Coefficient TDCC
compares b
rankings.
Usage
tdcc(ranks, pearson = FALSE, plot = FALSE)
Arguments
ranks |
[ |
pearson |
[ |
plot |
[ |
Details
NOTE: As the implementation of the coefficient of concordance is still defective, please use the Pearson coefficient!
Value
A named vector with components:
kendall
: Coefficient of concordance.pearson
: Pearson coefficient (only ifpearson = TRUE
).
Author(s)
Stefan Theers
References
R. L. Iman and W. J. Conover, A Measure of Top-Down Correlation, Technometrics, Vol. 29, No. 3 (Aug., 1987), pp. 351–357.
Examples
# b=2 sensitivity analysis techniques A and B that rate the influence of
# k=20 variables/ input parameters (example taken from Iman and Conover, 1987):
ranking <- rbind(A = 1:20,
B = c(1,3,2,4,16,10,19,12,18,17,
20,5,14,7,8,11,6,15,9,13))
tdcc(ranking, pearson = TRUE, plot = TRUE)