Created
February 11, 2021 12:42
-
-
Save tetlabo/9a73b009339bfcab2efff66abf5bbc41 to your computer and use it in GitHub Desktop.
character型とfactor型のオブジェクトサイズの比較
This file contains hidden or 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
vec <- sample(LETTERS, 10000, replace = TRUE) | |
print(object.size(vec)) | |
vec <- as.factor(vec) | |
print(object.size(vec)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment