Functionality
OUTPUT
Final MATLAB output will be a cell array with unstacked values over the queried period keeping the following information intact:
@frequency
provider_code
dataset_code
dataset_name
series_code
series_name
-
original_period
: the period as returned by DBnomics -
period
(pd.Timestamp
): the first day oforiginal_period
-
original_value
(str
orfloat
): the observation value as returned by DBnomics, where not available values are represented by"NA"
-
value
(float
orNaN
): the observation value as returned by DBnomics, where not available values are represented byNaN
Followed by dimensions columns, corresponding to the dimensions of the dataset:
-
dimensions labels (eg:
freq
,unit
,geo
) - then dimensions values labels (eg:
Frequency
,Unit
,Country
)
FUNCTIONS
Keeping the original functionality of the R, Python plug-ins, the following functions are necessary:
-
Fetch time series:
-
by ids
- one series,
- multiple series from same dataset,
- multiple series from different datasets of different providers
-
by mask (
CompatibleProviders = {"BIS", "ECB", "Eurostat", "FED", "IMF", "IMF-WEO", "INSEE", "OECD", "WTO"}
)- one series,
- multiple series from same dataset,
- all series along one dimension from the same dataset
- all series along multiple dimensions from the same dataset
-
by dimensions (same dataset)
- one series of one dimension,
- multiple series of one dimension,
- multiple series of multiple dimensions,
-
by ids
- Fetch series by api link (from the website/cart)
-
Transform time series with filters
- https://editor.nomics.world/filters
- Note: array fields should change when filters are used
-
period_middle_day
: the middle day oforiginal_period
(can be useful when you compare graphically interpolated series and original ones) -
filtered
(bool
):True
if the series is filtered -
series_code
: same as before for original series, but the suffix_filtered
is added for filtered series -
series_name
: same as before for original series, but the suffix(filtered)
is added for filtered series
-