College Majors And Earnings Dataset
College Majors, Employment Rates, and Earnings Data in the U.S.
@fivethirtyeight.college_majors
College Majors, Employment Rates, and Earnings Data in the U.S.
@fivethirtyeight.college_majors
CREATE TABLE all_ages (
"major_code" BIGINT,
"major" VARCHAR,
"major_category" VARCHAR,
"total" BIGINT,
"employed" BIGINT,
"employed_full_time_year_round" BIGINT,
"unemployed" BIGINT,
"unemployment_rate" DOUBLE,
"median" BIGINT,
"p25th" BIGINT,
"p75th" DOUBLE
);
CREATE TABLE grad_students (
"major_code" BIGINT,
"major" VARCHAR,
"major_category" VARCHAR,
"grad_total" BIGINT,
"grad_sample_size" BIGINT,
"grad_employed" BIGINT,
"grad_full_time_year_round" BIGINT,
"grad_unemployed" BIGINT,
"grad_unemployment_rate" DOUBLE,
"grad_median" DOUBLE,
"grad_p25" BIGINT,
"grad_p75" DOUBLE,
"nongrad_total" BIGINT,
"nongrad_employed" BIGINT,
"nongrad_full_time_year_round" BIGINT,
"nongrad_unemployed" BIGINT,
"nongrad_unemployment_rate" DOUBLE,
"nongrad_median" DOUBLE,
"nongrad_p25" BIGINT,
"nongrad_p75" DOUBLE,
"grad_share" DOUBLE,
"grad_premium" DOUBLE
);
CREATE TABLE majors_list (
"fod1p" VARCHAR,
"major" VARCHAR,
"major_category" VARCHAR
);
CREATE TABLE recent_grads (
"rank" BIGINT,
"major_code" BIGINT,
"major" VARCHAR,
"total" DOUBLE,
"men" DOUBLE,
"women" DOUBLE,
"major_category" VARCHAR,
"sharewomen" DOUBLE,
"sample_size" BIGINT,
"employed" BIGINT,
"full_time" BIGINT,
"part_time" BIGINT,
"full_time_year_round" BIGINT,
"unemployed" BIGINT,
"unemployment_rate" DOUBLE,
"median" BIGINT,
"p25th" BIGINT,
"p75th" BIGINT,
"college_jobs" BIGINT,
"non_college_jobs" BIGINT,
"low_wage_jobs" BIGINT
);
CREATE TABLE women_stem (
"rank" BIGINT,
"major_code" BIGINT,
"major" VARCHAR,
"major_category" VARCHAR,
"total" BIGINT,
"men" BIGINT,
"women" BIGINT,
"sharewomen" DOUBLE,
"median" BIGINT
);
Anyone who has the link will be able to view this.