Aggregate Household Net Worth, USA, 1979-2021
The aggregate household net worth broken down by race and ethnicity.
@kaggle.sqlrockstar_aggregate_household_net_worth_usa_1979_2021
The aggregate household net worth broken down by race and ethnicity.
@kaggle.sqlrockstar_aggregate_household_net_worth_usa_1979_2021
The aggregate household net worth in the USA from 1979-2021, broken down into race and ethnicity.
**Original sources **
CREATE TABLE aggregate_household_net_worth (
"years" BIGINT,
"aggregate_household_net_worth" BIGINT -- Aggregate Household Net Worth ($),
"agg_black" DOUBLE -- Agg Black ($),
"agg_hispanic" DOUBLE -- Agg Hispanic ($),
"agg_white" DOUBLE -- Agg White ($),
"agg_other" DOUBLE -- Agg Other ($),
"n__assets" BIGINT -- Assets ($),
"assets_black" DOUBLE -- Assets Black ($),
"assets_hispanic" DOUBLE -- Assets Hispanic ($),
"assets_white" DOUBLE -- Assets White ($),
"assets_other" DOUBLE -- Assets Other ($),
"liabilities" BIGINT -- Liabilities ($),
"liabilities_black" DOUBLE -- Liabilities Black ($),
"liabilities_hispanic" DOUBLE -- Liabilities Hispanic ($),
"liabilities_white" DOUBLE -- Liabilities White ($),
"liabilities_other" DOUBLE -- Liabilities Other ($)
);Anyone who has the link will be able to view this.