-
|
Hi, I want to make request like this in R: I tried this code but it doesn't work: I also tried with |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
|
Hi @lz1nwm , this is the correct query:
the dataflow id is DSD_EO@DF_EO , the connectors manage the agency (OECD.ECO.MAD) and version automatically, so they do not have to be provided. You may also want to try the new filter based query style:
Both query types take a while to complete (13k time series) Best, Attilio |
Beta Was this translation helpful? Give feedback.
-
|
Hi, you are right. OECD v2 does not support filtering on component value yet, I forgot it. They will add it probably at a later time. Anyway the query contruct is correct, you can see it in a similar query on a test provider:
|
Beta Was this translation helpful? Give feedback.
Hi @lz1nwm , this is the correct query:
getTimeSeriesTable2(provider='OECD_SDMXV3', dataflow = 'DSD_EO@DF_EO', key = '*.CB.A')the dataflow id is DSD_EO@DF_EO , the connectors manage the agency (OECD.ECO.MAD) and version automatically, so they do not have to be provided.
You may also want to try the new filter based query style:
getTimeSeries2(provider='OECD_SDMXV3', dataflow='DSD_EO@DF_EO', filter='c[MEASURE]=CB&c[FREQ]=A');Both query types take a while to complete (13k time series)
Best, Attilio