Learn R Programming

ConcordanceTest (version 1.0.3)

CT_Probability_Plot: Probability Plot for the Concordance Coefficient and the Kruskal-Wallis Statistic

Description

This function performs the graphical visualization of the probability distribution of the Concordance coefficient and the Kruskal-Wallis statistic.

Usage

CT_Probability_Plot(C_freq = NULL, H_freq = NULL)

Arguments

C_freq

Probability distribution of the Concordance coefficient obtained with the function CT_Distribution.

H_freq

Probability distribution of the Kruskal-Wallis statistic obtained with the function CT_Distribution.

Examples

Run this code
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_Probability_Plot(C_freq)
CT_Probability_Plot(C_freq, H_freq)

Run the code above in your browser using DataLab