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
Copy file name to clipboardExpand all lines: doc/example.rst
+5-2Lines changed: 5 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -24,11 +24,14 @@ These include *structural metadata* that together completely describe the data a
24
24
sm
25
25
26
26
:py:`sm` is a Python object of class :class:`.StructureMessage`.
27
-
We can explore some of the specific artifacts—for example, three **code lists**—using :meth:`.StructureMessage.get` to retrieve them and :func:`.to_pandas` to convert to :class:`.pandas.Series`:
27
+
We can explore some of the specific artifacts
28
+
—for example, three **code lists**—
29
+
using :meth:`.StructureMessage.get` to retrieve them
30
+
and :func:`.to_pandas` to convert to :class:`.pandas.Series`:
28
31
29
32
.. ipython:: python
30
33
31
-
for cl in"AGE(10.3)", "SEX(1.13)", "UNIT(55.0)":
34
+
for cl in"ESTAT:AGE(11.0)", "ESTAT:SEX(1.13)", "ESTAT:UNIT(59.0)":
32
35
print(sdmx.to_pandas(sm.get(cl)))
33
36
34
37
Next, we download a **data set** containing a portion of the data in this data flow, structured by this DSD.
0 commit comments