* created by evan schofefr · web view* created by evan schofer * department of sociology *...

35
* Stata do file to reshape WDI 2010 and add variable labels * Created by Evan Schofer * Department of Sociology * University of California, Irvine * May 2010 * Load newest WDI clear set memory 5000m * NOTE: change file path to work with your computer... insheet using "C:\whatever\WDI_GDF_Data.csv", name comma rename v5 i1960 rename v6 i1961 rename v7 i1962 rename v8 i1963 rename v9 i1964 rename v10 i1965 rename v11 i1966 rename v12 i1967 rename v13 i1968 rename v14 i1969 rename v15 i1970 rename v16 i1971 rename v17 i1972 rename v18 i1973 rename v19 i1974 rename v20 i1975 rename v21 i1976 rename v22 i1977 rename v23 i1978 rename v24 i1979 rename v25 i1980 rename v26 i1981 rename v27 i1982 rename v28 i1983 rename v29 i1984 rename v30 i1985 rename v31 i1986 rename v32 i1987 rename v33 i1988 rename v34 i1989 rename v35 i1990 rename v36 i1991 rename v37 i1992 rename v38 i1993 rename v39 i1994

Upload: others

Post on 24-Mar-2020

2 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: * Created by Evan Schofefr · Web view* Created by Evan Schofer * Department of Sociology * University of California, Irvine * May 2010 * Load newest WDI. clear. set memory 5000m

* Stata do file to reshape WDI 2010 and add variable labels* Created by Evan Schofer* Department of Sociology* University of California, Irvine* May 2010

* Load newest WDIclearset memory 5000m* NOTE: change file path to work with your computer...insheet using "C:\whatever\WDI_GDF_Data.csv", name comma

rename v5 i1960rename v6 i1961rename v7 i1962rename v8 i1963rename v9 i1964rename v10 i1965rename v11 i1966rename v12 i1967rename v13 i1968rename v14 i1969rename v15 i1970rename v16 i1971rename v17 i1972rename v18 i1973rename v19 i1974rename v20 i1975rename v21 i1976rename v22 i1977rename v23 i1978rename v24 i1979rename v25 i1980rename v26 i1981rename v27 i1982rename v28 i1983rename v29 i1984rename v30 i1985rename v31 i1986rename v32 i1987rename v33 i1988rename v34 i1989rename v35 i1990rename v36 i1991rename v37 i1992rename v38 i1993rename v39 i1994rename v40 i1995rename v41 i1996rename v42 i1997rename v43 i1998rename v44 i1999rename v45 i2000rename v46 i2001rename v47 i2002rename v48 i2003rename v49 i2004

Page 2: * Created by Evan Schofefr · Web view* Created by Evan Schofer * Department of Sociology * University of California, Irvine * May 2010 * Load newest WDI. clear. set memory 5000m

rename v50 i2005rename v51 i2006rename v52 i2007rename v53 i2008rename v54 i2009

replace seriescode = subinstr(seriescode,".","_",.)replace seriescode = upper(seriescode)

sort seriescode countrycode

reshape long i, i(countrycode seriescode) j(year)

drop seriesnamereshape wide i, i(year countrycode) j(seriescode) string

sort countrycode year

label var iAG_AGR_TRAC_NO "Agricultural machinery, tractors"label var iAG_CON_FERT_MT "Fertilizer consumption (metric tons)"label var iAG_CON_FERT_PT_ZS "Fertilizer consumption (% of fertilizer production)"label var iAG_CON_FERT_ZS "Fertilizer consumption (kilograms per hectare of arable land)"label var iAG_LND_AGRI_K2 "Agricultural land (sq. km)"label var iAG_LND_AGRI_ZS "Agricultural land (% of land area)"label var iAG_LND_ARBL_HA "Arable land (hectares)"label var iAG_LND_ARBL_HA_PC "Arable land (hectares per person)"label var iAG_LND_ARBL_ZS "Arable land (% of land area)"label var iAG_LND_CREL_HA "Land under cereal production (hectares)"label var iAG_LND_CROP_ZS "Permanent cropland (% of land area)"label var iAG_LND_FRST_K2 "Forest area (sq. km)"label var iAG_LND_FRST_ZS "Forest area (% of land area)"label var iAG_LND_IRIG_AG_ZS "Agricultural irrigated land (% of total agricultural land)"label var iAG_LND_PRCP_MM "Average precipitation in depth (mm per year) "label var iAG_LND_TOTL_K2 "Land area (sq. km)"label var iAG_LND_TRAC_ZS "Agricultural machinery, tractors per 100 sq. km of arable land"label var iAG_PRD_CROP_XD "Crop production index (1999-2001 = 100)"label var iAG_PRD_FOOD_XD "Food production index (1999-2001 = 100)"label var iAG_PRD_LVSK_XD "Livestock production index (1999-2001 = 100)"label var iAG_SRF_TOTL_K2 "Surface area (sq. km)"label var iAG_YLD_CREL_KG "Cereal yield (kg per hectare)"label var iBG_GSR_NFSV_GD_ZS "Trade in services (% of GDP)"label var iBM_GSR_CMCP_ZS "Communications, computer, etc. (% of service imports, BoP)"label var iBM_GSR_FCTY_CD "Income payments (BoP, current US$)"label var iBM_GSR_GNFS_CD "Imports of goods and services (BoP, current US$)"label var iBM_GSR_INSF_ZS "Insurance and financial services (% of service imports, BoP)"label var iBM_GSR_MRCH_CD "Goods imports (BoP, current US$)"label var iBM_GSR_NFSV_CD "Service imports (BoP, current US$)"label var iBM_GSR_ROYL_CD "Royalty and license fees, payments (BoP, current US$)"label var iBM_GSR_TOTL_CD "Imports of goods, services and income (BoP, current US$)"label var iBM_GSR_TRAN_ZS "Transport services (% of service imports, BoP)"label var iBM_GSR_TRVL_ZS "Travel services (% of service imports, BoP)"label var iBM_KLT_DINV_GD_ZS "Foreign direct investment, net outflows (% of GDP)"

Page 3: * Created by Evan Schofefr · Web view* Created by Evan Schofer * Department of Sociology * University of California, Irvine * May 2010 * Load newest WDI. clear. set memory 5000m

label var iBM_TRF_PWKR_CD_DT "Workers' remittances and compensation of employees, paid (current US$)"label var iBN_CAB_XOKA_CD "Current account balance (BoP, current US$)"label var iBN_CAB_XOKA_GD_ZS "Current account balance (% of GDP)"label var iBN_GSR_FCTY_CD "Net income (BoP, current US$)"label var iBN_GSR_GNFS_CD "Net trade in goods and services (BoP, current US$)"label var iBN_GSR_MRCH_CD "Net trade in goods (BoP, current US$)"label var iBN_KAC_EOMS_CD "Net errors and omissions, adjusted (BoP, current US$)"label var iBN_KLT_DINV_CD "Foreign direct investment, net (BoP, current US$)"label var iBN_KLT_PTXL_CD "Portfolio investment, excluding LCFAR (BoP, current US$)"label var iBN_RES_INCL_CD "Changes in net reserves (BoP, current US$)"label var iBN_TRF_CURR_CD "Net current transfers (BoP, current US$)"label var iBN_TRF_KOGT_CD "Net capital account (BoP, current US$)"label var iBX_GRT_EXTA_CD_DT "Grants, excluding technical cooperation (current US$)"label var iBX_GRT_TECH_CD_DT "Technical cooperation grants (current US$)"label var iBX_GSR_CCIS_CD "ICT service exports (BoP, current US$)"label var iBX_GSR_CCIS_ZS "ICT service exports (% of service exports, BoP)"label var iBX_GSR_CMCP_ZS "Communications, computer, etc. (% of service exports, BoP)"label var iBX_GSR_FCTY_CD "Income receipts (BoP, current US$)"label var iBX_GSR_GNFS_CD "Exports of goods and services (BoP, current US$)"label var iBX_GSR_INCL_CD "Exports of goods, services, income and workers' remittances (BoP, current US$)"label var iBX_GSR_INSF_ZS "Insurance and financial services (% of service exports, BoP)"label var iBX_GSR_MRCH_CD "Goods exports (BoP, current US$)"label var iBX_GSR_NFSV_CD "Service exports (BoP, current US$)"label var iBX_GSR_ROYL_CD "Royalty and license fees, receipts (BoP, current US$)"label var iBX_GSR_TOTL_CD "Exports of goods, services and income (BoP, current US$)"label var iBX_GSR_TRAN_ZS "Transport services (% of service exports, BoP)"label var iBX_GSR_TRVL_ZS "Travel services (% of service exports, BoP)"label var iBX_KLT_DINV_CD_DT "Foreign direct investment, net inflows in reporting economy (DRS, current US$)"label var iBX_KLT_DINV_CD_WD "Foreign direct investment, net inflows (BoP, current US$)"label var iBX_KLT_DINV_WD_GD_ZS "Foreign direct investment, net inflows (% of GDP)"label var iBX_KLT_DREM_CD_DT "Profit remittances on FDI (current US$)"label var iBX_PEF_TOTL_CD_DT "Portfolio investment, equity (DRS, current US$)"label var iBX_PEF_TOTL_CD_WD "Portfolio equity, net inflows (BoP, current US$)"label var iBX_TRF_CURR_CD "Current transfers, receipts (BoP, current US$)"label var iBX_TRF_PWKR_CD "Workers' remittances, receipts (BoP, current US$)"label var iBX_TRF_PWKR_CD_DT "Workers' remittances and compensation of employees, received (current US$)"label var iBX_TRF_PWKR_DT_GD_ZS "Workers' remittances and compensation of employees, received (% of GDP)"label var iCM_FIN_INTL_GD_ZS "Financing via international capital markets (gross inflows, % of GDP)"label var iCM_MKT_INDX_ZG "S&P Global Equity Indices (annual % change)"label var iCM_MKT_LCAP_CD "Market capitalization of listed companies (current US$)"label var iCM_MKT_LCAP_GD_ZS "Market capitalization of listed companies (% of GDP)"label var iCM_MKT_LDOM_NO "Listed domestic companies, total"label var iCM_MKT_TRAD_CD "Stocks traded, total value (current US$)"label var iCM_MKT_TRAD_GD_ZS "Stocks traded, total value (% of GDP)"label var iCM_MKT_TRNR "Stocks traded, turnover ratio (%)"label var iDC_DAC_AUSL_CD "Net bilateral aid flows from DAC donors, Australia (current US$)"

Page 4: * Created by Evan Schofefr · Web view* Created by Evan Schofer * Department of Sociology * University of California, Irvine * May 2010 * Load newest WDI. clear. set memory 5000m

label var iDC_DAC_AUTL_CD "Net bilateral aid flows from DAC donors, Austria (current US$)"label var iDC_DAC_BELL_CD "Net bilateral aid flows from DAC donors, Belgium (current US$)"label var iDC_DAC_CANL_CD "Net bilateral aid flows from DAC donors, Canada (current US$)"label var iDC_DAC_CECL_CD "Net bilateral aid flows from DAC donors, European Commission (current US$)"label var iDC_DAC_CHEL_CD "Net bilateral aid flows from DAC donors, Switzerland (current US$)"label var iDC_DAC_DEUL_CD "Net bilateral aid flows from DAC donors, Germany (current US$)"label var iDC_DAC_DNKL_CD "Net bilateral aid flows from DAC donors, Denmark (current US$)"label var iDC_DAC_ESPL_CD "Net bilateral aid flows from DAC donors, Spain (current US$)"label var iDC_DAC_FINL_CD "Net bilateral aid flows from DAC donors, Finland (current US$)"label var iDC_DAC_FRAL_CD "Net bilateral aid flows from DAC donors, France (current US$)"label var iDC_DAC_GBRL_CD "Net bilateral aid flows from DAC donors, United Kingdom (current US$)"label var iDC_DAC_GRCL_CD "Net bilateral aid flows from DAC donors, Greece (current US$)"label var iDC_DAC_IRLL_CD "Net bilateral aid flows from DAC donors, Ireland (current US$)"label var iDC_DAC_ITAL_CD "Net bilateral aid flows from DAC donors, Italy (current US$)"label var iDC_DAC_JPNL_CD "Net bilateral aid flows from DAC donors, Japan (current US$)"label var iDC_DAC_LUXL_CD "Net bilateral aid flows from DAC donors, Luxembourg (current US$)"label var iDC_DAC_NLDL_CD "Net bilateral aid flows from DAC donors, Netherlands (current US$)"label var iDC_DAC_NORL_CD "Net bilateral aid flows from DAC donors, Norway (current US$)"label var iDC_DAC_NZLL_CD "Net bilateral aid flows from DAC donors, New Zealand (current US$)"label var iDC_DAC_PRTL_CD "Net bilateral aid flows from DAC donors, Portugal (current US$)"label var iDC_DAC_SWEL_CD "Net bilateral aid flows from DAC donors, Sweden (current US$)"label var iDC_DAC_TOTL_CD "Net bilateral aid flows from DAC donors, Total (current US$)"label var iDC_DAC_USAL_CD "Net bilateral aid flows from DAC donors, United States (current US$)"label var iDT_AMT_BLAT_CD "PPG, bilateral (AMT, current US$)"label var iDT_AMT_BLTC_CD "PPG, bilateral concessional (AMT, current US$)"label var iDT_AMT_DIMF_CD "IMF repurchases (AMT, current US$)"label var iDT_AMT_DLTF_CD "Principal repayments on external debt, long-term + IMF (AMT, current US$)"label var iDT_AMT_DLXF_CD "Principal repayments on external debt, long-term (AMT, current US$)"label var iDT_AMT_DPNG_CD "Principal repayments on external debt, private nonguaranteed (PNG) (AMT, current US$)"label var iDT_AMT_DPPG_CD "Principal repayments on external debt, public and publicly guaranteed (PPG) (AMT, current US$)"

Page 5: * Created by Evan Schofefr · Web view* Created by Evan Schofer * Department of Sociology * University of California, Irvine * May 2010 * Load newest WDI. clear. set memory 5000m

label var iDT_AMT_MIBR_CD "PPG, IBRD (AMT, current US$)"label var iDT_AMT_MIDA_CD "PPG, IDA (AMT, current US$)"label var iDT_AMT_MLAT_CD "PPG, multilateral (AMT, current US$)"label var iDT_AMT_MLTC_CD "PPG, multilateral concessional (AMT, current US$)"label var iDT_AMT_OFFT_CD "PPG, official creditors (AMT, current US$)"label var iDT_AMT_PBND_CD "PPG, bonds (AMT, current US$)"label var iDT_AMT_PCBK_CD "PPG, commercial banks (AMT, current US$)"label var iDT_AMT_PNGB_CD "PNG, bonds (AMT, current US$)"label var iDT_AMT_PNGC_CD "PNG, commercial banks and other creditors (AMT, current US$)"label var iDT_AMT_PROP_CD "PPG, other private creditors (AMT, current US$)"label var iDT_AMT_PRVT_CD "PPG, private creditors (AMT, current US$)"label var iDT_AXA_DPPG_CD "Principal arrears, public and publicly guaranteed (current US$)"label var iDT_AXA_OFFT_CD "Principal arrears, official creditors (current US$)"label var iDT_AXA_PRVT_CD "Principal arrears, private creditors (current US$)"label var iDT_AXF_DPPG_CD "Principal forgiven (current US$)"label var iDT_AXR_DPPG_CD "Principal rescheduled (current US$)"label var iDT_AXR_OFFT_CD "Principal rescheduled, official (current US$)"label var iDT_AXR_PRVT_CD "Principal rescheduled, private (current US$)"label var iDT_COM_DPPG_CD "Commitments, public and publicly guaranteed (COM, current US$)"label var iDT_COM_MIBR_CD "Commitments, IBRD (COM, current US$)"label var iDT_COM_MIDA_CD "Commitments, IDA (COM, current US$)"label var iDT_COM_OFFT_CD "Commitments, official creditors (COM, current US$)"label var iDT_COM_PRVT_CD "Commitments, private creditors (COM, current US$)"label var iDT_CUR_CCVL_CD "Cross-currency valuation (current US$)"label var iDT_CUR_DMAK_ZS "Currency composition of PPG debt, Deutsche mark (%)"label var iDT_CUR_EURO_ZS "Currency composition of PPG debt, Euro (%)"label var iDT_CUR_FFRC_ZS "Currency composition of PPG debt, French franc (%)"label var iDT_CUR_JYEN_ZS "Currency composition of PPG debt, Japanese yen (%)"label var iDT_CUR_MULC_ZS "Currency composition of PPG debt, Multiple currencies (%)"label var iDT_CUR_OTHC_ZS "Currency composition of PPG debt, all other currencies (%)"label var iDT_CUR_SDRW_ZS "Currency composition of PPG debt, SDR (%)"label var iDT_CUR_SWFR_ZS "Currency composition of PPG debt, Swiss franc (%)"label var iDT_CUR_UKPS_ZS "Currency composition of PPG debt, Pound sterling (%)"label var iDT_CUR_USDL_ZS "Currency composition of PPG debt, U.S. dollars (%)"label var iDT_DFR_DPPG_CD "Debt forgiveness or reduction (current US$)"label var iDT_DIS_BLAT_CD "PPG, bilateral (DIS, current US$)"label var iDT_DIS_BLTC_CD "PPG, bilateral concessional (DIS, current US$)"label var iDT_DIS_DIMF_CD "IMF purchases (DIS, current US$)"label var iDT_DIS_DLTF_CD "Disbursements on external debt, long-term + IMF (DIS, current US$)"label var iDT_DIS_DLXF_CD "Disbursements on external debt, long-term (DIS, current US$)"label var iDT_DIS_DPNG_CD "Disbursements on external debt, private nonguaranteed (PNG) (DIS, current US$)"label var iDT_DIS_DPPG_CD "Disbursements on external debt, public and publicly guaranteed (PPG) (DIS, current US$)"label var iDT_DIS_IDAG_CD "IDA grants (current US$)"label var iDT_DIS_MIBR_CD "PPG, IBRD (DIS, current US$)"label var iDT_DIS_MIDA_CD "PPG, IDA (DIS, current US$)"label var iDT_DIS_MLAT_CD "PPG, multilateral (DIS, current US$)"label var iDT_DIS_MLTC_CD "PPG, multilateral concessional (DIS, current US$)"label var iDT_DIS_OFFT_CD "PPG, official creditors (DIS, current US$)"label var iDT_DIS_PBND_CD "PPG, bonds (DIS, current US$)"

Page 6: * Created by Evan Schofefr · Web view* Created by Evan Schofer * Department of Sociology * University of California, Irvine * May 2010 * Load newest WDI. clear. set memory 5000m

label var iDT_DIS_PCBK_CD "PPG, commercial banks (DIS, current US$)"label var iDT_DIS_PNGB_CD "PNG, bonds (DIS, current US$)"label var iDT_DIS_PNGC_CD "PNG, commercial banks and other creditors (DIS, current US$)"label var iDT_DIS_PROP_CD "PPG, other private creditors (DIS, current US$)"label var iDT_DIS_PRVT_CD "PPG, private creditors (DIS, current US$)"label var iDT_DOD_ALLC_CD "External debt stocks, concessional (DOD, current US$)"label var iDT_DOD_ALLC_ZS "Concessional debt (% of total external debt)"label var iDT_DOD_BLAT_CD "PPG, bilateral (DOD, current US$)"label var iDT_DOD_BLTC_CD "PPG, bilateral concessional (DOD, current US$)"label var iDT_DOD_DECT_CD "External debt stocks, total (DOD, current US$)"label var iDT_DOD_DECT_CD_CG "Total change in external debt stocks (current US$)"label var iDT_DOD_DECT_EX_ZS "External debt stocks (% of exports of goods, services and income)"label var iDT_DOD_DECT_GN_ZS "External debt stocks (% of GNI)"label var iDT_DOD_DIMF_CD "Use of IMF credit (DOD, current US$)"label var iDT_DOD_DLXF_CD "External debt stocks, long-term (DOD, current US$)"label var iDT_DOD_DPNG_CD "External debt stocks, private nonguaranteed (PNG) (DOD, current US$)"label var iDT_DOD_DPPG_CD "External debt stocks, public and publicly guaranteed (PPG) (DOD, current US$)"label var iDT_DOD_DSTC_CD "External debt stocks, short-term (DOD, current US$)"label var iDT_DOD_DSTC_IR_ZS "Short-term debt (% of total reserves)"label var iDT_DOD_DSTC_XP_ZS "Short-term debt (% of exports of goods, services and income)"label var iDT_DOD_DSTC_ZS "Short-term debt (% of total external debt)"label var iDT_DOD_MDRI_CD "Debt forgiveness grants (current US$)"label var iDT_DOD_MIBR_CD "PPG, IBRD (DOD, current US$)"label var iDT_DOD_MIDA_CD "PPG, IDA (DOD, current US$)"label var iDT_DOD_MLAT_CD "PPG, multilateral (DOD, current US$)"label var iDT_DOD_MLAT_ZS "Multilateral debt (% of total external debt)"label var iDT_DOD_MLTC_CD "PPG, multilateral concessional (DOD, current US$)"label var iDT_DOD_MWBG_CD "IBRD loans and IDA credits (DOD, current US$)"label var iDT_DOD_OFFT_CD "PPG, official creditors (DOD, current US$)"label var iDT_DOD_PBND_CD "PPG, bonds (DOD, current US$)"label var iDT_DOD_PCBK_CD "PPG, commercial banks (DOD, current US$)"label var iDT_DOD_PNGB_CD "PNG, bonds (DOD, current US$)"label var iDT_DOD_PNGC_CD "PNG, commercial banks and other creditors (DOD, current US$)"label var iDT_DOD_PROP_CD "PPG, other private creditors (DOD, current US$)"label var iDT_DOD_PRVS_CD "External debt stocks, long-term private sector (DOD, current US$)"label var iDT_DOD_PRVT_CD "PPG, private creditors (DOD, current US$)"label var iDT_DOD_PUBS_CD "External debt stocks, long-term public sector (DOD, current US$)"label var iDT_DOD_PVLX_CD "Present value of external debt (current US$)"label var iDT_DOD_PVLX_EX_ZS "Present value of external debt (% of exports of goods, services and income)"label var iDT_DOD_PVLX_GN_ZS "Present value of external debt (% of GNI)"label var iDT_DOD_RSDL_CD "Residual, debt stock-flow reconciliation (current US$)"label var iDT_DOD_VTOT_CD "External debt stocks, variable rate (DOD, current US$)"label var iDT_DSB_DPPG_CD "Debt buyback (current US$)"label var iDT_DSF_DPPG_CD "Debt stock reduction (current US$)"label var iDT_DXR_DPPG_CD "Debt stock rescheduled (current US$)"label var iDT_GPA_DPPG "Average grace period on new external debt commitments (years)"

Page 7: * Created by Evan Schofefr · Web view* Created by Evan Schofer * Department of Sociology * University of California, Irvine * May 2010 * Load newest WDI. clear. set memory 5000m

label var iDT_GPA_OFFT "Average grace period on new external debt commitments, official (years)"label var iDT_GPA_PRVT "Average grace period on new external debt commitments, private (years)"label var iDT_GRE_DPPG "Average grant element on new external debt commitments (%)"label var iDT_GRE_OFFT "Average grant element on new external debt commitments, official (%)"label var iDT_GRE_PRVT "Average grant element on new external debt commitments, private (%)"label var iDT_INR_DPPG "Average interest on new external debt commitments (%)"label var iDT_INR_OFFT "Average interest on new external debt commitments, official (%)"label var iDT_INR_PRVT "Average interest on new external debt commitments, private (%)"label var iDT_INT_BLAT_CD "PPG, bilateral (INT, current US$)"label var iDT_INT_BLTC_CD "PPG, bilateral concessional (INT, current US$)"label var iDT_INT_DECT_CD "Interest payments on external debt, total (INT, current US$)"label var iDT_INT_DECT_EX_ZS "Interest payments on external debt (% of exports of goods, services and income)"label var iDT_INT_DECT_GN_ZS "Interest payments on external debt (% of GNI)"label var iDT_INT_DIMF_CD "IMF charges (INT, current US$)"label var iDT_INT_DLXF_CD "Interest payments on external debt, long-term (INT, current US$)"label var iDT_INT_DPNG_CD "Interest payments on external debt, private nonguaranteed (PNG) (INT, current US$)"label var iDT_INT_DPPG_CD "Interest payments on external debt, public and publicly guaranteed (PPG) (INT, current US$)"label var iDT_INT_DSTC_CD "Interest payments on external debt, short-term (INT, current US$)"label var iDT_INT_MIBR_CD "PPG, IBRD (INT, current US$)"label var iDT_INT_MIDA_CD "PPG, IDA (INT, current US$)"label var iDT_INT_MLAT_CD "PPG, multilateral (INT, current US$)"label var iDT_INT_MLTC_CD "PPG, multilateral concessional (INT, current US$)"label var iDT_INT_OFFT_CD "PPG, official creditors (INT, current US$)"label var iDT_INT_PBND_CD "PPG, bonds (INT, current US$)"label var iDT_INT_PCBK_CD "PPG, commercial banks (INT, current US$)"label var iDT_INT_PNGB_CD "PNG, bonds (INT, current US$)"label var iDT_INT_PNGC_CD "PNG, commercial banks and other creditors (INT, current US$)"label var iDT_INT_PROP_CD "PPG, other private creditors (INT, current US$)"label var iDT_INT_PRVT_CD "PPG, private creditors (INT, current US$)"label var iDT_IXA_DPPG_CD "Interest arrears, public and publicly guaranteed (current US$)"label var iDT_IXA_DPPG_CD_CG "Net change in interest arrears (current US$)"label var iDT_IXA_OFFT_CD "Interest arrears, official creditors (current US$)"label var iDT_IXA_PRVT_CD "Interest arrears, private creditors (current US$)"label var iDT_IXF_DPPG_CD "Interest forgiven (current US$)"label var iDT_IXR_DPPG_CD "Interest rescheduled (capitalized) (current US$)"label var iDT_IXR_OFFT_CD "Interest rescheduled, official (current US$)"label var iDT_IXR_PRVT_CD "Interest rescheduled, private (current US$)"label var iDT_MAT_DPPG "Average maturity on new external debt commitments (years)"label var iDT_MAT_OFFT "Average maturity on new external debt commitments, official (years)"label var iDT_MAT_PRVT "Average maturity on new external debt commitments, private (years)"label var iDT_NFL_BLAT_CD "Net financial flows, bilateral (NFL, current US$)"

Page 8: * Created by Evan Schofefr · Web view* Created by Evan Schofer * Department of Sociology * University of California, Irvine * May 2010 * Load newest WDI. clear. set memory 5000m

label var iDT_NFL_BLTC_CD "PPG, bilateral concessional (NFL, current US$)"label var iDT_NFL_BOND_CD "Portfolio investment, bonds (PPG + PNG) (NFL, current US$)"label var iDT_NFL_DECT_CD "Net flows on external debt, total (NFL, current US$)"label var iDT_NFL_DLXF_CD "Net flows on external debt, long-term (NFL, current US$)"label var iDT_NFL_DPNG_CD "Net flows on external debt, private nonguaranteed (PNG) (NFL, current US$)"label var iDT_NFL_DPPG_CD "Net flows on external debt, public and publicly guaranteed (PPG) (NFL, current US$)"label var iDT_NFL_DSTC_CD "Net flows on external debt, short-term (NFL, current US$)"label var iDT_NFL_IFAD_CD "Net official flows from UN agencies, IFAD (current US$)"label var iDT_NFL_IMFC_CD "Net financial flows, IMF concessional (NFL, current US$)"label var iDT_NFL_IMFN_CD "Net financial flows, IMF nonconcessional (NFL, current US$)"label var iDT_NFL_MIBR_CD "Net financial flows, IBRD (NFL, current US$)"label var iDT_NFL_MIDA_CD "Net financial flows, IDA (NFL, current US$)"label var iDT_NFL_MLAT_CD "Net financial flows, multilateral (NFL, current US$)"label var iDT_NFL_MLTC_CD "PPG, multilateral concessional (NFL, current US$)"label var iDT_NFL_MOTH_CD "Net financial flows, others (NFL, current US$)"label var iDT_NFL_NEBR_CD "EBRD, private nonguaranteed (NFL, current US$)"label var iDT_NFL_NIFC_CD "IFC, private nonguaranteed (NFL, current US$)"label var iDT_NFL_OFFT_CD "PPG, official creditors (NFL, current US$)"label var iDT_NFL_PBND_CD "PPG, bonds (NFL, current US$)"label var iDT_NFL_PCBK_CD "PPG, commercial banks (NFL, current US$)"label var iDT_NFL_PCBO_CD "Commercial banks and other lending (PPG + PNG) (NFL, current US$)"label var iDT_NFL_PNGB_CD "PNG, bonds (NFL, current US$)"label var iDT_NFL_PNGC_CD "PNG, commercial banks and other creditors (NFL, current US$)"label var iDT_NFL_PROP_CD "PPG, other private creditors (NFL, current US$)"label var iDT_NFL_PRVT_CD "PPG, private creditors (NFL, current US$)"label var iDT_NFL_RDBC_CD "Net financial flows, RDB concessional (NFL, current US$)"label var iDT_NFL_RDBN_CD "Net financial flows, RDB nonconcessional (NFL, current US$)"label var iDT_NFL_UNAI_CD "Net official flows from UN agencies, UNAIDS (current US$)"label var iDT_NFL_UNCF_CD "Net official flows from UN agencies, UNICEF (current US$)"label var iDT_NFL_UNCR_CD "Net official flows from UN agencies, UNHCR (current US$)"label var iDT_NFL_UNDP_CD "Net official flows from UN agencies, UNDP (current US$)"label var iDT_NFL_UNFP_CD "Net official flows from UN agencies, UNFPA (current US$)"label var iDT_NFL_UNRW_CD "Net official flows from UN agencies, UNRWA (current US$)"label var iDT_NFL_UNTA_CD "Net official flows from UN agencies, UNTA (current US$)"label var iDT_NFL_WFPG_CD "Net official flows from UN agencies, WFP (current US$)"label var iDT_NTR_BLAT_CD "PPG, bilateral (NTR, current US$)"label var iDT_NTR_BLTC_CD "PPG, bilateral concessional (NTR, current US$)"label var iDT_NTR_DECT_CD "Net transfers on external debt, total (NTR, current US$)"label var iDT_NTR_DLXF_CD "Net transfers on external debt, long-term (NTR, current US$)"label var iDT_NTR_DPNG_CD "Net transfers on external debt, private nonguaranteed (PNG) (NTR, current US$)"label var iDT_NTR_DPPG_CD "Net transfers on external debt, public and publicly guaranteed (PPG) (NTR, current US$)"label var iDT_NTR_MIBR_CD "PPG, IBRD (NTR, current US$)"label var iDT_NTR_MIDA_CD "PPG, IDA (NTR, current US$)"label var iDT_NTR_MLAT_CD "PPG, multilateral (NTR, current US$)"label var iDT_NTR_MLTC_CD "PPG, multilateral concessional (NTR, current US$)"label var iDT_NTR_OFFT_CD "PPG, official creditors (NTR, current US$)"label var iDT_NTR_PBND_CD "PPG, bonds (NTR, current US$)"

Page 9: * Created by Evan Schofefr · Web view* Created by Evan Schofer * Department of Sociology * University of California, Irvine * May 2010 * Load newest WDI. clear. set memory 5000m

label var iDT_NTR_PCBK_CD "PPG, commercial banks (NTR, current US$)"label var iDT_NTR_PNGB_CD "PNG, bonds (NTR, current US$)"label var iDT_NTR_PNGC_CD "PNG, commercial banks and other creditors (NTR, current US$)"label var iDT_NTR_PROP_CD "PPG, other private creditors (NTR, current US$)"label var iDT_NTR_PRVT_CD "PPG, private creditors (NTR, current US$)"label var iDT_ODA_ALLD_CD "Net official development assistance and official aid received (current US$)"label var iDT_ODA_ALLD_KD "Net official development assistance and official aid received (constant 2007 US$)"label var iDT_ODA_OATL_CD "Net official aid received (current US$)"label var iDT_ODA_OATL_KD "Net official aid received (constant 2007 US$)"label var iDT_ODA_ODAT_CD "Net official development assistance received (current US$)"label var iDT_ODA_ODAT_GI_ZS "Net ODA received (% of gross capital formation)"label var iDT_ODA_ODAT_GN_ZS "Net ODA received (% of GNI)"label var iDT_ODA_ODAT_KD "Net official development assistance received (constant 2007 US$)"label var iDT_ODA_ODAT_MP_ZS "Net ODA received (% of imports of goods and services)"label var iDT_ODA_ODAT_PC_ZS "Net ODA received per capita (current US$)"label var iDT_ODA_ODAT_XP_ZS "Net ODA received (% of central government expense)"label var iDT_TDS_BLAT_CD "PPG, bilateral (TDS, current US$)"label var iDT_TDS_BLTC_CD "PPG, bilateral concessional (TDS, current US$)"label var iDT_TDS_DECT_CD "Debt service on external debt, total (TDS, current US$)"label var iDT_TDS_DECT_EX_ZS "Total debt service (% of exports of goods, services and income)"label var iDT_TDS_DECT_GN_ZS "Total debt service (% of GNI)"label var iDT_TDS_DIMF_CD "IMF repurchases and charges (TDS, current US$)"label var iDT_TDS_DLXF_CD "Debt service on external debt, long-term (TDS, current US$)"label var iDT_TDS_DPNG_CD "Debt service on external debt, private nonguaranteed (PNG) (TDS, current US$)"label var iDT_TDS_DPPF_XP_ZS "Debt service (PPG and IMF only, % of exports, excluding workers' remittances)"label var iDT_TDS_DPPG_CD "Debt service on external debt, public and publicly guaranteed (PPG) (TDS, current US$)"label var iDT_TDS_DPPG_GN_ZS "Public and publicly guaranteed debt service (% of GNI)"label var iDT_TDS_DPPG_XP_ZS "Public and publicly guaranteed debt service (% of exports, excluding workers' remittances)"label var iDT_TDS_MIBR_CD "PPG, IBRD (TDS, current US$)"label var iDT_TDS_MIDA_CD "PPG, IDA (TDS, current US$)"label var iDT_TDS_MLAT_CD "Multilateral debt service (TDS, current US$)"label var iDT_TDS_MLAT_PG_ZS "Multilateral debt service (% of public and publicly guaranteed debt service)"label var iDT_TDS_MLTC_CD "PPG, multilateral concessional (TDS, current US$)"label var iDT_TDS_OFFT_CD "PPG, official creditors (TDS, current US$)"label var iDT_TDS_PBND_CD "PPG, bonds (TDS, current US$)"label var iDT_TDS_PCBK_CD "PPG, commercial banks (TDS, current US$)"label var iDT_TDS_PNGB_CD "PNG, bonds (TDS, current US$)"label var iDT_TDS_PNGC_CD "PNG, commercial banks and other creditors (TDS, current US$)"label var iDT_TDS_PROP_CD "PPG, other private creditors (TDS, current US$)"label var iDT_TDS_PRVT_CD "PPG, private creditors (TDS, current US$)"label var iDT_TXR_DPPG_CD "Total amount of debt rescheduled (current US$)"label var iDT_UND_DPPG_CD "Undisbursed external debt, total (UND, current US$)"label var iDT_UND_OFFT_CD "Undisbursed external debt, official creditors (UND, current US$)"

Page 10: * Created by Evan Schofefr · Web view* Created by Evan Schofer * Department of Sociology * University of California, Irvine * May 2010 * Load newest WDI. clear. set memory 5000m

label var iDT_UND_PRVT_CD "Undisbursed external debt, private creditors (UND, current US$)"label var iEA_PRD_AGRI_KD "Agriculture value added per worker (constant 2000 US$)"label var iEE_BOD_CGLS_ZS "Water pollution, clay and glass industry (% of total BOD emissions)"label var iEE_BOD_CHEM_ZS "Water pollution, chemical industry (% of total BOD emissions)"label var iEE_BOD_FOOD_ZS "Water pollution, food industry (% of total BOD emissions)"label var iEE_BOD_MTAL_ZS "Water pollution, metal industry (% of total BOD emissions)"label var iEE_BOD_OTHR_ZS "Water pollution, other industry (% of total BOD emissions)"label var iEE_BOD_PAPR_ZS "Water pollution, paper and pulp industry (% of total BOD emissions)"label var iEE_BOD_TOTL_KG "Organic water pollutant (BOD) emissions (kg per day)"label var iEE_BOD_TXTL_ZS "Water pollution, textile industry (% of total BOD emissions)"label var iEE_BOD_WOOD_ZS "Water pollution, wood industry (% of total BOD emissions)"label var iEE_BOD_WRKR_KG "Organic water pollutant (BOD) emissions (kg per day per worker)"label var iEG_EGY_PROD_KT_OE "Energy production (kt of oil equivalent)"label var iEG_ELC_COAL_KH "Electricity production from coal sources (kWh)"label var iEG_ELC_COAL_ZS "Electricity production from coal sources (% of total)"label var iEG_ELC_HYRO_KH "Electricity production from hydroelectric sources (kWh)"label var iEG_ELC_HYRO_ZS "Electricity production from hydroelectric sources (% of total)"label var iEG_ELC_LOSS_KH "Electric power transmission and distribution losses (kWh)"label var iEG_ELC_LOSS_ZS "Electric power transmission and distribution losses (% of output)"label var iEG_ELC_NGAS_KH "Electricity production from natural gas sources (kWh)"label var iEG_ELC_NGAS_ZS "Electricity production from natural gas sources (% of total)"label var iEG_ELC_NUCL_KH "Electricity production from nuclear sources (kWh)"label var iEG_ELC_NUCL_ZS "Electricity production from nuclear sources (% of total)"label var iEG_ELC_PETR_KH "Electricity production from oil sources (kWh)"label var iEG_ELC_PETR_ZS "Electricity production from oil sources (% of total)"label var iEG_ELC_PROD_KH "Electricity production (kWh)"label var iEG_GDP_PUSE_KO_PP "GDP per unit of energy use (PPP $ per kg of oil equivalent)"label var iEG_GDP_PUSE_KO_PP_KD "GDP per unit of energy use (constant 2005 PPP $ per kg of oil equivalent)"label var iEG_IMP_CONS_ZS "Energy imports, net (% of energy use)"label var iEG_USE_COMM_CL_ZS "Alternative and nuclear energy (% of total energy use)"label var iEG_USE_COMM_FO_ZS "Fossil fuel energy consumption (% of total)"label var iEG_USE_COMM_GD_PP_KD "Energy use (kg of oil equivalent) per $1,000 GDP (constant 2005 PPP)"label var iEG_USE_COMM_KT_OE "Energy use (kt of oil equivalent)"label var iEG_USE_CRNW_KT_OE "Combustible renewables and waste (metric tons of oil equivalent)"label var iEG_USE_CRNW_ZS "Combustible renewables and waste (% of total energy)"label var iEG_USE_ELEC_KH "Electric power consumption (kWh)"label var iEG_USE_ELEC_KH_PC "Electric power consumption (kWh per capita)"label var iEG_USE_PCAP_KG_OE "Energy use (kg of oil equivalent per capita)"label var iEN_AGR_EMPL "Economically active population in agriculture (number)"label var iEN_ATM_CO2E_EG_ZS "CO2 intensity (kg per kg of oil equivalent energy use)"label var iEN_ATM_CO2E_KD_GD "CO2 emissions (kg per 2000 US$ of GDP)"label var iEN_ATM_CO2E_KT "CO2 emissions (kt)"

Page 11: * Created by Evan Schofefr · Web view* Created by Evan Schofer * Department of Sociology * University of California, Irvine * May 2010 * Load newest WDI. clear. set memory 5000m

label var iEN_ATM_CO2E_PC "CO2 emissions (metric tons per capita)"label var iEN_ATM_CO2E_PP_GD "CO2 emissions (kg per PPP $ of GDP)"label var iEN_ATM_CO2E_PP_GD_KD "CO2 emissions (kg per 2005 PPP $ of GDP)"label var iEN_ATM_GHGO_KT_CE "Other greenhouse gas emissions, HFC, PFC and SF6 (thousand metric tons of CO2 equivalent)"label var iEN_ATM_METH_AG_ZS "Agricultural methane emissions (% of total)"label var iEN_ATM_METH_IN_ZS "Energy related methane emissions (% of total)"label var iEN_ATM_METH_KT_CE "Methane emissions (kt of CO2 equivalent)"label var iEN_ATM_NOXE_AG_ZS "Agricultural nitrous oxide emissions (% of total)"label var iEN_ATM_NOXE_IN_ZS "Energy related nitrous oxide emissions (% of total)"label var iEN_ATM_NOXE_KT_CE "Nitrous oxide emissions (thousand metric tons of CO2 equivalent)"label var iEN_ATM_PM10_MC_M3 "PM10, country level (micrograms per cubic meter)"label var iEN_BIR_THRD_NO "Bird species, threatened"label var iEN_FSH_THRD_NO "Fish species, threatened"label var iEN_HPT_THRD_NO "Plant species (higher), threatened"label var iEN_MAM_THRD_NO "Mammal species, threatened"label var iEN_POP_DNST "Population density (people per sq. km)"label var iEN_URB_LCTY "Population in largest city"label var iEN_URB_LCTY_UR_ZS "Population in the largest city (% of urban population)"label var iEN_URB_MCTY "Population in urban agglomerations of more than 1 million"label var iEN_URB_MCTY_TL_ZS "Population in urban agglomerations of more than 1 million (% of total population)"label var iEP_PMP_DESL_CD "Pump price for diesel fuel (US$ per liter)"label var iEP_PMP_SGAS_CD "Pump price for gasoline (US$ per liter)"label var iER_BDV_TOTL_XQ "GEF benefits index for biodiversity (0 = no biodiversity potential to 100 = maximum)"label var iER_H2O_FWAG_ZS "Annual freshwater withdrawals, agriculture (% of total freshwater withdrawal)"label var iER_H2O_FWDM_ZS "Annual freshwater withdrawals, domestic (% of total freshwater withdrawal)"label var iER_H2O_FWIN_ZS "Annual freshwater withdrawals, industry (% of total freshwater withdrawal)"label var iER_H2O_FWTL_K3 "Annual freshwater withdrawals, total (billion cubic meters)"label var iER_H2O_FWTL_ZS "Annual freshwater withdrawals, total (% of internal resources)"label var iER_H2O_INTR_K3 "Renewable internal freshwater resources, total (billion cubic meters)"label var iER_H2O_INTR_PC "Renewable internal freshwater resources per capita (cubic meters)"label var iER_LND_PTLD_TR_NO "Terrestrial protected areas (number)"label var iER_LND_PTLD_TR_ZS "Terrestrial protected areas (% of total surface area)"label var iER_MRN_PTMR_NO "Marine protected areas (number)"label var iER_MRN_PTMR_ZS "Marine protected areas (% of total surface area)"label var iFB_AST_NPER_ZS "Bank nonperfoming loans to total gross loans (%)"label var iFB_BNK_CAPA_ZS "Bank capital to assets ratio (%)"label var iFD_RES_LIQU_AS_ZS "Bank liquid reserves to bank assets ratio (%)"label var iFI_RES_TOTL_CD "Total reserves (includes gold, current US$)"label var iFI_RES_TOTL_DT_ZS "Total reserves (% of total external debt)"label var iFI_RES_TOTL_MO "Total reserves in months of imports"label var iFI_RES_XGLD_CD "Total reserves minus gold (current US$)"label var iFM_AST_DOMS_CN "Net domestic credit (current LCU)"label var iFM_AST_GOVT_CN "Claims on governments and other public entities (current LCU)"label var iFM_AST_GOVT_ZG_M2 "Claims on governments, etc. (annual growth as % of M2)"label var iFM_AST_NFRG_CN "Net foreign assets (current LCU)"

Page 12: * Created by Evan Schofefr · Web view* Created by Evan Schofer * Department of Sociology * University of California, Irvine * May 2010 * Load newest WDI. clear. set memory 5000m

label var iFM_AST_PRVT_ZG_M2 "Claims on private sector (annual growth as % of M2)"label var iFM_LBL_MONY_CN "Money (current LCU)"label var iFM_LBL_MQMY_CN "Money and quasi money (M2) (current LCU)"label var iFM_LBL_MQMY_GD_ZS "Money and quasi money (M2) as % of GDP"label var iFM_LBL_MQMY_IR_ZS "Money and quasi money (M2) to total reserves ratio"label var iFM_LBL_MQMY_ZG "Money and quasi money growth (annual %)"label var iFM_LBL_QMNY_CN "Quasi money (current LCU)"label var iFP_CPI_TOTL "Consumer price index (2005 = 100)"label var iFP_CPI_TOTL_ZG "Inflation, consumer prices (annual %)"label var iFP_WPI_TOTL "Wholesale price index (2005 = 100)"label var iFR_INR_DPST "Deposit interest rate (%)"label var iFR_INR_LEND "Lending interest rate (%)"label var iFR_INR_LNDP "Interest rate spread (lending rate minus deposit rate, %)"label var iFR_INR_RINR "Real interest rate (%)"label var iFR_INR_RISK "Risk premium on lending (prime rate minus treasury bill rate, %)"label var iFS_AST_DOMS_GD_ZS "Domestic credit provided by banking sector (% of GDP)"label var iFS_AST_PRVT_GD_ZS "Domestic credit to private sector (% of GDP)"label var iFS_LBL_LIQU_GD_ZS "Liquid liabilities (M3) as % of GDP"label var iFS_LBL_QLIQ_GD_ZS "Quasi-liquid liabilities (% of GDP)"label var iGB_TAX_CMAR_ZS "Highest marginal tax rate, corporate rate (%)"label var iGB_TAX_IMAR_CD "Highest marginal tax rate, individual (on income exceeding, US$)"label var iGB_TAX_IMAR_ZS "Highest marginal tax rate, individual rate (%)"label var iGB_XPD_RSDV_GD_ZS "Research and development expenditure (% of GDP)"label var iGC_BAL_CASH_CN "Cash surplus/deficit (current LCU)"label var iGC_BAL_CASH_GD_ZS "Cash surplus/deficit (% of GDP)"label var iGC_DOD_TOTL_CN "Central government debt, total (current LCU)"label var iGC_DOD_TOTL_GD_ZS "Central government debt, total (% of GDP)"label var iGC_FIN_DOMS_CN "Net incurrence of liabilities, domestic (current LCU)"label var iGC_FIN_DOMS_GD_ZS "Net incurrence of liabilities, domestic (% of GDP)"label var iGC_FIN_FRGN_CN "Net incurrence of liabilities, foreign (current LCU)"label var iGC_FIN_FRGN_GD_ZS "Net incurrence of liabilities, foreign (% of GDP)"label var iGC_REV_GOTR_CN "Grants and other revenue (current LCU)"label var iGC_REV_GOTR_ZS "Grants and other revenue (% of revenue)"label var iGC_REV_SOCL_CN "Social contributions (current LCU)"label var iGC_REV_SOCL_ZS "Social contributions (% of revenue)"label var iGC_REV_XGRT_CN "Revenue, excluding grants (current LCU)"label var iGC_REV_XGRT_GD_ZS "Revenue, excluding grants (% of GDP)"label var iGC_TAX_EXPT_CN "Taxes on exports (current LCU)"label var iGC_TAX_EXPT_ZS "Taxes on exports (% of tax revenue)"label var iGC_TAX_GSRV_CN "Taxes on goods and services (current LCU)"label var iGC_TAX_GSRV_RV_ZS "Taxes on goods and services (% of revenue)"label var iGC_TAX_GSRV_VA_ZS "Taxes on goods and services (% value added of industry and services)"label var iGC_TAX_IMPT_CN "Customs and other import duties (current LCU)"label var iGC_TAX_IMPT_ZS "Customs and other import duties (% of tax revenue)"label var iGC_TAX_INTT_CN "Taxes on international trade (current LCU)"label var iGC_TAX_INTT_RV_ZS "Taxes on international trade (% of revenue)"label var iGC_TAX_OTHR_CN "Other taxes (current LCU)"label var iGC_TAX_OTHR_RV_ZS "Other taxes (% of revenue)"label var iGC_TAX_TOTL_CN "Tax revenue (current LCU)"label var iGC_TAX_TOTL_GD_ZS "Tax revenue (% of GDP)"label var iGC_TAX_YPKG_CN "Taxes on income, profits and capital gains (current LCU)"label var iGC_TAX_YPKG_RV_ZS "Taxes on income, profits and capital gains (% of revenue)"

Page 13: * Created by Evan Schofefr · Web view* Created by Evan Schofer * Department of Sociology * University of California, Irvine * May 2010 * Load newest WDI. clear. set memory 5000m

label var iGC_TAX_YPKG_ZS "Taxes on income, profits and capital gains (% of total taxes)"label var iGC_XPN_COMP_CN "Compensation of employees (current LCU)"label var iGC_XPN_COMP_ZS "Compensation of employees (% of expense)"label var iGC_XPN_GSRV_CN "Goods and services expense (current LCU)"label var iGC_XPN_GSRV_ZS "Goods and services expense (% of expense)"label var iGC_XPN_INTP_CN "Interest payments (current LCU)"label var iGC_XPN_INTP_RV_ZS "Interest payments (% of revenue)"label var iGC_XPN_INTP_ZS "Interest payments (% of expense)"label var iGC_XPN_OTHR_CN "Other expense (current LCU)"label var iGC_XPN_OTHR_ZS "Other expense (% of expense)"label var iGC_XPN_TOTL_CN "Expense (current LCU)"label var iGC_XPN_TOTL_GD_ZS "Expense (% of GDP)"label var iGC_XPN_TRFT_CN "Subsidies and other transfers (current LCU)"label var iGC_XPN_TRFT_ZS "Subsidies and other transfers (% of expense)"label var iIC_BUS_DISC_XQ "Business extent of disclosure index (0=less disclosure to 10=more disclosure)"label var iIC_BUS_EASE_XQ "Ease of doing business index (1=most business-friendly regulations)"label var iIC_BUS_NREG "New businesses registered (number)"label var iIC_BUS_NREG_ZS "Business entry rate (new registrations as % of total)"label var iIC_BUS_TOTL "Total businesses registered (number)"label var iIC_CRD_INFO_XQ "Credit depth of information index (0=low to 6=high)"label var iIC_CRD_PRVT_ZS "Private credit bureau coverage (% of adults)"label var iIC_CRD_PUBL_ZS "Public credit registry coverage (% of adults)"label var iIC_CUS_DURS_EX "Average time to clear exports through customs (days)"label var iIC_EXP_COST_CD "Cost to export (US$ per container)"label var iIC_EXP_DOCS "Documents to export (number)"label var iIC_EXP_DURS "Lead time to export (days)"label var iIC_FRM_BNKS_ZS "Firms using banks to finance investment (% of firms)"label var iIC_FRM_CORR_ZS "Informal payments to public officials (% of firms)"label var iIC_FRM_CRIM_ZS "Losses due to theft, robbery, vandalism, and arson (% sales)"label var iIC_FRM_DURS "Time required to obtain an operating license (days)"label var iIC_FRM_FEMO_ZS "Firms with female participation in ownership (% of firms)"label var iIC_FRM_FREG_ZS "Firms formally registered when operations started (% of firms)"label var iIC_FRM_ISOC_ZS "ISO certification ownership (% of firms)"label var iIC_FRM_OUTG_ZS "Value lost due to electrical outages (% of sales)"label var iIC_FRM_TRNG_ZS "Firms offering formal training (% of firms)"label var iIC_GOV_DURS_ZS "Management time dealing with officials (% of management time)"label var iIC_IMP_COST_CD "Cost to import (US$ per container)"label var iIC_IMP_DOCS "Documents to import (number)"label var iIC_IMP_DURS "Lead time to import (days)"label var iIC_ISV_DURS "Time to resolve insolvency (years)"label var iIC_LGL_CRED_XQ "Strength of legal rights index (0=weak to 10=strong)"label var iIC_LGL_DURS "Time required to enforce a contract (days)"label var iIC_LGL_EMPL_XQ "Rigidity of employment index (0=less rigid to 100=more rigid)"label var iIC_LGL_PROC "Procedures to enforce a contract (number)"label var iIC_PRP_DURS "Time required to register property (days)"label var iIC_PRP_PROC "Procedures to register property (number)"label var iIC_REG_COST_PC_ZS "Cost of business start-up procedures (% of GNI per capita)"label var iIC_REG_DURS "Time required to start a business (days)"label var iIC_REG_PROC "Start-up procedures to register a business (number)"

Page 14: * Created by Evan Schofefr · Web view* Created by Evan Schofer * Department of Sociology * University of California, Irvine * May 2010 * Load newest WDI. clear. set memory 5000m

label var iIC_TAX_DURS "Time to prepare and pay taxes (hours)"label var iIC_TAX_METG "Average number of times firms spent in meetings with tax officials"label var iIC_TAX_PAYM "Tax payments (number)"label var iIC_TAX_TOTL_CP_ZS "Total tax rate (% of profit)"label var iIC_WRH_DURS "Time required to build a warehouse (days)"label var iIC_WRH_PROC "Procedures to build a warehouse (number)"label var iIE_ICT_PCAP_CD "Information and communication technology expenditure per capita (current US$)"label var iIE_ICT_TOTL_CD "Information and communication technology expenditure (current US$)"label var iIE_ICT_TOTL_GD_ZS "Information and communication technology expenditure (% of GDP)"label var iIE_PPI_ENGY_CD "Investment in energy with private participation (current US$)"label var iIE_PPI_TELE_CD "Investment in telecoms with private participation (current US$)"label var iIE_PPI_TRAN_CD "Investment in transport with private participation (current US$)"label var iIE_PPI_WATR_CD "Investment in water and sanitation with private participation (current US$)"label var iIP_JRN_ARTC_SC "Scientific and technical journal articles"label var iIP_PAT_NRES "Patent applications, nonresidents"label var iIP_PAT_RESD "Patent applications, residents"label var iIP_TMK_AGGD "Trademark applications, aggregate direct"label var iIP_TMK_MDRD "Trademark applications, Madrid"label var iIP_TMK_NRES "Trademark applications, direct nonresident"label var iIP_TMK_RESD "Trademark applications, direct resident"label var iIP_TMK_TOTL "Trademark applications, total"label var iIQ_CPA_BREG_XQ "CPIA business regulatory environment rating (1=low to 6=high)"label var iIQ_CPA_DEBT_XQ "CPIA debt policy rating (1=low to 6=high)"label var iIQ_CPA_ECON_XQ "CPIA economic management cluster average (1=low to 6=high)"label var iIQ_CPA_ENVR_XQ "CPIA policy and institutions for environmental sustainability rating (1=low to 6=high)"label var iIQ_CPA_FINQ_XQ "CPIA quality of budgetary and financial management rating (1=low to 6=high)"label var iIQ_CPA_FINS_XQ "CPIA financial sector rating (1=low to 6=high)"label var iIQ_CPA_FISP_XQ "CPIA fiscal policy rating (1=low to 6=high)"label var iIQ_CPA_GNDR_XQ "CPIA gender equality rating (1=low to 6=high)"label var iIQ_CPA_HRES_XQ "CPIA building human resources rating (1=low to 6=high)"label var iIQ_CPA_IRAI_XQ "IDA resource allocation index (1=low to 6=high)"label var iIQ_CPA_MACR_XQ "CPIA macroeconomic management rating (1=low to 6=high)"label var iIQ_CPA_PADM_XQ "CPIA quality of public administration rating (1=low to 6=high)"label var iIQ_CPA_PRES_XQ "CPIA equity of public resource use rating (1=low to 6=high)"label var iIQ_CPA_PROP_XQ "CPIA property rights and rule-based governance rating (1=low to 6=high)"label var iIQ_CPA_PROT_XQ "CPIA social protection rating (1=low to 6=high)"label var iIQ_CPA_PUBS_XQ "CPIA public sector management and institutions cluster average (1=low to 6=high)"label var iIQ_CPA_REVN_XQ "CPIA efficiency of revenue mobilization rating (1=low to 6=high)"label var iIQ_CPA_SOCI_XQ "CPIA policies for social inclusion/equity cluster average (1=low to 6=high)"

Page 15: * Created by Evan Schofefr · Web view* Created by Evan Schofer * Department of Sociology * University of California, Irvine * May 2010 * Load newest WDI. clear. set memory 5000m

label var iIQ_CPA_STRC_XQ "CPIA structural policies cluster average (1=low to 6=high)"label var iIQ_CPA_TRAD_XQ "CPIA trade rating (1=low to 6=high)"label var iIQ_CPA_TRAN_XQ "CPIA transparency, accountability, and corruption in the public sector rating (1=low to 6=high)"label var iIQ_WEF_CUST_XQ "Burden of customs procedure, WEF (1=extremely inefficient to 7=extremely efficient)"label var iIQ_WEF_PORT_XQ "Quality of port infrastructure, WEF (1=extremely underdeveloped to 7=well developed and efficient by international standards)"label var iIS_AIR_DPRT "Air transport, registered carrier departures worldwide"label var iIS_AIR_GOOD_MT_K1 "Air transport, freight (million ton-km)"label var iIS_AIR_PSGR "Air transport, passengers carried"label var iIS_ROD_DESL_KT "Road sector diesel fuel consumption (kt of oil equivalent)"label var iIS_ROD_DESL_PC "Road sector diesel fuel consumption per capita (kt of oil equivalent)"label var iIS_ROD_DNST_K2 "Road density (km of road per sq. km of land area)"label var iIS_ROD_ENGY_KT "Road sector energy consumption (kt of oil equivalent)"label var iIS_ROD_ENGY_PC "Road sector energy consumption per capita (kt of oil equivalent)"label var iIS_ROD_ENGY_ZS "Road sector energy consumption (% of total energy consumption)"label var iIS_ROD_GOOD_MT_K6 "Roads, goods transported (million ton-km)"label var iIS_ROD_PAVE_ZS "Roads, paved (% of total roads)"label var iIS_ROD_PSGR_K6 "Roads, passengers carried (million passenger-km)"label var iIS_ROD_SGAS_KT "Road sector gasoline fuel consumption (kt of oil equivalent)"label var iIS_ROD_SGAS_PC "Road sector gasoline fuel consumption per capita (kt of oil equivalent)"label var iIS_ROD_TOTL_KM "Roads, total network (km)"label var iIS_RRS_GOOD_MT_K6 "Railways, goods transported (million ton-km)"label var iIS_RRS_PASG_KM "Railways, passengers carried (million passenger-km)"label var iIS_RRS_TOTL_KM "Rail lines (total route-km)"label var iIS_SHP_GCNW_XQ "Liner shipping connectivity index (maximum value in 2004 = 100)"label var iIS_SHP_GOOD_TU "Container port traffic (TEU: 20 foot equivalent units)"label var iIS_VEH_NVEH_P3 "Motor vehicles (per 1,000 people)"label var iIS_VEH_PCAR_P3 "Passenger cars (per 1,000 people)"label var iIS_VEH_ROAD_K1 "Vehicles (per km of road)"label var iIT_BBD_USEC_CD "Fixed broadband Internet access tariff (US$ per month)"label var iIT_CEL_COVR_ZS "Population covered by mobile cellular network (%)"label var iIT_CEL_SETS "Mobile cellular subscriptions"label var iIT_CEL_SETS_P2 "Mobile cellular subscriptions (per 100 people)"label var iIT_CMP_PCMP "Personal computers"label var iIT_CMP_PCMP_P2 "Personal computers (per 100 people)"label var iIT_INT_TTRF_MN "International voice traffic (out and in, minutes)"label var iIT_INT_TTRF_MN_PC "International voice traffic (minutes per person)"label var iIT_MBL_USEC_CD "Mobile cellular prepaid tariff (US$ per month)"label var iIT_MLT_MAIN "Telephone lines"label var iIT_MLT_MAIN_P2 "Telephone lines (per 100 people)"label var iIT_NET_BBND "Fixed broadband Internet subscribers"label var iIT_NET_BBND_P2 "Fixed broadband Internet subscribers (per 100 people)"label var iIT_NET_BNDW "International Internet bandwidth (Mbps)"label var iIT_NET_BNDW_PC "International Internet bandwidth (bits per person)"label var iIT_NET_SECR "Secure Internet servers"label var iIT_NET_SECR_P6 "Secure Internet servers (per 1 million people)"label var iIT_NET_USER "Internet users"

Page 16: * Created by Evan Schofefr · Web view* Created by Evan Schofer * Department of Sociology * University of California, Irvine * May 2010 * Load newest WDI. clear. set memory 5000m

label var iIT_NET_USER_P2 "Internet users (per 100 people)"label var iIT_PRT_NEWS_P3 "Daily newspapers (per 1,000 people)"label var iIT_RES_USEC_CD "Residential fixed line telephone tariff (US$ per month)"label var iIT_TEL_EMPL_TO "Telephone employees, total"label var iIT_TEL_INVS_CN "Telecommunications investment (current LCU)"label var iIT_TEL_INVS_RV_ZS "Telecommunications investment (% of revenue)"label var iIT_TEL_REVN_CN "Telecommunications revenue (current LCU)"label var iIT_TEL_REVN_GD_ZS "Telecommunications revenue (% GDP)"label var iIT_TEL_TOTL "Mobile and fixed-line telephone subscribers"label var iIT_TEL_TOTL_EM "Mobile and fixed-line telephone subscribers per employee"label var iIT_TEL_TOTL_P2 "Mobile and fixed-line telephone subscribers (per 100 people)"label var iIT_TVS_HOUS_ZS "Households with television (%)"label var iLP_EXP_DURS_MD "Lead time to export, median case (days)"label var iLP_IMP_DURS_MD "Lead time to import, median case (days)"label var iLP_LPI_CUST_XQ "Logistics performance index: Efficiency of customs clearance process (1=low to 5=high)"label var iLP_LPI_INFR_XQ "Logistics performance index: Quality of trade and transport-related infrastructure (1=low to 5=high)"label var iLP_LPI_ITRN_XQ "Logistics performance index: Ease of arranging competitively priced shipments (1=low to 5=high)"label var iLP_LPI_LOGS_XQ "Logistics performance index: Competence and quality of logistics services (1=low to 5=high)"label var iLP_LPI_OVRL_XQ "Logistics performance index: Overall (1=low to 5=high)"label var iLP_LPI_TIME_XQ "Logistics performance index: Frequency with which shipments reach consignee within scheduled or expected time (1=low to 5=high)"label var iLP_LPI_TRAC_XQ "Logistics performance index: Ability to track and trace consignments (1=low to 5=high)"label var iMS_MIL_MPRT_KD "Arms imports (constant 1990 US$)"label var iMS_MIL_TOTL_P1 "Armed forces personnel, total"label var iMS_MIL_TOTL_TF_ZS "Armed forces personnel (% of total labor force)"label var iMS_MIL_XPND_CN "Military expenditure (current LCU)"label var iMS_MIL_XPND_GD_ZS "Military expenditure (% of GDP)"label var iMS_MIL_XPND_ZS "Military expenditure (% of central government expenditure)"label var iMS_MIL_XPRT_KD "Arms exports (constant 1990 US$)"label var iNE_CON_GOVT_CD "General government final consumption expenditure (current US$)"label var iNE_CON_GOVT_CN "General government final consumption expenditure (current LCU)"label var iNE_CON_GOVT_KD "General government final consumption expenditure (constant 2000 US$)"label var iNE_CON_GOVT_KD_ZG "General government final consumption expenditure (annual % growth)"label var iNE_CON_GOVT_KN "General government final consumption expenditure (constant LCU)"label var iNE_CON_GOVT_ZS "General government final consumption expenditure (% of GDP)"label var iNE_CON_PETC_CD "Household final consumption expenditure, etc. (current US$)"label var iNE_CON_PETC_CN "Household final consumption expenditure, etc. (current LCU)"label var iNE_CON_PETC_KD "Household final consumption expenditure, etc. (constant 2000 US$)"label var iNE_CON_PETC_KD_ZG "Household final consumption expenditure, etc. (annual % growth)"

Page 17: * Created by Evan Schofefr · Web view* Created by Evan Schofer * Department of Sociology * University of California, Irvine * May 2010 * Load newest WDI. clear. set memory 5000m

label var iNE_CON_PETC_KN "Household final consumption expenditure, etc. (constant LCU)"label var iNE_CON_PETC_ZS "Household final consumption expenditure, etc. (% of GDP)"label var iNE_CON_PRVT_CD "Household final consumption expenditure (current US$)"label var iNE_CON_PRVT_CN "Household final consumption expenditure (current LCU)"label var iNE_CON_PRVT_KD "Household final consumption expenditure (constant 2000 US$)"label var iNE_CON_PRVT_KD_ZG "Household final consumption expenditure (annual % growth)"label var iNE_CON_PRVT_KN "Household final consumption expenditure (constant LCU)"label var iNE_CON_PRVT_PC_KD "Household final consumption expenditure per capita (constant 2000 US$)"label var iNE_CON_PRVT_PC_KD_ZG "Household final consumption expenditure per capita growth (annual %)"label var iNE_CON_PRVT_PP_CD "Household final consumption expenditure, PPP (current international $)"label var iNE_CON_PRVT_PP_KD "Household final consumption expenditure, PPP (constant 2005 international $)"label var iNE_CON_TETC_CD "Final consumption expenditure, etc. (current US$)"label var iNE_CON_TETC_CN "Final consumption expenditure, etc. (current LCU)"label var iNE_CON_TETC_KD "Final consumption expenditure, etc. (constant 2000 US$)"label var iNE_CON_TETC_KD_ZG "Final consumption expenditure, etc. (annual % growth)"label var iNE_CON_TETC_KN "Final consumption expenditure, etc. (constant LCU)"label var iNE_CON_TETC_ZS "Final consumption expenditure, etc. (% of GDP)"label var iNE_CON_TOTL_CD "Final consumption expenditure (current US$)"label var iNE_CON_TOTL_CN "Final consumption expenditure (current LCU)"label var iNE_CON_TOTL_KD "Final consumption expenditure (constant 2000 US$)"label var iNE_CON_TOTL_KN "Final consumption expenditure (constant LCU)"label var iNE_DAB_TOTL_CD "Gross national expenditure (current US$)"label var iNE_DAB_TOTL_CN "Gross national expenditure (current LCU)"label var iNE_DAB_TOTL_KD "Gross national expenditure (constant 2000 US$)"label var iNE_DAB_TOTL_KN "Gross national expenditure (constant LCU)"label var iNE_DAB_TOTL_ZS "Gross national expenditure (% of GDP)"label var iNE_EXP_GNFS_CD "Exports of goods and services (current US$)"label var iNE_EXP_GNFS_CN "Exports of goods and services (current LCU)"label var iNE_EXP_GNFS_KD "Exports of goods and services (constant 2000 US$)"label var iNE_EXP_GNFS_KD_ZG "Exports of goods and services (annual % growth)"label var iNE_EXP_GNFS_KN "Exports of goods and services (constant LCU)"label var iNE_EXP_GNFS_ZS "Exports of goods and services (% of GDP)"label var iNE_GDI_FTOT_CD "Gross fixed capital formation (current US$)"label var iNE_GDI_FTOT_CN "Gross fixed capital formation (current LCU)"label var iNE_GDI_FTOT_KD "Gross fixed capital formation (constant 2000 US$)"label var iNE_GDI_FTOT_KD_ZG "Gross fixed capital formation (annual % growth)"label var iNE_GDI_FTOT_KN "Gross fixed capital formation (constant LCU)"label var iNE_GDI_FTOT_ZS "Gross fixed capital formation (% of GDP)"label var iNE_GDI_STKB_CD "Changes in inventories (current US$)"label var iNE_GDI_STKB_CN "Changes in inventories (current LCU)"label var iNE_GDI_STKB_KN "Changes in inventories (constant LCU)"label var iNE_GDI_TOTL_CD "Gross capital formation (current US$)"label var iNE_GDI_TOTL_CN "Gross capital formation (current LCU)"label var iNE_GDI_TOTL_KD "Gross capital formation (constant 2000 US$)"label var iNE_GDI_TOTL_KD_ZG "Gross capital formation (annual % growth)"label var iNE_GDI_TOTL_KN "Gross capital formation (constant LCU)"label var iNE_GDI_TOTL_ZS "Gross capital formation (% of GDP)"label var iNE_IMP_GNFS_CD "Imports of goods and services (current US$)"label var iNE_IMP_GNFS_CN "Imports of goods and services (current LCU)"label var iNE_IMP_GNFS_KD "Imports of goods and services (constant 2000 US$)"

Page 18: * Created by Evan Schofefr · Web view* Created by Evan Schofer * Department of Sociology * University of California, Irvine * May 2010 * Load newest WDI. clear. set memory 5000m

label var iNE_IMP_GNFS_KD_ZG "Imports of goods and services (annual % growth)"label var iNE_IMP_GNFS_KN "Imports of goods and services (constant LCU)"label var iNE_IMP_GNFS_ZS "Imports of goods and services (% of GDP)"label var iNE_RSB_GNFS_CD "External balance on goods and services (current US$)"label var iNE_RSB_GNFS_CN "External balance on goods and services (current LCU)"label var iNE_RSB_GNFS_KN "External balance on goods and services (constant LCU)"label var iNE_RSB_GNFS_ZS "External balance on goods and services (% of GDP)"label var iNE_TRD_GNFS_ZS "Trade (% of GDP)"label var iNV_AGR_TOTL_CD "Agriculture, value added (current US$)"label var iNV_AGR_TOTL_CN "Agriculture, value added (current LCU)"label var iNV_AGR_TOTL_KD "Agriculture, value added (constant 2000 US$)"label var iNV_AGR_TOTL_KD_ZG "Agriculture, value added (annual % growth)"label var iNV_AGR_TOTL_KN "Agriculture, value added (constant LCU)"label var iNV_AGR_TOTL_ZS "Agriculture, value added (% of GDP)"label var iNV_IND_MANF_CD "Manufacturing, value added (current US$)"label var iNV_IND_MANF_CN "Manufacturing, value added (current LCU)"label var iNV_IND_MANF_KD "Manufacturing, value added (constant 2000 US$)"label var iNV_IND_MANF_KD_ZG "Manufacturing, value added (annual % growth)"label var iNV_IND_MANF_KN "Manufacturing, value added (constant LCU)"label var iNV_IND_MANF_ZS "Manufacturing, value added (% of GDP)"label var iNV_IND_TOTL_CD "Industry, value added (current US$)"label var iNV_IND_TOTL_CN "Industry, value added (current LCU)"label var iNV_IND_TOTL_KD "Industry, value added (constant 2000 US$)"label var iNV_IND_TOTL_KD_ZG "Industry, value added (annual % growth)"label var iNV_IND_TOTL_KN "Industry, value added (constant LCU)"label var iNV_IND_TOTL_ZS "Industry, value added (% of GDP)"label var iNV_MNF_CHEM_ZS_UN "Chemicals (% of value added in manufacturing)"label var iNV_MNF_FBTO_ZS_UN "Food, beverages and tobacco (% of value added in manufacturing)"label var iNV_MNF_MTRN_ZS_UN "Machinery and transport equipment (% of value added in manufacturing)"label var iNV_MNF_OTHR_ZS_UN "Other manufacturing (% of value added in manufacturing)"label var iNV_MNF_TXTL_ZS_UN "Textiles and clothing (% of value added in manufacturing)"label var iNV_SRV_TETC_CD "Services, etc., value added (current US$)"label var iNV_SRV_TETC_CN "Services, etc., value added (current LCU)"label var iNV_SRV_TETC_KD "Services, etc., value added (constant 2000 US$)"label var iNV_SRV_TETC_KD_ZG "Services, etc., value added (annual % growth)"label var iNV_SRV_TETC_KN "Services, etc., value added (constant LCU)"label var iNV_SRV_TETC_ZS "Services, etc., value added (% of GDP)"label var iNY_ADJ_AEDU_CD "Adjusted savings: education expenditure (current US$)"label var iNY_ADJ_AEDU_GN_ZS "Adjusted savings: education expenditure (% of GNI)"label var iNY_ADJ_DCO2_CD "Adjusted savings: carbon dioxide damage (current US$)"label var iNY_ADJ_DCO2_GN_ZS "Adjusted savings: carbon dioxide damage (% of GNI)"label var iNY_ADJ_DFOR_CD "Adjusted savings: net forest depletion (current US$)"label var iNY_ADJ_DFOR_GN_ZS "Adjusted savings: net forest depletion (% of GNI)"label var iNY_ADJ_DKAP_CD "Adjusted savings: consumption of fixed capital (current US$)"label var iNY_ADJ_DKAP_GN_ZS "Adjusted savings: consumption of fixed capital (% of GNI)"label var iNY_ADJ_DMIN_CD "Adjusted savings: mineral depletion (current US$)"label var iNY_ADJ_DMIN_GN_ZS "Adjusted savings: mineral depletion (% of GNI)"label var iNY_ADJ_DNGY_CD "Adjusted savings: energy depletion (current US$)"label var iNY_ADJ_DNGY_GN_ZS "Adjusted savings: energy depletion (% of GNI)"label var iNY_ADJ_DPEM_CD "Adjusted savings: particulate emission damage (current US$)"

Page 19: * Created by Evan Schofefr · Web view* Created by Evan Schofer * Department of Sociology * University of California, Irvine * May 2010 * Load newest WDI. clear. set memory 5000m

label var iNY_ADJ_DPEM_GN_ZS "Adjusted savings: particulate emission damage (% of GNI)"label var iNY_ADJ_ICTR_GN_ZS "Adjusted savings: gross savings (% of GNI)"label var iNY_ADJ_NNAT_CD "Adjusted savings: net national savings (current US$)"label var iNY_ADJ_NNAT_GN_ZS "Adjusted savings: net national savings (% of GNI)"label var iNY_ADJ_SVNG_CD "Adjusted net savings, including particulate emission damage (current US$)"label var iNY_ADJ_SVNG_GN_ZS "Adjusted net savings, including particulate emission damage (% of GNI)"label var iNY_ADJ_SVNX_CD "Adjusted net savings, excluding particulate emission damage (current US$)"label var iNY_ADJ_SVNX_GN_ZS "Adjusted net savings, excluding particulate emission damage (% of GNI)"label var iNY_EXP_CAPM_KN "Exports as a capacity to import (constant LCU)"label var iNY_GDP_DEFL_KD_ZG "Inflation, GDP deflator (annual %)"label var iNY_GDP_DEFL_ZS "GDP deflator (base year varies by country)"label var iNY_GDP_DISC_CN "Discrepancy in expenditure estimate of GDP (current LCU)"label var iNY_GDP_DISC_KN "Discrepancy in expenditure estimate of GDP (constant LCU)"label var iNY_GDP_FCST_CD "Gross value added at factor cost (current US$)"label var iNY_GDP_FCST_CN "Gross value added at factor cost (current LCU)"label var iNY_GDP_FCST_KD "Gross value added at factor cost (constant 2000 US$)"label var iNY_GDP_FCST_KN "Gross value added at factor cost (constant LCU)"label var iNY_GDP_MKTP_CD "GDP (current US$)"label var iNY_GDP_MKTP_CN "GDP (current LCU)"label var iNY_GDP_MKTP_KD "GDP (constant 2000 US$)"label var iNY_GDP_MKTP_KD_ZG "GDP growth (annual %)"label var iNY_GDP_MKTP_KN "GDP (constant LCU)"label var iNY_GDP_MKTP_PP_CD "GDP, PPP (current international $)"label var iNY_GDP_MKTP_PP_KD "GDP, PPP (constant 2005 international $)"label var iNY_GDP_PCAP_CD "GDP per capita (current US$)"label var iNY_GDP_PCAP_KD "GDP per capita (constant 2000 US$)"label var iNY_GDP_PCAP_KD_ZG "GDP per capita growth (annual %)"label var iNY_GDP_PCAP_KN "GDP per capita (constant LCU)"label var iNY_GDP_PCAP_PP_CD "GDP per capita, PPP (current international $)"label var iNY_GDP_PCAP_PP_KD "GDP per capita, PPP (constant 2005 international $)"label var iNY_GDS_TOTL_CD "Gross domestic savings (current US$)"label var iNY_GDS_TOTL_CN "Gross domestic savings (current LCU)"label var iNY_GDS_TOTL_KN "Gross domestic savings (constant LCU)"label var iNY_GDS_TOTL_ZS "Gross domestic savings (% of GDP)"label var iNY_GDY_TOTL_KD "Gross domestic income (constant 2000 US$)"label var iNY_GDY_TOTL_KN "Gross domestic income (constant LCU)"label var iNY_GNP_ATLS_CD "GNI, Atlas method (current US$)"label var iNY_GNP_MKTP_CD "GNI (current US$)"label var iNY_GNP_MKTP_CN "GNI (current LCU)"label var iNY_GNP_MKTP_PP_CD "GNI, PPP (current international $)"label var iNY_GNP_PCAP_CD "GNI per capita, Atlas method (current US$)"label var iNY_GNP_PCAP_PP_CD "GNI per capita, PPP (current international $)"label var iNY_GNS_ICTR_CD "Gross savings (current US$)"label var iNY_GNS_ICTR_CN "Gross savings (current LCU)"label var iNY_GNS_ICTR_GN_ZS "Gross savings (% of GNI)"label var iNY_GNS_ICTR_ZS "Gross savings (% of GDP)"label var iNY_GNY_TOTL_KN "Gross national income (constant LCU)"label var iNY_GSR_NFCY_CD "Net income from abroad (current US$)"label var iNY_GSR_NFCY_CN "Net income from abroad (current LCU)"label var iNY_GSR_NFCY_KN "Net income from abroad (constant LCU)"label var iNY_TAX_NIND_CD "Net taxes on products (current US$)"label var iNY_TAX_NIND_CN "Net taxes on products (current LCU)"

Page 20: * Created by Evan Schofefr · Web view* Created by Evan Schofer * Department of Sociology * University of California, Irvine * May 2010 * Load newest WDI. clear. set memory 5000m

label var iNY_TAX_NIND_KN "Net taxes on products (constant LCU)"label var iNY_TRF_NCTR_CD "Net current transfers from abroad (current US$)"label var iNY_TRF_NCTR_CN "Net current transfers from abroad (current LCU)"label var iNY_TRF_NCTR_KN "Net current transfers from abroad (constant LCU)"label var iNY_TTF_GNFS_KN "Terms of trade adjustment (constant LCU)"label var iPA_NUS_ATLS "DEC alternative conversion factor (LCU per US$)"label var iPA_NUS_FCRF "Official exchange rate (LCU per US$, period average)"label var iPA_NUS_PPP "PPP conversion factor, GDP (LCU per international $)"label var iPA_NUS_PPPC_RF "PPP conversion factor (GDP) to market exchange rate ratio"label var iPA_NUS_PRVT_PP "PPP conversion factor, private consumption (LCU per international $)"label var iPX_REX_REER "Real effective exchange rate index (2000 = 100)"label var iSE_ADT_1524_LT_FE_ZS "Literacy rate, youth female (% of females ages 15-24)"label var iSE_ADT_1524_LT_FM_ZS "Ratio of young literate females to males (% ages 15-24)"label var iSE_ADT_1524_LT_MA_ZS "Literacy rate, youth male (% of males ages 15-24)"label var iSE_ADT_1524_LT_ZS "Literacy rate, youth total (% of people ages 15-24)"label var iSE_ADT_LITR_FE_ZS "Literacy rate, adult female (% of females ages 15 and above)"label var iSE_ADT_LITR_MA_ZS "Literacy rate, adult male (% of males ages 15 and above)"label var iSE_ADT_LITR_ZS "Literacy rate, adult total (% of people ages 15 and above)"label var iSE_ENR_PRIM_FM_ZS "Ratio of female to male primary enrollment (%)"label var iSE_ENR_PRSC_FM_ZS "Ratio of girls to boys in primary and secondary education (%)"label var iSE_ENR_SECO_FM_ZS "Ratio of female to male secondary enrollment (%)"label var iSE_ENR_TERT_FM_ZS "Ratio of female to male tertiary enrollment (%)"label var iSE_PRE_ENRR "School enrollment, preprimary (% gross)"label var iSE_PRE_ENRR_FE "School enrollment, preprimary, female (% gross)"label var iSE_PRE_ENRR_MA "School enrollment, preprimary, male (% gross)"label var iSE_PRM_AGES "Primary school starting age (years)"label var iSE_PRM_CMPT_FE_ZS "Primary completion rate, female (% of relevant age group)"label var iSE_PRM_CMPT_MA_ZS "Primary completion rate, male (% of relevant age group)"label var iSE_PRM_CMPT_ZS "Primary completion rate, total (% of relevant age group)"label var iSE_PRM_DURS "Primary education, duration (years)"label var iSE_PRM_ENRL "Primary education, pupils"label var iSE_PRM_ENRL_FE_ZS "Primary education, pupils (% female)"label var iSE_PRM_ENRL_TC_ZS "Pupil-teacher ratio, primary"label var iSE_PRM_ENRR "School enrollment, primary (% gross)"label var iSE_PRM_ENRR_FE "School enrollment, primary, female (% gross)"label var iSE_PRM_ENRR_MA "School enrollment, primary, male (% gross)"label var iSE_PRM_GINT_FE_ZS "Gross intake rate in grade 1, female (% of relevant age group)"label var iSE_PRM_GINT_MA_ZS "Gross intake rate in grade 1, male (% of relevant age group)"label var iSE_PRM_GINT_ZS "Gross intake rate in grade 1, total (% of relevant age group)"label var iSE_PRM_NENR "School enrollment, primary (% net)"label var iSE_PRM_NENR_FE "School enrollment, primary, female (% net)"label var iSE_PRM_NENR_MA "School enrollment, primary, male (% net)"label var iSE_PRM_NINT_FE_ZS "Net intake rate in grade 1, female (% of official school-age population)"

Page 21: * Created by Evan Schofefr · Web view* Created by Evan Schofer * Department of Sociology * University of California, Irvine * May 2010 * Load newest WDI. clear. set memory 5000m

label var iSE_PRM_NINT_MA_ZS "Net intake rate in grade 1, male (% of official school-age population)"label var iSE_PRM_NINT_ZS "Net intake rate in grade 1 (% of official school-age population)"label var iSE_PRM_PRIV_ZS "School enrollment, primary, private (% of total primary)"label var iSE_PRM_PRS5_FE_ZS "Persistence to grade 5, female (% of cohort)"label var iSE_PRM_PRS5_MA_ZS "Persistence to grade 5, male (% of cohort)"label var iSE_PRM_PRS5_ZS "Persistence to grade 5, total (% of cohort)"label var iSE_PRM_PRSL_FE_ZS "Persistence to last grade of primary, female (% of cohort)"label var iSE_PRM_PRSL_MA_ZS "Persistence to last grade of primary, male (% of cohort)"label var iSE_PRM_PRSL_ZS "Persistence to last grade of primary, total (% of cohort)"label var iSE_PRM_REPT_FE_ZS "Repeaters, primary, female (% of female enrollment)"label var iSE_PRM_REPT_MA_ZS "Repeaters, primary, male (% of male enrollment)"label var iSE_PRM_REPT_ZS "Repeaters, primary, total (% of total enrollment)"label var iSE_PRM_TCAQ_FE_ZS "Trained teachers in primary education, female (% of female teachers)"label var iSE_PRM_TCAQ_MA_ZS "Trained teachers in primary education, male (% of male teachers)"label var iSE_PRM_TCAQ_ZS "Trained teachers in primary education (% of total teachers)"label var iSE_PRM_TCHR "Primary education, teachers"label var iSE_PRM_TCHR_FE_ZS "Primary education, teachers (% female)"label var iSE_PRM_TENR "Total enrollment, primary (% net)"label var iSE_PRM_TENR_FE "Total enrollment, primary, female (% net)"label var iSE_PRM_TENR_MA "Total enrollment, primary, male (% net)"label var iSE_PRM_UNER "Children out of school, primary"label var iSE_PRM_UNER_FE "Children out of school, primary, female"label var iSE_PRM_UNER_MA "Children out of school, primary, male"label var iSE_SEC_AGES "Secondary school starting age (years)"label var iSE_SEC_DURS "Secondary education, duration (years)"label var iSE_SEC_ENRL "Secondary education, pupils"label var iSE_SEC_ENRL_FE_ZS "Secondary education, pupils (% female)"label var iSE_SEC_ENRL_GC "Secondary education, general pupils"label var iSE_SEC_ENRL_GC_FE_ZS "Secondary education, general pupils (% female)"label var iSE_SEC_ENRL_TC_ZS "Pupil-teacher ratio, secondary"label var iSE_SEC_ENRL_VO "Secondary education, vocational pupils"label var iSE_SEC_ENRL_VO_FE_ZS "Secondary education, vocational pupils (% female)"label var iSE_SEC_ENRR "School enrollment, secondary (% gross)"label var iSE_SEC_ENRR_FE "School enrollment, secondary, female (% gross)"label var iSE_SEC_ENRR_MA "School enrollment, secondary, male (% gross)"label var iSE_SEC_NENR "School enrollment, secondary (% net)"label var iSE_SEC_NENR_FE "School enrollment, secondary, female (% net)"label var iSE_SEC_NENR_MA "School enrollment, secondary, male (% net)"label var iSE_SEC_PRIV_ZS "School enrollment, secondary, private (% of total secondary)"label var iSE_SEC_PROG_FE_ZS "Progression to secondary school, female (%)"label var iSE_SEC_PROG_MA_ZS "Progression to secondary school, male (%)"label var iSE_SEC_PROG_ZS "Progression to secondary school (%)"label var iSE_SEC_REPT_FE_ZS "Repeaters, secondary, female (% of female enrollment)"label var iSE_SEC_REPT_MA_ZS "Repeaters, secondary, male (% of male enrollment)"label var iSE_SEC_REPT_ZS "Repeaters, secondary, total (% of total enrollment)"label var iSE_SEC_TCHR "Secondary education, teachers"label var iSE_SEC_TCHR_FE "Secondary education, teachers, female"label var iSE_SEC_TCHR_FE_ZS "Secondary education, teachers (% female)"label var iSE_TER_ENRR "School enrollment, tertiary (% gross)"

Page 22: * Created by Evan Schofefr · Web view* Created by Evan Schofer * Department of Sociology * University of California, Irvine * May 2010 * Load newest WDI. clear. set memory 5000m

label var iSE_TER_ENRR_FE "School enrollment, tertiary, female (% gross)"label var iSE_TER_ENRR_MA "School enrollment, tertiary, male (% gross)"label var iSE_XPD_PRIM_PC_ZS "Expenditure per student, primary (% of GDP per capita)"label var iSE_XPD_SECO_PC_ZS "Expenditure per student, secondary (% of GDP per capita)"label var iSE_XPD_TERT_PC_ZS "Expenditure per student, tertiary (% of GDP per capita)"label var iSE_XPD_TOTL_GB_ZS "Public spending on education, total (% of government expenditure)"label var iSE_XPD_TOTL_GD_ZS "Public spending on education, total (% of GDP)"label var iSG_GEN_PARL_ZS "Proportion of seats held by women in national parliaments (%)"label var iSH_DYN_AIDS_FE_ZS "Female adults with HIV (% of population ages 15+ with HIV)"label var iSH_DYN_AIDS_ZS "Prevalence of HIV, total (% of population ages 15-49)"label var iSH_DYN_CHLD_FE "Mortality rate, female child (per 1,000 female children age one)"label var iSH_DYN_CHLD_MA "Mortality rate, male child (per 1,000 male children age one)"label var iSH_DYN_MORT "Mortality rate, under-5 (per 1,000)"label var iSH_H2O_SAFE_RU_ZS "Improved water source, rural (% of rural population with access)"label var iSH_H2O_SAFE_UR_ZS "Improved water source, urban (% of urban population with access)"label var iSH_H2O_SAFE_ZS "Improved water source (% of population with access)"label var iSH_HIV_1524_FE_ZS "Prevalence of HIV, female (% ages 15-24)"label var iSH_HIV_1524_MA_ZS "Prevalence of HIV, male (% ages 15-24)"label var iSH_IMM_IDPT "Immunization, DPT (% of children ages 12-23 months)"label var iSH_IMM_MEAS "Immunization, measles (% of children ages 12-23 months)"label var iSH_MED_BEDS_ZS "Hospital beds (per 1,000 people)"label var iSH_MED_CMHW_P3 "Community health workers (per 1,000 people)"label var iSH_MED_NUMW_P3 "Nurses and midwives (per 1,000 people)"label var iSH_MED_PHYS_ZS "Physicians (per 1,000 people)"label var iSH_MLR_NETS_ZS "Use of insecticide-treated bed nets (% of under-5 population)"label var iSH_MLR_TRET_ZS "Children with fever receiving antimalarial drugs (% of children under age 5 with fever)"label var iSH_MMR_RISK "Lifetime risk of maternal death (1 in: rate varies by country)"label var iSH_PRV_SMOK_FE "Smoking prevalence, females (% of adults)"label var iSH_PRV_SMOK_MA "Smoking prevalence, males (% of adults)"label var iSH_STA_ACSN "Improved sanitation facilities (% of population with access)"label var iSH_STA_ACSN_RU "Improved sanitation facilities, rural (% of rural population with access)"label var iSH_STA_ACSN_UR "Improved sanitation facilities, urban (% of urban population with access)"label var iSH_STA_ANVC_ZS "Pregnant women receiving prenatal care (%)"label var iSH_STA_ARIC_ZS "ARI treatment (% of children under 5 taken to a health provider)"label var iSH_STA_BFED_ZS "Exclusive breastfeeding (% of children under 6 months)"label var iSH_STA_BRTC_ZS "Births attended by skilled health staff (% of total)"label var iSH_STA_BRTW_ZS "Low-birthweight babies (% of births)"label var iSH_STA_MALN_ZS "Malnutrition prevalence, weight for age (% of children under 5)"label var iSH_STA_MMRT "Maternal mortality ratio (modeled estimate, per 100,000 live births)"

Page 23: * Created by Evan Schofefr · Web view* Created by Evan Schofer * Department of Sociology * University of California, Irvine * May 2010 * Load newest WDI. clear. set memory 5000m

label var iSH_STA_ORCF_ZS "Diarrhea treatment (% of children under 5 receiving oral rehydration and continued feeding)"label var iSH_STA_OWGH_ZS "Prevalence of overweight (% of children under 5)"label var iSH_STA_STNT_ZS "Malnutrition prevalence, height for age (% of children under 5)"label var iSH_STA_WAST_ZS "Prevalence of wasting (% of children under 5)"label var iSH_TBS_CURE_ZS "Tuberculosis treatment success rate (% of registered cases)"label var iSH_TBS_DTEC_ZS "Tuberculosis case detection rate (all forms)"label var iSH_TBS_INCD "Incidence of tuberculosis (per 100,000 people)"label var iSH_VST_OUTP "Outpatient visits per capita "label var iSH_XPD_EXTR_ZS "External resources for health (% of total expenditure on health)"label var iSH_XPD_OOPC_ZS "Out-of-pocket health expenditure (% of private expenditure on health)"label var iSH_XPD_PCAP "Health expenditure per capita (current US$)"label var iSH_XPD_PCAP_PP_KD "Health expenditure per capita, PPP (constant 2005 international $)"label var iSH_XPD_PRIV_ZS "Health expenditure, private (% of GDP)"label var iSH_XPD_PUBL "Health expenditure, public (% of total health expenditure)"label var iSH_XPD_PUBL_GX_ZS "Health expenditure, public (% of government expenditure)"label var iSH_XPD_PUBL_ZS "Health expenditure, public (% of GDP)"label var iSH_XPD_TOTL_ZS "Health expenditure, total (% of GDP)"label var iSI_DST_02ND_20 "Income share held by second 20%"label var iSI_DST_03RD_20 "Income share held by third 20%"label var iSI_DST_04TH_20 "Income share held by fourth 20%"label var iSI_DST_05TH_20 "Income share held by highest 20%"label var iSI_DST_10TH_10 "Income share held by highest 10%"label var iSI_DST_FRST_10 "Income share held by lowest 10%"label var iSI_DST_FRST_20 "Income share held by lowest 20%"label var iSI_POV_2DAY "Poverty headcount ratio at $2 a day (PPP) (% of population)"label var iSI_POV_DDAY "Poverty headcount ratio at $1.25 a day (PPP) (% of population)"label var iSI_POV_GAP2 "Poverty gap at $2 a day (PPP) (%)"label var iSI_POV_GAPS "Poverty gap at $1.25 a day (PPP) (%)"label var iSI_POV_GINI "GINI index"label var iSI_POV_NAGP "Poverty gap at national poverty line (%)"label var iSI_POV_NAHC "Poverty headcount ratio at national poverty line (% of population)"label var iSI_POV_RUGP "Poverty gap at rural poverty line (%)"label var iSI_POV_RUHC "Poverty headcount ratio at rural poverty line (% of rural population)"label var iSI_POV_URGP "Poverty gap at urban poverty line (%)"label var iSI_POV_URHC "Poverty headcount ratio at urban poverty line (% of urban population)"label var iSL_AGR_0714_FE_ZS "Child employment in agriculture, female (% of female economically active children ages 7-14)"label var iSL_AGR_0714_MA_ZS "Child employment in agriculture, male (% of male economically active children ages 7-14)"label var iSL_AGR_0714_ZS "Child employment in agriculture (% of economically active children ages 7-14)"label var iSL_AGR_EMPL_FE_ZS "Employees, agriculture, female (% of female employment)"label var iSL_AGR_EMPL_MA_ZS "Employees, agriculture, male (% of male employment)"label var iSL_AGR_EMPL_ZS "Employment in agriculture (% of total employment)"

Page 24: * Created by Evan Schofefr · Web view* Created by Evan Schofer * Department of Sociology * University of California, Irvine * May 2010 * Load newest WDI. clear. set memory 5000m

label var iSL_EMP_1524_SP_FE_ZS "Employment to population ratio, ages 15-24, female (%)"label var iSL_EMP_1524_SP_MA_ZS "Employment to population ratio, ages 15-24, male (%)"label var iSL_EMP_1524_SP_ZS "Employment to population ratio, ages 15-24, total (%)"label var iSL_EMP_INSV_FE_ZS "Share of women employed in the nonagricultural sector (% of total nonagricultural employment)"label var iSL_EMP_TOTL_SP_FE_ZS "Employment to population ratio, 15+, female (%)"label var iSL_EMP_TOTL_SP_MA_ZS "Employment to population ratio, 15+, male (%)"label var iSL_EMP_TOTL_SP_ZS "Employment to population ratio, 15+, total (%)"label var iSL_EMP_VULN_FE_ZS "Vulnerable employment, female (% of female employment)"label var iSL_EMP_VULN_MA_ZS "Vulnerable employment, male (% of male employment)"label var iSL_EMP_VULN_ZS "Vulnerable employment, total (% of total employment)"label var iSL_GDP_PCAP_EM_KD "GDP per person employed (constant 1990 PPP $)"label var iSL_IND_EMPL_FE_ZS "Employees, industry, female (% of female employment)"label var iSL_IND_EMPL_MA_ZS "Employees, industry, male (% of male employment)"label var iSL_IND_EMPL_ZS "Employment in industry (% of total employment)"label var iSL_MNF_0714_FE_ZS "Child employment in manufacturing, female (% of female economically active children ages 7-14)"label var iSL_MNF_0714_MA_ZS "Child employment in manufacturing, male (% of male economically active children ages 7-14)"label var iSL_MNF_0714_ZS "Child employment in manufacturing (% of economically active children ages 7-14)"label var iSL_SRV_0714_FE_ZS "Child employment in services, female (% of female economically active children ages 7-14)"label var iSL_SRV_0714_MA_ZS "Child employment in services, male (% of male economically active children ages 7-14)"label var iSL_SRV_0714_ZS "Child employment in services (% of economically active children ages 7-14)"label var iSL_SRV_EMPL_FE_ZS "Employees, services, female (% of female employment)"label var iSL_SRV_EMPL_MA_ZS "Employees, services, male (% of male employment)"label var iSL_SRV_EMPL_ZS "Employment in services (% of total employment)"label var iSL_TLF_0714_FE_ZS "Economically active children, female (% of female children ages 7-14)"label var iSL_TLF_0714_MA_ZS "Economically active children, male (% of male children ages 7-14)"label var iSL_TLF_0714_SW_FE_ZS "Economically active children, study and work, female (% of female economically active children, ages 7-14)"label var iSL_TLF_0714_SW_MA_ZS "Economically active children, study and work, male (% of male economically active children, ages 7-14)"label var iSL_TLF_0714_SW_ZS "Economically active children, study and work (% of economically active children, ages 7-14)"label var iSL_TLF_0714_WK_FE_ZS "Economically active children, work only, female (% of female economically active children, ages 7-14)"label var iSL_TLF_0714_WK_MA_ZS "Economically active children, work only, male (% of male economically active children, ages 7-14)"label var iSL_TLF_0714_WK_ZS "Economically active children, work only (% of economically active children, ages 7-14)"label var iSL_TLF_0714_ZS "Economically active children, total (% of children ages 7-14)"label var iSL_TLF_CACT_FE_ZS "Labor participation rate, female (% of female population ages 15+)"label var iSL_TLF_CACT_MA_ZS "Labor participation rate, male (% of male population ages 15+)"label var iSL_TLF_CACT_ZS "Labor participation rate, total (% of total population ages 15+)"

Page 25: * Created by Evan Schofefr · Web view* Created by Evan Schofer * Department of Sociology * University of California, Irvine * May 2010 * Load newest WDI. clear. set memory 5000m

label var iSL_TLF_PRIM_FE_ZS "Labor force with primary education, female (% of female labor force)"label var iSL_TLF_PRIM_MA_ZS "Labor force with primary education, male (% of male labor force)"label var iSL_TLF_PRIM_ZS "Labor force with primary education (% of total)"label var iSL_TLF_SECO_FE_ZS "Labor force with secondary education, female (% of female labor force)"label var iSL_TLF_SECO_MA_ZS "Labor force with secondary education, male (% of male labor force)"label var iSL_TLF_SECO_ZS "Labor force with secondary education (% of total)"label var iSL_TLF_TERT_FE_ZS "Labor force with tertiary education, female (% of female labor force)"label var iSL_TLF_TERT_MA_ZS "Labor force with tertiary education, male (% of male labor force)"label var iSL_TLF_TERT_ZS "Labor force with tertiary education (% of total)"label var iSL_TLF_TOTL_FE_ZS "Labor force, female (% of total labor force)"label var iSL_TLF_TOTL_IN "Labor force, total"label var iSL_UEM_1524_FE_ZS "Unemployment, youth female (% of female labor force ages 15-24)"label var iSL_UEM_1524_MA_ZS "Unemployment, youth male (% of male labor force ages 15-24)"label var iSL_UEM_1524_ZS "Unemployment, youth total (% of total labor force ages 15-24)"label var iSL_UEM_LTRM_FE_ZS "Long-term unemployment, female (% of female unemployment)"label var iSL_UEM_LTRM_MA_ZS "Long-term unemployment, male (% of male unemployment)"label var iSL_UEM_LTRM_ZS "Long-term unemployment (% of total unemployment)"label var iSL_UEM_PRIM_FE_ZS "Unemployment with primary education, female (% of female unemployment)"label var iSL_UEM_PRIM_MA_ZS "Unemployment with primary education, male (% of male unemployment)"label var iSL_UEM_PRIM_ZS "Unemployment with primary education (% of total unemployment)"label var iSL_UEM_SECO_FE_ZS "Unemployment with secondary education, female (% of female unemployment)"label var iSL_UEM_SECO_MA_ZS "Unemployment with secondary education, male (% of male unemployment)"label var iSL_UEM_SECO_ZS "Unemployment with secondary education (% of total unemployment)"label var iSL_UEM_TERT_FE_ZS "Unemployment with tertiary education, female (% of female unemployment)"label var iSL_UEM_TERT_MA_ZS "Unemployment with tertiary education, male (% of male unemployment)"label var iSL_UEM_TERT_ZS "Unemployment with tertiary education (% of total unemployment)"label var iSL_UEM_TOTL_FE_ZS "Unemployment, female (% of female labor force)"label var iSL_UEM_TOTL_MA_ZS "Unemployment, male (% of male labor force)"label var iSL_UEM_TOTL_ZS "Unemployment, total (% of total labor force)"label var iSM_EMI_TERT_ZS "Emigration rate of tertiary educated (% of total tertiary educated population)"label var iSM_POP_NETM "Net migration"label var iSM_POP_REFG "Refugee population by country or territory of asylum"label var iSM_POP_REFG_OR "Refugee population by country or territory of origin"label var iSM_POP_TOTL "International migrant stock, total"label var iSM_POP_TOTL_ZS "International migrant stock (% of population)"label var iSN_ITK_DEFC_ZS "Prevalence of undernourishment (% of population)"label var iSN_ITK_DPTH "Depth of hunger (kilocalories per person per day)"

Page 26: * Created by Evan Schofefr · Web view* Created by Evan Schofer * Department of Sociology * University of California, Irvine * May 2010 * Load newest WDI. clear. set memory 5000m

label var iSN_ITK_SALT_ZS "Consumption of iodized salt (% of households)"label var iSN_ITK_VITA_ZS "Vitamin A supplementation coverage rate (% of children ages 6-59 months)"label var iSP_ADO_TFRT "Adolescent fertility rate (births per 1,000 women ages 15-19)"label var iSP_DTH_INFR_ZS "Completeness of infant death reporting (% of reported infant deaths to estimated infant deaths)"label var iSP_DTH_REPT_ZS "Completeness of total death reporting (% of reported total deaths to estimated total deaths)"label var iSP_DYN_AMRT_FE "Mortality rate, adult, female (per 1,000 female adults)"label var iSP_DYN_AMRT_MA "Mortality rate, adult, male (per 1,000 male adults)"label var iSP_DYN_CBRT_IN "Birth rate, crude (per 1,000 people)"label var iSP_DYN_CDRT_IN "Death rate, crude (per 1,000 people)"label var iSP_DYN_CONU_ZS "Contraceptive prevalence (% of women ages 15-49)"label var iSP_DYN_IMRT_IN "Mortality rate, infant (per 1,000 live births)"label var iSP_DYN_LE00_FE_IN "Life expectancy at birth, female (years)"label var iSP_DYN_LE00_IN "Life expectancy at birth, total (years)"label var iSP_DYN_LE00_MA_IN "Life expectancy at birth, male (years)"label var iSP_DYN_TFRT_IN "Fertility rate, total (births per woman)"label var iSP_DYN_TO65_FE_ZS "Survival to age 65, female (% of cohort)"label var iSP_DYN_TO65_MA_ZS "Survival to age 65, male (% of cohort)"label var iSP_DYN_WFRT "Wanted fertility rate (births per woman)"label var iSP_MTR_1519_ZS "Teenage mothers (% of women ages 15-19 who have had children or are currently pregnant)"label var iSP_POP_0014_TO_ZS "Population ages 0-14 (% of total)"label var iSP_POP_1564_TO_ZS "Population ages 15-64 (% of total)"label var iSP_POP_65UP_TO_ZS "Population ages 65 and above (% of total)"label var iSP_POP_DPND "Age dependency ratio (% of working-age population)"label var iSP_POP_DPND_OL "Age dependency ratio, old (% of working-age population)"label var iSP_POP_DPND_YG "Age dependency ratio, young (% of working-age population)"label var iSP_POP_GROW "Population growth (annual %)"label var iSP_POP_SCIE_RD_P6 "Researchers in R&D (per million people)"label var iSP_POP_TECH_RD_P6 "Technicians in R&D (per million people)"label var iSP_POP_TOTL "Population, total"label var iSP_POP_TOTL_FE_ZS "Population, female (% of total)"label var iSP_REG_BRTH_RU_ZS "Completeness of birth registration, rural (%)"label var iSP_REG_BRTH_UR_ZS "Completeness of birth registration, urban (%)"label var iSP_REG_BRTH_ZS "Completeness of birth registration (%)"label var iSP_RUR_TOTL "Rural population"label var iSP_RUR_TOTL_ZG "Rural population growth (annual %)"label var iSP_RUR_TOTL_ZS "Rural population (% of total population)"label var iSP_URB_GROW "Urban population growth (annual %)"label var iSP_URB_TOTL "Urban population"label var iSP_URB_TOTL_IN_ZS "Urban population (% of total)"label var iSP_UWT_TFRT "Unmet need for contraception (% of married women ages 15-49)"label var iST_INT_ARVL "International tourism, number of arrivals"label var iST_INT_DPRT "International tourism, number of departures"label var iST_INT_RCPT_CD "International tourism, receipts (current US$)"label var iST_INT_RCPT_XP_ZS "International tourism, receipts (% of total exports)"label var iST_INT_TRNR_CD "International tourism, receipts for passenger transport items (current US$)"label var iST_INT_TRNX_CD "International tourism, expenditures for passenger transport items (current US$)"label var iST_INT_TVLR_CD "International tourism, receipts for travel items (current US$)"label var iST_INT_TVLX_CD "International tourism, expenditures for travel items (current US$)"

Page 27: * Created by Evan Schofefr · Web view* Created by Evan Schofer * Department of Sociology * University of California, Irvine * May 2010 * Load newest WDI. clear. set memory 5000m

label var iST_INT_XPND_CD "International tourism, expenditures (current US$)"label var iST_INT_XPND_MP_ZS "International tourism, expenditures (% of total imports)"label var iTG_VAL_TOTL_GD_ZS "Merchandise trade (% of GDP)"label var iTM_QTY_MRCH_XD_WD "Import volume index (2000 = 100)"label var iTM_TAX_MANF_BC_ZS "Binding coverage, manufactured products (%)"label var iTM_TAX_MANF_BR_ZS "Bound rate, simple mean, manufactured products (%)"label var iTM_TAX_MANF_IP_ZS "Share of tariff lines with international peaks, manufactured products (%)"label var iTM_TAX_MANF_SM_AR_ZS "Tariff rate, applied, simple mean, manufactured products (%)"label var iTM_TAX_MANF_SM_FN_ZS "Tariff rate, most favored nation, simple mean, manufactured products (%)"label var iTM_TAX_MANF_SR_ZS "Share of tariff lines with specific rates, manufactured products (%)"label var iTM_TAX_MANF_WM_AR_ZS "Tariff rate, applied, weighted mean, manufactured products (%)"label var iTM_TAX_MANF_WM_FN_ZS "Tariff rate, most favored nation, weighted mean, manufactured products (%)"label var iTM_TAX_MRCH_BC_ZS "Binding coverage, all products (%)"label var iTM_TAX_MRCH_BR_ZS "Bound rate, simple mean, all products (%)"label var iTM_TAX_MRCH_IP_ZS "Share of tariff lines with international peaks, all products (%)"label var iTM_TAX_MRCH_SM_AR_ZS "Tariff rate, applied, simple mean, all products (%)"label var iTM_TAX_MRCH_SM_FN_ZS "Tariff rate, most favored nation, simple mean, all products (%)"label var iTM_TAX_MRCH_SR_ZS "Share of tariff lines with specific rates, all products (%)"label var iTM_TAX_MRCH_WM_AR_ZS "Tariff rate, applied, weighted mean, all products (%)"label var iTM_TAX_MRCH_WM_FN_ZS "Tariff rate, most favored nation, weighted mean, all products (%)"label var iTM_TAX_TCOM_BC_ZS "Binding coverage, primary products (%)"label var iTM_TAX_TCOM_BR_ZS "Bound rate, simple mean, primary products (%)"label var iTM_TAX_TCOM_IP_ZS "Share of tariff lines with international peaks, primary products (%)"label var iTM_TAX_TCOM_SM_AR_ZS "Tariff rate, applied, simple mean, primary products (%)"label var iTM_TAX_TCOM_SM_FN_ZS "Tariff rate, most favored nation, simple mean, primary products (%)"label var iTM_TAX_TCOM_SR_ZS "Share of tariff lines with specific rates, primary products (%)"label var iTM_TAX_TCOM_WM_AR_ZS "Tariff rate, applied, weighted mean, primary products (%)"label var iTM_TAX_TCOM_WM_FN_ZS "Tariff rate, most favored nation, weighted mean, primary products (%)"label var iTM_VAL_AGRI_ZS_UN "Agricultural raw materials imports (% of merchandise imports)"label var iTM_VAL_FOOD_ZS_UN "Food imports (% of merchandise imports)"label var iTM_VAL_FUEL_ZS_UN "Fuel imports (% of merchandise imports)"label var iTM_VAL_ICTG_ZS_UN "ICT goods imports (% total goods imports)"label var iTM_VAL_INSF_ZS_WT "Insurance and financial services (% of commercial service imports)"label var iTM_VAL_MANF_ZS_UN "Manufactures imports (% of merchandise imports)"label var iTM_VAL_MMTL_ZS_UN "Ores and metals imports (% of merchandise imports)"label var iTM_VAL_MRCH_CD_WT "Merchandise imports (current US$)"

Page 28: * Created by Evan Schofefr · Web view* Created by Evan Schofer * Department of Sociology * University of California, Irvine * May 2010 * Load newest WDI. clear. set memory 5000m

label var iTM_VAL_MRCH_HI_ZS "Merchandise imports from high-income economies (% of total merchandise imports)"label var iTM_VAL_MRCH_OR_ZS "Merchandise imports from developing economies outside region (% of total merchandise imports)"label var iTM_VAL_MRCH_R1_ZS "Merchandise imports from developing economies in East Asia & Pacific (% of total merchandise imports)"label var iTM_VAL_MRCH_R2_ZS "Merchandise imports from developing economies in Europe & Central Asia (% of total merchandise imports)"label var iTM_VAL_MRCH_R3_ZS "Merchandise imports from developing economies in Latin America & the Caribbean (% of total merchandise imports)"label var iTM_VAL_MRCH_R4_ZS "Merchandise imports from developing economies in Middle East & North Africa (% of total merchandise imports)"label var iTM_VAL_MRCH_R5_ZS "Merchandise imports from developing economies in South Asia (% of total merchandise imports)"label var iTM_VAL_MRCH_R6_ZS "Merchandise imports from developing economies in Sub-Saharan Africa (% of total merchandise imports)"label var iTM_VAL_MRCH_RS_ZS "Merchandise imports by the reporting economy, residual (% of total merchandise imports)"label var iTM_VAL_MRCH_WL_CD "Merchandise imports by the reporting economy (current US$)"label var iTM_VAL_MRCH_WR_ZS "Merchandise imports from developing economies within region (% of total merchandise imports)"label var iTM_VAL_MRCH_XD_WD "Import value index (2000 = 100)"label var iTM_VAL_OTHR_ZS_WT "Computer, communications and other services (% of commercial service imports)"label var iTM_VAL_SERV_CD_WT "Commercial service imports (current US$)"label var iTM_VAL_TRAN_ZS_WT "Transport services (% of commercial service imports)"label var iTM_VAL_TRVL_ZS_WT "Travel services (% of commercial service imports)"label var iTT_PRI_MRCH_XD_WD "Net barter terms of trade index (2000 = 100)"label var iTX_QTY_MRCH_XD_WD "Export volume index (2000 = 100)"label var iTX_VAL_AGRI_ZS_UN "Agricultural raw materials exports (% of merchandise exports)"label var iTX_VAL_FOOD_ZS_UN "Food exports (% of merchandise exports)"label var iTX_VAL_FUEL_ZS_UN "Fuel exports (% of merchandise exports)"label var iTX_VAL_ICTG_ZS_UN "ICT goods exports (% of total goods exports)"label var iTX_VAL_INSF_ZS_WT "Insurance and financial services (% of commercial service exports)"label var iTX_VAL_MANF_ZS_UN "Manufactures exports (% of merchandise exports)"label var iTX_VAL_MMTL_ZS_UN "Ores and metals exports (% of merchandise exports)"label var iTX_VAL_MRCH_CD_WT "Merchandise exports (current US$)"label var iTX_VAL_MRCH_HI_ZS "Merchandise exports to high-income economies (% of total merchandise exports)"label var iTX_VAL_MRCH_OR_ZS "Merchandise exports to developing economies outside region (% of total merchandise exports)"label var iTX_VAL_MRCH_R1_ZS "Merchandise exports to developing economies in East Asia & Pacific (% of total merchandise exports)"label var iTX_VAL_MRCH_R2_ZS "Merchandise exports to developing economies in Europe & Central Asia (% of total merchandise exports)"label var iTX_VAL_MRCH_R3_ZS "Merchandise exports to developing economies in Latin America & the Caribbean (% of total merchandise exports)"label var iTX_VAL_MRCH_R4_ZS "Merchandise exports to developing economies in Middle East & North Africa (% of total merchandise exports)"label var iTX_VAL_MRCH_R5_ZS "Merchandise exports to developing economies in South Asia (% of total merchandise exports)"label var iTX_VAL_MRCH_R6_ZS "Merchandise exports to developing economies in Sub-Saharan Africa (% of total merchandise exports)"

Page 29: * Created by Evan Schofefr · Web view* Created by Evan Schofer * Department of Sociology * University of California, Irvine * May 2010 * Load newest WDI. clear. set memory 5000m

label var iTX_VAL_MRCH_RS_ZS "Merchandise exports by the reporting economy, residual (% of total merchandise exports)"label var iTX_VAL_MRCH_WL_CD "Merchandise exports by the reporting economy (current US$)"label var iTX_VAL_MRCH_WR_ZS "Merchandise exports to developing economies within region (% of total merchandise exports)"label var iTX_VAL_MRCH_XD_WD "Export value index (2000 = 100)"label var iTX_VAL_OTHR_ZS_WT "Computer, communications and other services (% of commercial service exports)"label var iTX_VAL_SERV_CD_WT "Commercial service exports (current US$)"label var iTX_VAL_TECH_CD "High-technology exports (current US$)"label var iTX_VAL_TECH_MF_ZS "High-technology exports (% of manufactured exports)"label var iTX_VAL_TRAN_ZS_WT "Transport services (% of commercial service exports)"label var iTX_VAL_TRVL_ZS_WT "Travel services (% of commercial service exports)"label var iVC_BTL_DETH "Battle-related deaths (number of people)"label var iVC_HOM_ITEN_P5_HE "Intentional homicide rate (per 100,000 people, CTS and national sources)"label var iVC_HOM_ITEN_P5_LE "Intentional homicide rate (per 100,000 people, WHO)"label var iVC_IDP_TOTL "Internally displaced persons (number)"label var iVC_PKP_TOTL_UN "Presence of peace keepers (number of troops, police, and military observers in mandate)"

* Note: Adjust file name...save "c:\whatever\wdi2010.dta", replace

exit