Hi,
Maybe this is not a real issue and the wanted behavior but I just wanted to draw your attention to the inconsistent behavior between the rank function and the frank function in the way they deal with capital letters.
`> frank(c("Da", "DA", "DB"))
[1] 3 1 2
rank(c("Da", "DA", "DB"))
[1] 1 2 3`
Hi,
Maybe this is not a real issue and the wanted behavior but I just wanted to draw your attention to the inconsistent behavior between the
rankfunction and thefrankfunction in the way they deal with capital letters.`> frank(c("Da", "DA", "DB"))
[1] 3 1 2