FRED Category 32263
Series & observations by top-level category
@fred.cat_32263
Series & observations by top-level category
@fred.cat_32263
Each dataset in this collection contains the public time series from one FRED top-level category
(e.g., Prices, National Accounts) together with their full observation histories.
Tables included:
series
: core series metadata (title, frequency, units, seasonal adjustment, notes, etc.).observations
: values over time for each series.Notes
value_raw
) and a parsed numeric (value
).value_raw
and set to NULL in value
.series_id
. Series notes are included to help analysts.Disclaimer: This dataset uses the FRED® API but is not endorsed or certified by the Federal Reserve Bank of St. Louis.
CREATE TABLE observations (
"series_id" VARCHAR,
"date" TIMESTAMP,
"value_raw" DOUBLE,
"value" DOUBLE
);
CREATE TABLE series (
"series_id" VARCHAR,
"title" VARCHAR,
"observation_start" TIMESTAMP,
"observation_end" TIMESTAMP,
"frequency" VARCHAR,
"frequency_short" VARCHAR,
"units" VARCHAR,
"units_short" VARCHAR,
"seasonal_adjustment" VARCHAR,
"seasonal_adjustment_short" VARCHAR,
"last_updated" TIMESTAMP,
"popularity" BIGINT,
"group_popularity" BIGINT,
"notes" VARCHAR,
"category_ids" VARCHAR,
"category_paths" VARCHAR
);
Anyone who has the link will be able to view this.