You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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`
The text was updated successfully, but these errors were encountered:
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 thefrank
function in the way they deal with capital letters.`> frank(c("Da", "DA", "DB"))
[1] 3 1 2
The text was updated successfully, but these errors were encountered: