charlatan makes
realistic looking fake data, inspired from and borrowing some code from
Python’s faker
Why would you want to make fake data that looks real? Here’s some possible use cases to give you a sense for what you can do with this package:
See the Creating realistic data vignette for a few realistic examples.
See the Contributing to charlatan vignette.
R6 objects that
a user can initialize and then call methods on. These contain all the
logic that the below interfaces use.ch_*() that wrap low level interfaces, and are meant to be
easier to use and provide an easy way to make many instances of a
thing.ch_generate() - generate a data.frame with fake data,
choosing which columns to include from the data types provided in
charlatanfraudster() - single interface to all fake data
methods, - returns vectors/lists of data - this function wraps the
ch_*() functions described aboveStable version from CRAN
Development version from Github
… for all fake data operations
Here we create 3 jobs, for different locales:
ch_job(locale = "en_US", n = 3)
#> [1] "Orthoptist" "Radiation protection practitioner"
#> [3] "Air traffic controller"
ch_job(locale = "fr_FR", n = 3)
#> [1] "Correcteur" "Marchandiseur"
#> [3] "Animateur du patrimoine"
ch_job(locale = "hr_HR", n = 3)
#> [1] "Inženjer medicinsko- laboratorijske dijagnostike"
#> [2] "Pediker"
#> [3] "Klesar"
ch_job(locale = "uk_UA", n = 3)
#> [1] "Фермер" "Астрофізик" "Астрофізик"
ch_job(locale = "zh_TW", n = 3)
#> [1] "勞工安全衛生管理師" "牙醫助理" "餐飲服務生"For colors:
ch_generate()
#> # A tibble: 10 × 3
#> name job phone_number
#> <chr> <chr> <chr>
#> 1 Miss Kenisha Gerlach DDS Fitness centre manager (731)690-1007
#> 2 Mr. Ryan Stark Advertising art director (961)576-2588
#> 3 Marlin Blick Jr. Financial manager 06891721535
#> 4 Alysa Zemlak Charity fundraiser 662-940-0365…
#> 5 Pheobe Bailey Human resources officer (583)307-1138
#> 6 Cosmo Hane II Conservator, museum/gallery (887)374-172…
#> 7 Leala Borer-Schmidt Legal secretary 1-397-616-28…
#> 8 Martin Schroeder Teacher, English as a foreign language 01356903787
#> 9 Efrain Volkman Television production assistant 548-642-9237
#> 10 Vassie Simonis Proofreader 381-472-2228…ch_generate("job", "phone_number", n = 30)
#> # A tibble: 30 × 2
#> job phone_number
#> <chr> <chr>
#> 1 Architect (563)102-8351
#> 2 Records manager (763)209-6878x751
#> 3 Health and safety inspector 1-263-619-9796
#> 4 Broadcast engineer 205-578-5336x6323
#> 5 Computer games developer 544-922-1821x00578
#> 6 Historic buildings inspector/conservation officer 645.389.3371
#> 7 Legal secretary 248-360-3297
#> 8 Homeopath 950.222.7634
#> 9 Careers information officer 520.142.1542x57552
#> 10 Set designer 703.337.5466
#> # ℹ 20 more rowsWe can create locale specific versions of:
Examples:
ch_job(10)
#> [1] "Water engineer"
#> [2] "Human resources officer"
#> [3] "Actuary"
#> [4] "Chief Operating Officer"
#> [5] "Radiographer, therapeutic"
#> [6] "Theatre director"
#> [7] "Proofreader"
#> [8] "Warehouse manager"
#> [9] "Loss adjuster, chartered"
#> [10] "Senior tax professional/tax inspector"Some data types are not localized (arguably the files and user_agents, are mostly universal too).
ch_credit_card_provider()
#> [1] "JCB 16 digit"
ch_credit_card_provider(n = 4)
#> [1] "Maestro" "JCB 16 digit" "VISA 16 digit" "VISA 16 digit"ch_credit_card_number()
#> [1] "210009207281960171"
ch_credit_card_number(n = 10)
#> [1] "3019097971651499" "060432462755771" "180066257063321407"
#> [4] "3481636940315743" "180084457151770469" "52171361685007592"
#> [7] "4403736025753247" "3439503206201376" "3762985255652254"
#> [10] "6011690611522459568"charlatan makes it very easy to generate fake data with
missing entries. First, you need to run
MissingDataProvider() and then make an appropriate
make_missing() call specifying the data type to be
generated. This method picks a random number (N) of slots
in the input make_missing vector and then picks
N random positions that will be replaced with NA matching
the input class.
Real data is messy, right? charlatan makes it easy to
create messy data. This is still in the early stages so is not available
across most data types and languages, but we’re working on it.
For example, create messy names:
ch_name(50, messy = TRUE)
#> [1] "Destiney Dicki" "Mrs. Freddie Pouros DDS"
#> [3] "Ms. Jada Lesch" "Inga Dach"
#> [5] "Keyshawn Schaefer" "Ferdinand Bergstrom"
#> [7] "Justen Simonis" "Ms. Doloris Stroman DVM"
#> [9] "Mrs. Ermine Heidenreich" "Marion Corwin"
#> [11] "Jalen Grimes" "Mr. Sullivan Hammes IV"
#> [13] "Adrien Vandervort-Dickens" "Dr. Sharif Kunde"
#> [15] "Marlena Reichert PhD" "Mr. Brandan Oberbrunner"
#> [17] "Lloyd Adams III" "Randy Ziemann"
#> [19] "Gina Sanford" "Cornell Funk"
#> [21] "Yadiel Collier" "Kamryn Johnson"
#> [23] "Tyesha Schmeler" "Ernie Hegmann-Graham"
#> [25] "Zackery Runolfsdottir" "Cleveland Predovic"
#> [27] "Melvyn Hickle" "Larry Nienow IV"
#> [29] "Vilma Rutherford" "Wiliam Ziemann-Fadel"
#> [31] "Mrs. Kathy Halvorson" "Mirtie Harvey-Shanahan"
#> [33] "Eliezer Pfeffer" "Dr. Shep Buckridge"
#> [35] "Kyree Kutch" "Ms. Delpha Grant"
#> [37] "Ms. Icie Crooks" "Loney Jenkins-Lindgren"
#> [39] "Shania Donnelly DVM" "Dr. Patric Veum"
#> [41] "Amirah Rippin DVM" "Randle Hilpert"
#> [43] "Soren Dare" "Roderic Walter"
#> [45] "Farah Daugherty MD" "Marva Crooks"
#> [47] "Ryland Ledner" "Girtha Harvey DDS"
#> [49] "Staci Spencer" "Mr. Olan Bernhard"Right now only suffixes and prefixes for names in en_US
locale are supported. Notice above some variation in prefixes and
suffixes.