Business And Industry Reports
7,000 economics time series for 1956-2017
@kaggle.census_business_and_industry_reports
7,000 economics time series for 1956-2017
@kaggle.census_business_and_industry_reports
Along with their core mission of counting the US population, the United States Census Bureau gathers a wide range of economic data. This dataset covers 16 of their economic reports and surveys:
et_code, et_desc, and et_unit.Less than .05 percent.This data was kindly made available by the United States Census. You can find the original data here. If you enjoyed this dataset you might also like one of the other US Census datasets available on Kaggle.
The National Bureau of Economic Research's macroeconomic history of the United States covers many similar time series, but before the census data was reported. Can you integrate it with this census data? This should allow you to generate many time series stretching from the present back to the 19th century.
CREATE TABLE data (
"time_series_code" VARCHAR,
"date" TIMESTAMP,
"value" VARCHAR
);CREATE TABLE metadata (
"cat_code" VARCHAR,
"cat_desc" VARCHAR,
"category_level" BIGINT,
"dt_code" VARCHAR,
"dt_desc" VARCHAR,
"dt_unit" VARCHAR,
"et_code" VARCHAR,
"et_desc" VARCHAR,
"et_unit" VARCHAR,
"geo_code" VARCHAR,
"geo_desc" VARCHAR,
"is_adj" BIGINT,
"report" VARCHAR,
"detail_code" VARCHAR,
"time_series_code" VARCHAR
);Anyone who has the link will be able to view this.