Series collection
[openfisca-tunisia/parameters/marche_travail.smig_40h_horaire] Salaire minimum interprofessionnel garanti (Smig) horaire - régime 40h par semaine
- from
- 1961-04-01=0.076
- to
- 2025-01-01=2.586
- min:
- 0.076
- max:
- 2.586
- avg:
- 0.917
- σ:
- 0.624
Series code | 1961-04-01 | 1966-01-01 | 1968-05-01 | 1971-05-01 | 1974-01-01 | 1975-06-01 | 1977-02-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 | 2014-05-01 | 2015-05-01 | 2016-08-01 | 2018-05-01 | 2019-05-01 | 2020-10-01 | 2022-10-01 | 2024-05-01 | 2025-01-01 |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
[marche_travail.smig_40h_horaire] | 0.076 | 0.084 | 0.084 | 0.104 | 0.13 | 0.145 | 0.193 | 0.21425 | 0.232 | 0.23896 | 0.263 | 0.321 | 0.436 | 0.484 | 0.508 | 0.532 | 0.556 | 0.573 | 0.621 | 0.633 | 0.671 | 0.683 | 0.721 | 0.733 | 0.745 | 0.779 | 0.808 | 0.82 | 0.832 | 0.861 | 0.875 | 0.904 | 0.916 | 0.945 | 0.986 | 1.02 | 1.061 | 1.095 | 1.124 | 1.158 | 1.199 | 1.257 | 1.299 | 1.356 | 1.421 | 1.497 | 1.584 | 1.671 | 1.763 | 1.866 | 1.984 | 2.11 | 2.254 | 2.409 | 2.586 |
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 interprofessionnel garanti (Smig) horaire - régime 40h par semaine
df1 = fetch_series("openfisca-tunisia/parameters/marche_travail.smig_40h_horaire")
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()