Search
Appliances

Appliances

The ranking in terms of access to electricity services is based on the types and corresponding size of electric appliances used. Tier 1 refers to households that use lighting, cell phone chargers, and other small devices like radios, whereas Tier 2 also includes slightly bigger items such as TVs and computers. Tier 3 includes refrigerators, air coolers, food processes, and other medium-sized devices. In Tier 4, households can use larger appliances such as washing machines and microwaves. Tier 5 covers all desired appliances, including air conditioners, electric water heaters, and electric showers.

The different appliances households use, as well as the desired and desired but unaffordable appliances, are shown in the graphs below.

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)

# this is needed if the surveys do not cover all states/offices
empty = []
for o in mfi.offices:
    select = mfi.HH['locality']==o
    if sum(select)==0:
        empty.append(o)
        
for o in empty:
    mfi.offices.remove(o)

Household Appliance Usage

[appliances_per_x,u_id] = odk.compute_appliances_per_x(data,mfi.HH,mfi.offices,'locality')
odk.plot_appliances_per_x(len(mfi.HH),appliances_per_x,u_id,'locality',
                          mfi.offices,
                          figPath=None,c=mfi.office_color,lang=lang)

Desired Household Appliances

[appliances_planned_per_x,u_id] = odk.compute_appliances_per_x(data, mfi.HH,mfi.offices,'locality',question='electricity_appliances_planned')
odk.plot_appliances_per_x(len(mfi.HH),appliances_planned_per_x,u_id,'locality', mfi.offices, figPath=None,c=mfi.office_color,lang=lang)

Desired But Unaffordable Household Appliances

[appliances_planned_per_x,u_id] = odk.compute_appliances_per_x(data,
mfi.HH,mfi.offices,'locality',question='electricity_appliances_wish')
odk.plot_appliances_per_x(len(mfi.HH),appliances_planned_per_x,u_id,'locality',
                          mfi.offices,
                          figPath=None,c=mfi.office_color,lang=lang)