getConfInv is a support function for bootstrapping method. Its main purpose is to compute a mean confidence intervals of all distributions.
getConfInv(Values, Group, GroupList, bootT, alpha, methodType)This function returns a list of mean confidence intervals.
The mean confidence interval of sortedGroupList[i] category. confInvsList[i,1] is a lower bound and confInvsList[i,2] is an upper bound.
is a vector of real-number values
is a vector of categories of each real number in Values
is a list of names of categories ascendingly ordered by their means.
is a number of times of sample with replacement for bootstrapping. The default is 1000. It must be above zero
is a significance level using in both confidence intervals and ordering inference it has the range [0,1]. The default is 0.05.
is an option for bootstrapping methods:either "perc" or "bca". The "perc" is the default option.