Series collection
[openfisca-tunisia/parameters/marche_travail.smag_journalier] Salaire Minimum Agricole Garanti (SMAG) - montant par jour
- from
- 1966-01-01=0.385
- to
- 2019-05-01=15.504
- min:
- 0.385
- max:
- 15.504
- avg:
- 5.332
- σ:
- 3.807
Series code | 1966-01-01 | 1968-05-01 | 1969-11-01 | 1971-05-01 | 1974-06-01 | 1975-06-01 | 1977-05-01 | 1978-05-01 | 1979-05-01 | 1980-02-01 | 1980-05-01 | 1981-04-01 | 1982-02-01 | 1983-01-01 | 1986-07-01 | 1987-11-01 | 1988-04-01 | 1989-08-01 | 1990-01-01 | 1991-08-01 | 1992-05-01 | 1992-08-01 | 1993-05-01 | 1993-08-01 | 1994-08-01 | 1995-05-01 | 1996-05-01 | 1996-09-09 | 1997-07-20 | 1997-11-07 | 1998-08-20 | 1999-05-01 | 1999-08-19 | 2000-05-01 | 2001-07-01 | 2002-07-01 | 2003-07-01 | 2004-07-01 | 2005-09-01 | 2006-07-01 | 2007-07-01 | 2008-07-01 | 2009-08-01 | 2010-07-01 | 2011-05-01 | 2012-07-01 | 2012-12-01 | 2014-08-11 | 2015-11-09 | 2017-06-05 | 2018-05-01 | 2019-05-01 |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
[marche_travail.smag_journalier] | 0.385 | 0.5 | 0.55 | 0.6 | 0.8 | 0.9 | 1.2 | 1.332 | 1.44 | 1.483 | 1.631 | 2 | 2.4 | 2.64 | 2.9 | 3.05 | 3.2 | 3.315 | 3.661 | 3.761 | 3.961 | 4.061 | 4.261 | 4.361 | 4.461 | 4.661 | 4.861 | 4.961 | 5.061 | 5.209 | 5.309 | 5.509 | 5.609 | 5.809 | 6.059 | 6.259 | 6.509 | 6.709 | 6.909 | 7.129 | 7.379 | 7.749 | 8.019 | 8.38 | 9 | 10.608 | 11.608 | 12.304 | 13 | 13.736 | 14.56 | 15.504 |
Loading chart
This Python snippet uses the DBnomics Python client to download the series of your cart and plot each of them with a line chart.
This is a starting point that you can customize. Plotly is used here, however any other chart library can be used.
You can start by copying it to a Jupyter Notebook , for example.
If you add series to your cart, you will need to copy-paste the new lines of the source code.
import plotly.express as px
import pandas as pd
from dbnomics import fetch_series
dfs = []
# Salaire Minimum Agricole Garanti (SMAG) - montant par jour
df1 = fetch_series("openfisca-tunisia/parameters/marche_travail.smag_journalier")
df1["series_id"] = df1[["provider_code", "dataset_code", "series_code"]].agg('/'.join, axis=1)
dfs.append(df1)
# display(df1)
display(px.line(df1, x="period", y="value", title=df1.series_id[0]))
df_all = pd.concat(dfs)
fig = px.line(df_all, x="period", y="value", color="series_code", title="All the cart")
fig.update_layout(legend={"xanchor": "right", "yanchor": "bottom"})
fig.show()