Skip to content

Latest commit

 

History

History
34 lines (26 loc) · 1.35 KB

README.md

File metadata and controls

34 lines (26 loc) · 1.35 KB

100K Fake US People Profiles Dataset

This database was primarily created for testing purposes.

The SQLite database contains the following columns:

  "id"          INTEGER,
  "first_name"  TEXT UNIQUE,
  "last_name"   TEXT UNIQUE,
  "gender"      TEXT,
  "job_title"   TEXT,
  "street"      TEXT UNIQUE,
  "city"        TEXT,
  "state"       TEXT,
  "zip"         TEXT,
  "company"     TEXT UNIQUE,
  "phone"       TEXT UNIQUE,

Columns first_name and last_name are sorted by popularity

The street address column does not represent an actual physical location rather, it is the result of the concatenation of randomly pulled plausible house number and randomly pulled plausible street name.

Columns city, state and zip are pulled together randomly from United States ZIP Codes database

Sources