Quick Start
A 6-step workflow to go from "open the app" to "a dataset + analysis." Each step links to detailed documentation. The full interactive version lives inside the app at ecodata.io.vn/quick-start.
1. Log in
Log in with email or Google. Once in, you land on the Dashboard — where you search international indicators and access the Vietnam data modules. Browsing the catalogue and previewing are free; full export requires a subscription.
→ Details: Login → Filter → Preview → Export
2. Explore data sources
Pick the group by the unit of analysis of your research question:
| You need | Go to module | Documentation |
|---|---|---|
| Cross-country comparison, macro control variables | Global Data | Global Data |
| Vietnam official figures by province/year | GSO Explorer | Vietnam GSO |
| Import-export by commodity/partner | Customs Explorer | Customs |
| Local governance (PCI/PAPI/...) | Survey Explorer | Macro Survey & VHLSS |
| Household microdata | VHLSS Variable Hub | Macro Survey & VHLSS |
| Prices, financial statements, corporate events | Stock Hub | Stock Hub |
→ Overview: Data source groups
3. Select and filter indicators
- Enter a keyword or short code (e.g.
wb_mac_gdp_usd). - Filter by source to limit results to a single organization.
- Choose the frequency that matches your model (annual/quarterly/monthly).
- Set a year range to drop indicators without enough coverage.
- Prefer indicators with high completeness.
Example input: Province = Ho Chi Minh City, indicator = GRDP, 2015–2023.
→ Field concepts: Data Dictionary
4. Preview
Before downloading everything, check three things: coverage (enough countries/provinces and enough years?), units (same unit when combining sources?), and source definitions (same name but different calculation method?).
→ Why it matters: Methodology
5. Export data
Export to CSV, Excel (XLSX), or JSON, with metadata + short codes. The number of exports per day depends on your tier.
Example output: a panel table country/province × year × indicator + a metadata file describing units, frequency, and source.
→ Formats & limits: Preview & Export
6. Econometric analysis
Use the integrated Econometrics tool to prepare data, estimate, and test models (OLS, WLS, GLS, panel, VAR, ARIMA, Logit, Probit…), present result tables in citation style, then export complete code that runs in Stata/R/Python for reproducibility.
→ Details: Econometrics · Assistant: AI Chat
Retrieve data with Excel / Python / Stata / R
If your research workflow runs in Excel, Python, Stata, or R, use the EcoData retrieval toolkit instead of downloading manually and copying tables. All clients use the same Public SDMX API at /api/v1/sdmx and require a personal API key.
1. Create an API key
- Open Dashboard → API Access.
- Create a new key and name it after the project or software client.
- Copy the full key once and store it securely in an environment variable,
~/.ecodata, Office task pane storage, or a password manager. - Revoke the key when a project ends or a device/collaborator no longer needs access.
2. Choose the dataflow
| Dataflow | When to use it |
|---|---|
MACRO_INTL | International macro indicators by indicator, country, and frequency. |
GSO_VN | Vietnam GSO indicators by indicator, province, dataset, and frequency. |
CUSTOMS_VN | Import-export panels by province, flow, measure, and frequency. |
STOCK_VN | Vietnam market series by symbol, metric, and frequency. |
3. Run the client in your research software
from ecodata import EcoData
eco = EcoData()
gdp = eco.series(
"MACRO_INTL",
indicator="NY.GDP.MKTP.CD",
ref_area=["VNM", "USA"],
freq="A",
start=2010,
)
library(ecodata)
gdp <- eco_series(
"MACRO_INTL",
indicator = "NY.GDP.MKTP.CD",
ref_area = c("VNM", "USA"),
freq = "A",
start = 2010
)
net install ecodata, from("https://ecodata.io.vn/clients/stata") replace
ecodata setkey eco_live_...
ecodata use MACRO_INTL, indicator(NY.GDP.MKTP.CD) ref_area(VNM USA) freq(A) start(2015) frame(gdp)
=ECODATA.SERIES("MACRO_INTL","NY.GDP.MKTP.CD.VNM.A","2019","2023")
Release status: Python, R, and Stata core clients have passed production live smokes with real data; Stata and Excel have self-hosted routes. PyPI, CRAN, SSC, AppSource, and manual Excel runtime checks remain separate release gates and should not be described as complete.