MATLAB Interface for DBnomics Data

Access DBnomics economic data from MATLAB
3 Downloads
Updated 3 Jan 2024

Getting Started with DBnomics data in MATLAB®

Description

This interface allows users to access DBnomics data directly from MATLAB. DBnomics is a free platform to aggregate publicly-available economic data provided by national and international statistical institutions, but also by researchers and private companies.

Open in MATLAB Online

System Requirements

  • MATLAB R2022a or later

Features

Users can retrieve DBnomics data directly from MATLAB. DBnomics documentation for Datasets, Last Updates, Providers, Search, and Series requests can be found here:

https://api.db.nomics.world/v22/apidocs#/

A valid DBnomics connection is required for all requests. Users can retrieve information required to make subsequent data requests.

Create a DBnomics connection.

c = dbnomics;

Retrieve providers and datasets information

Get all available datasets information for a provider or information for a specific dataset

d = datasets(c,"ECB");
d = datasets(c,"ECB","AME");

Get last update date information for providers and datasets

d = lastupdates(c);

Get providers information

d = providers(c);
d = providers(c,"ECB");

Search for datasets information with optional query text

d = search(c);
d = search(c,q="Food and Agriculture");

Get a list of series for providers and datasets

d = series(c);
d = series(c,"ECB");
d = series(c,"ECB","AME");
d = series(c,"ECB","AME","A.AUT.1.0.0.0.OVGD");

Use API flags to filter requested data. For example,

d = datasets(c,"ECB","",limit=50)
d = lastupdates(c,"datasets.limit",10,"providers.limit",5)
d = providers(c,"",limit=100,offset=50)
d = search(c,q="Food and Agriculture",limit=50,offset=10)
d = series(c,"","","",limit=100)

License

The license is available in the LICENSE.TXT file in this GitHub repository.

Community Support

MATLAB Central

Copyright 2023 The MathWorks, Inc.

Cite As

MathWorks Computational Finance Team (2024). MATLAB Interface for DBnomics Data (https://github.com/mathworks/dbnomics), GitHub. Retrieved .

MATLAB Release Compatibility
Created with R2024a
Compatible with R2022a and later releases
Platform Compatibility
Windows macOS Linux
Tags Add Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Versions that use the GitHub default branch cannot be downloaded

Version Published Release Notes
1.0.1

Added github link

1.0.0

To view or report issues in this GitHub add-on, visit the GitHub Repository.
To view or report issues in this GitHub add-on, visit the GitHub Repository.