NBER Macrohistory Database
Western economic history data spanning 1785-1974
@kaggle.sohier_nber_macrohistory_database
Western economic history data spanning 1785-1974
@kaggle.sohier_nber_macrohistory_database
This data set covers all aspects of the pre-WWI and interwar economies, including production, construction, employment, money, prices, asset market transactions, foreign trade, and government activity. Many series are highly disaggregated, and many exist at the monthly or quarterly frequency. The data set has some coverage of the United Kingdom, France and Germany, although it predominantly covers the United States. For information see:
Information about seasonal adjustments is available, but in most cases only unadjusted series have been made available here.
The data.csv is organized in a long format with columns for the date, variable, and value. The dates are always the beginning of period date for whatever period existed in the original data. This means that '1920' was converted to January 1st, 1920 while Q2 1920 was converted to April 1, 1920. This is intended as a convenience to make it easier to work with multiple time series from the original mixed frequency data.
The data is currently organized into 16 chapters:
The dataset has been transformed from its original format. You can find the data preparation code here.
This dataset was kindly made available by the National Bureau of Economic Research (NBER). You can find the original dataset here.
CREATE TABLE data (
"date" TIMESTAMP,
"value" DOUBLE,
"variable" VARCHAR
);CREATE TABLE documentation (
"file_name" VARCHAR,
"description" VARCHAR,
"documentation" VARCHAR,
"chapter" BIGINT
);Anyone who has the link will be able to view this.