コード例 #1
0
ファイル: gender.py プロジェクト: tascha/DA2I-Dashboards
def update_unemployment_table(selected_country):
    return [
        utils.generate_most_recent_value_table(
            selected_country=selected_country,
            indicator="Unemp.Female",
            indicator_name="Women Unemployed"),
        utils.generate_most_recent_value_table(
            selected_country=selected_country,
            indicator="Unemp.Male",
            indicator_name="Men Unemployed")
    ]
コード例 #2
0
ファイル: gender.py プロジェクト: tascha/DA2I-Dashboards
def update_neet_table(selected_country):
    return [
        utils.generate_most_recent_value_table(
            selected_country=selected_country,
            indicator="NEET.Female",
            indicator_name=
            "Young women not in employment, education, or training"),
        utils.generate_most_recent_value_table(
            selected_country=selected_country,
            indicator="NEET.Male",
            indicator_name="Young men not in employment, education, or training"
        )
    ]
コード例 #3
0
def update_fixed_broadband_subscription_table(selected_country):
    return utils.generate_most_recent_value_table(
        selected_country=selected_country,
        indicator="fixed.broadband.100",
        indicator_name="Fixed broadband subscription",
        format_as_rate=True)
コード例 #4
0
def update_mobile_broadband_subscription_table(selected_country):
    return utils.generate_most_recent_value_table(
        selected_country=selected_country,
        indicator="mobile.broadband.per.100",
        indicator_name="Mobile broadband subscription",
        format_as_rate=True)
コード例 #5
0
def update_mobile_broadband_cost_table(selected_country):
    return utils.generate_most_recent_value_table(
        selected_country=selected_country,
        indicator="mobile.broadband.cost",
        indicator_name="Mobile Broadband cost as percent of GNI per capita")
コード例 #6
0
def update_3g_mobile_network_coverage_table(selected_country):
    return utils.generate_most_recent_value_table(
        selected_country=selected_country,
        indicator="at.least.3G.coverage",
        indicator_name="3G Mobile Network Coverage")
コード例 #7
0
def update_households_with_computer_table(selected_country):
    return utils.generate_most_recent_value_table(
        selected_country=selected_country,
        indicator="hh.computer",
        indicator_name="Homes with computer")
コード例 #8
0
def update_households_with_internet_table(selected_country):
    return utils.generate_most_recent_value_table(
        selected_country=selected_country,
        indicator="hh.internet",
        indicator_name="Homes with Internet")
コード例 #9
0
def update_internet_population_table(selected_country):
    return utils.generate_most_recent_value_table(
        selected_country=selected_country,
        indicator="ind.internet",
        indicator_name="Internet Population")
コード例 #10
0
ファイル: gender.py プロジェクト: tascha/DA2I-Dashboards
def update_women_in_stem_table(selected_country):
    return utils.generate_most_recent_value_table(
        selected_country=selected_country,
        indicator="women.in.stem",
        indicator_name="Women in Stem")
コード例 #11
0
ファイル: gender.py プロジェクト: tascha/DA2I-Dashboards
def update_women_in_parliament_table(selected_country):
    return utils.generate_most_recent_value_table(
        selected_country=selected_country,
        indicator="SG.GEN.PARL.ZS",
        indicator_name="Women in politics")
コード例 #12
0
ファイル: gender.py プロジェクト: tascha/DA2I-Dashboards
def update_inequality_over_years_table(selected_country):
    return utils.generate_most_recent_value_table(
        selected_country=selected_country,
        indicator="GII",
        indicator_name="Gender Inequality Index")