CT_Density_Plot {ConcordanceTest} | R Documentation |
Density Plot from the Concordance Coefficient and the Kruskal-Wallis Normalized Statistic
Description
This function performs the graphical visualization of the density distribution of the Concordance coefficient and the Kruskal-Wallis statistic.
Usage
CT_Density_Plot(C_freq = NULL, H_freq = NULL)
Arguments
C_freq |
Probability distribution of the Concordance coefficient obtained with the function |
H_freq |
Probability distribution of the Kruskal-Wallis statistic obtained with the function |
Examples
Sample_Sizes <- c(5,5,5)
Distributions <- CT_Distribution(Sample_Sizes, Num_Sim = 1000, H = 1)
C_freq <- Distributions$C_freq
H_freq <- Distributions$H_freq
CT_Density_Plot(C_freq, H_freq)
[Package ConcordanceTest version 1.0.3 Index]