Learn R Programming

EDOIF (version 0.1.3)

getOrder: getOrder function

Description

getOrder is a support function for inferring a linear order of categories ascendingly sorted by their means.

Usage

getOrder(Values, Group)

Value

This function returns two lists: an order list of categories sortedGroupList

and its correspoding list of means sortedmeanList.

sortedGroupList

The list of names of categories ascendingly ordered by their means.

sortedmeanList

The list of means of categories that are ascendingly ordered.

Arguments

Values

is a vector of real-number values

Group

is a vector of categories of each real number in Values

Examples

Run this code
# Generate simulation data

simData<-SimNonNormalDist(nInv=100,noisePer=0.1)

# Call the function to get the sorted lists
getOrder(Values=simData$Values,Group=simData$Group)

Run the code above in your browser using DataLab