Created
May 23, 2022 06:38
-
-
Save darioappsilon/a82de75188ce77b54821bf786429d51b to your computer and use it in GitHub Desktop.
Revisions
-
darioappsilon created this gist
May 23, 2022 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,12 @@ library(tibble) random_string_column <- function(n) { stringi::stri_rand_strings(n = n, length = 8) } random_data_frame <- function(n) tibble( col1 = random_string_column(n), col2 = random_string_column(n) ) data <- random_data_frame(10^7)