You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Useful if we could inherit DSD document from a dataflow request, as pointed out in #91.
Since a SDMDataFlows object can handle multiple dataflows, this feature will allows, by specifying dsd = TRUE in readSDMX to associate the DSD to each dataflow, (although primarily intented to be used for a single dataflow). The code to access the DSD is then not the same as for data:
For a SDMXData object, we call the dsd with:
dsd <- slot(sdmx, "dsd")
For a SDMXDataFlows object, we will call the dsd with:
dsd <- slot(slot(sdmx, "dataflows")[[1]], "dsd")
The text was updated successfully, but these errors were encountered:
Useful if we could inherit DSD document from a dataflow request, as pointed out in #91.
Since a
SDMDataFlows
object can handle multiple dataflows, this feature will allows, by specifyingdsd = TRUE
inreadSDMX
to associate the DSD to each dataflow, (although primarily intented to be used for a single dataflow). The code to access the DSD is then not the same as for data:For a
SDMXData
object, we call the dsd with:dsd <- slot(sdmx, "dsd")
For a
SDMXDataFlows
object, we will call the dsd with:dsd <- slot(slot(sdmx, "dataflows")[[1]], "dsd")
The text was updated successfully, but these errors were encountered: