Created
September 13, 2022 17:44
-
-
Save valtoni/8e8bd315f63fbea31ae57287a9d1ab41 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
DT = data.table(A=c("Peter Parker", "Bruce Wayne", "Barry Allen", "Diana", "Clark Kent"), | |
B=c("Spiderman", "Batman", "Flash", "Wonderwoman", "Superman"), | |
C=c("Dr. Octopus", "Joker", "Magenta", "Baroness Paula von Gunther", "Lex Luthor")) | |
d1 <- copy(DT) | |
d2 <- copy(DT) | |
d3 <- copy(DT) | |
setorder(d1, A) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment