ConstructSeqs {RMallow} | R Documentation |
Sequences in a fully-ordered sequence space have a unique Kendall Information vector associated with them. This function creates the sequence from the Kendall information vector.
ConstructSeqs(prefs, n.abils)
prefs |
Ordering preference between columns in the data. 1 cooresponds to an increase, 0 to a decrease. |
n.abils |
Number of columns in the original data set. |
List of fully-ordered sequences, one for each row of prefs.
Erik Gregory
ConstructSeqs(matrix(c(1, 1, 1, 0, 0, 0), nrow = 1), 4) # Should output (4, 1, 2, 3)