Billionaires
Building off the Forbes World’s Billionaires lists from 1996-2014
@kaggle.joebeachcapital_billionaires
Building off the Forbes World’s Billionaires lists from 1996-2014
@kaggle.joebeachcapital_billionaires
Overview
Researchers have compiled a multi-decade database of the super-rich. Building off the Forbes World’s Billionaires lists from 1996-2014, scholars at Peterson Institute for International Economics have added a couple dozen more variables about each billionaire - including whether they were self-made or inherited their wealth. (Roughly half of European billionaires and one-third of U.S. billionaires got a significant financial boost from family, the authors estimate.)
http://www.iie.com/publications/interstitial.cfm?ResearchID=2917
CREATE TABLE billionaires (
"name" VARCHAR,
"rank" BIGINT,
"year" BIGINT,
"company_founded" BIGINT,
"company_name" VARCHAR,
"company_relationship" VARCHAR,
"company_sector" VARCHAR,
"company_type" VARCHAR,
"demographics_age" BIGINT,
"demographics_gender" VARCHAR,
"location_citizenship" VARCHAR,
"location_country_code" VARCHAR,
"location_gdp" DOUBLE,
"location_region" VARCHAR,
"wealth_type" VARCHAR,
"wealth_worth_in_billions" DOUBLE,
"wealth_how_category" VARCHAR,
"wealth_how_from_emerging" BOOLEAN,
"wealth_how_industry" VARCHAR,
"wealth_how_inherited" VARCHAR,
"wealth_how_was_founder" BOOLEAN,
"wealth_how_was_political" BOOLEAN
);
Anyone who has the link will be able to view this.