Search
Power Sources

Overview of Power Sources & Electricity Access

This section presents a summary of key electricity-related indicators: primary and secondary electricity sources and the MTF ranking for electricity access.

HIT_PATH = '../../../../src/'
institution_id = 7
lang = 'en'
import os,sys, folium
sys.path.insert(0, os.path.normpath(os.path.join(os.path.abspath(''), HIT_PATH)))
import hedera_types as hedera
import odk_interface as odk


mfi = hedera.mfi(institution_id,setPathBook=True)
data = mfi.read_survey(mfi.odk_data_name)
mfi.HH = odk.households(data)
attribute = 'E_Index'

Primary Electricity Source

import matplotlib.pyplot as plt
plt.rcParams.update({'font.size': 18})
plt.rcParams["font.family"] = "Tw Cen MT"
mfi.electricity_sources_summary(lang='en',legend=True)

Secondary Electricity Sources

import matplotlib.pyplot as plt
plt.rcParams.update({'font.size': 18})
plt.rcParams["font.family"] = "Tw Cen MT"
mfi.electricity_sources_summary(lang='en',legend=True,secondary=True,primary=False)

MTF Ranking - Access to Electricity

import matplotlib.pyplot as plt
plt.rcParams.update({'font.size': 18})
plt.rcParams["font.family"] = "Tw Cen MT"
mfi.tier_pie(attribute)