合肥生活安徽新聞合肥交通合肥房產(chǎn)生活服務(wù)合肥教育合肥招聘合肥旅游文化藝術(shù)合肥美食合肥地圖合肥社保合肥醫(yī)院企業(yè)服務(wù)合肥法律

        代寫INAF U8145、代做c++,Java程序語(yǔ)言

        時(shí)間:2024-04-10  來(lái)源:合肥網(wǎng)hfw.cc  作者:hfw.cc 我要糾錯(cuò)



        SIPA INAF U8145
        Spring 2024
        Problem Set 3: Poverty and Inequality in Guatemala
        Due Fri. April 5, 11:59pm, uploaded in a single pdf file on Courseworks
        In this exercise, you will conduct an assessment of poverty and inequality in Guatemala. The data come from the
        Encuesta de Condiciones de Vita (ENCOVI) 2000, collected by the Instituto Nacional de Estadistica (INE), the
        national statistical institute of Guatemala, with assistance from the World Bank’s Living Standards Measurement
        Study (LSMS). Information on this and other LSMS surveys are on the World Bank’s website at
        http://www.worldbank.org/lsms. These data were used in the World Bank’s official poverty assessment for
        Guatemala in 2003, available here.
        Two poverty lines have been calculated for Guatemala using these ENCOVI 2000 data. The first is an extreme
        poverty line, defined as the annual cost of purchasing the minimum daily caloric requirement of 2, 172 calories.
        By this definition, the extreme poverty line is 1,912 Quetzals (Q), or approximately I$649 (PPP conversion), per
        person per year. The second is a full poverty line, defined as the extreme poverty line plus an allowance for nonfood items, where the allowance is calculated from the average non-food budget share of households whose
        calorie consumption is approximately the minimum daily requirement. (In other words, the full poverty line is the
        average per-capita expenditures of households whose food per-capita food consumption is approximately at the
        minimum.) By this definition, the full poverty line is 4,319 Q, or I$1,467.
        Note on sampling design: the ENCOVI sample was not a random sample of the entire population. First, clusters
        (or “strata”) were defined, and then households were sampled within each cluster. Given the sampling design, the
        analysis should technically be carried out with different weights for different observations. Stata has a special set
        of commands to do this sort of weighting (svymean, svytest, svytab etc.) But for the purpose of this exercise, we
        will ignore the fact that the sample was stratified, and assign equal weight for all observations.1 As a result, your
        answers will not be the same as in the World Bank’s poverty assessment, and will in some cases be unreliable.
        1. Get the data. From the course website, download the dataset ps3.dta, which contains a subset of the variables
        available in the ENCOVI 2000. Variable descriptions are contained in ps3vardesc.txt.
        2. Start a new do file. My suggestion is that you begin again from the starter Stata program for Problem Set 1 (or
        from your own code for Problem Set 1), keep the first set of commands (the “housekeeping” section) changing
        the name of the log file, delete the rest, and save the do file under a new name.
        3. Open the dataset in Stata (“use ps3.dta”), run the “describe” command, and check that you have 7,230
        observations on the variables in ps3vardesc.txt.
        4. Calculate the income rank for each household in the dataset (egen incrank = rank(incomepc)). Graph the
        poverty profile. Include horizontal lines corresponding to the full poverty line and the extreme poverty line.
        (Hint: you may want to create new variables equal to the full and extreme poverty lines.) When drawing the
        poverty profile, only include households up to the 95th percentile in income per capita on the graph. (That is,
        leave the top 5% of households off the graph.) Eliminating the highest-income household in this way will allow
        you to use a sensible scale for the graph, and you will be able to see better what is happening at lower income
        levels.
        5. Using the full poverty line and the consumption per capita variable, calculate the poverty measures P0, P1, P2.
        (Note: to sum a variable over all observations, use the command “egen newvar = total(oldvar);”.)
        6. Using the extreme poverty line and the consumption per capita variable, again calculate P0, P1, and P2.
        1 In all parts, you should treat each household as one observation. That is, do not try to adjust for the fact that
        some households are larger than others. You will thus be calculating poverty statistics for households, using
        per-capita consumption within the household as an indicator of the well-being of the household as a whole.
        7. Using the full poverty line and the consumption per capita variable, calculate P2 separately for urban and rural
        households.
        8. Using the full poverty line and the consumption per capita variable, calculate P2 separately for indigenous and
        non-indigenous households.
        9. Using the full poverty line and the consumption per capita variable, calculate P2 separately for each region.
        (Three bonus points for doing this in a “while” loop in Stata, like the one you used in Problem Set 1.)
        10. Using one of your comparisons from parts 7-9, compute the contribution that each subgroup makes to
        overall poverty. Note that if P2 is the poverty measure for the entire population (of households or of individuals),
        and P2 j and sj are the poverty measure and population share of sub-group j of the population, then the
        contribution of each sub-group to overall poverty can be written: sj*P2j/P2.
        11. Summarize your results for parts 4-10 in a paragraph, noting which calculations you find particularly
        interesting or important and why.
        12. In many cases, detailed consumption or income data is not available, or is available only for a subset of
        households, and targeting of anti-poverty programs must rely on poverty indices based on a few easy-toobserve correlates of poverty. Suppose that in addition to the ENCOVI survey, Guatemala has a population
        census with data on all households, but suppose also that the census contains no information on per capita
        consumption and only contains information on the following variables: urban, indig, spanish, n0_6, n7_24,
        n25_59, n60_plus, hhhfemal, hhhage, ed_1_5, ed_6, ed_7_10, ed_11, ed_m11, and dummies for each region.
        (In Stata, a convenient command to create dummy variables for each region is “xi i.region;”.) Calculate a
        “consumption index” using the ENCOVI by (a) regressing log per-capita consumption on the variables
        available in the population census, and (b) recovering the predicted values (command: predict), (c) converting
        from log to level using the “exp( )” function in Stata. These predicted values are your consumption index. Note
        that an analogous consumption index could be calculated for all households in the population census, using the
        coefficient estimates from this regression using the ENCOVI data. Explain how.
        13. Calculate P2 using your index (using the full poverty line) and compare to the value of P2 you calculated in
        question 5.
        14. Using the per-capita income variable, calculate the Gini coefficient for households (assuming that each
        household enters with equal weight.) Some notes: (1) Your bins will be 1/N wide, where N is the number of
        households. (2) The value of the Gini coefficient you calculate will not be equal to the actual Gini coefficient for
        Guatemala, because of the weighting issue described above. (3) To generate a cumulative sum of a variable in Stata,
        use the syntax “gen newvar = sum(oldvar);”. Try it out. (4) If you are interested (although it is not strictly
        necessary in this case) you can create a difference between the value of a variable in one observation and the value
        of the same variable in a previous observation in Stata, use the command “gen xdiff = x - x[_n-1];”. Be careful
        about how the data are sorted when you do this.
        What to turn in: In your write-up, you should report for each part any calculations you made, as well as written
        answers to any questions. Remember that you are welcome to work in groups but you must do your write-up on
        your own, and note whom you worked with. You should also attach a print-out of your Stata code.

        請(qǐng)加QQ:99515681  郵箱:99515681@qq.com   WX:codinghelp

        掃一掃在手機(jī)打開當(dāng)前頁(yè)
      1. 上一篇:代做RISC-V、C/C++編程設(shè)計(jì)代寫
      2. 下一篇:菲律賓買房的理由是什么 菲律賓買房的選擇
      3. ·代寫ECON 8820、代做c++,Java程序語(yǔ)言
      4. ·代寫MISM 6210、Python/java程序語(yǔ)言代做
      5. ·CS101 編程代寫、代做 java程序語(yǔ)言
      6. ·代寫DTS203TC、C++,Java程序語(yǔ)言代做
      7. ·代做Biological Neural Computation、Python/Java程序語(yǔ)言代寫
      8. ·program代做、Java程序語(yǔ)言代寫
      9. ·CS 2210編程代寫、Java程序語(yǔ)言代做
      10. ·代寫159.251編程、代做Java程序語(yǔ)言
      11. 合肥生活資訊

        合肥圖文信息
        急尋熱仿真分析?代做熱仿真服務(wù)+熱設(shè)計(jì)優(yōu)化
        急尋熱仿真分析?代做熱仿真服務(wù)+熱設(shè)計(jì)優(yōu)化
        出評(píng) 開團(tuán)工具
        出評(píng) 開團(tuán)工具
        挖掘機(jī)濾芯提升發(fā)動(dòng)機(jī)性能
        挖掘機(jī)濾芯提升發(fā)動(dòng)機(jī)性能
        海信羅馬假日洗衣機(jī)亮相AWE  復(fù)古美學(xué)與現(xiàn)代科技完美結(jié)合
        海信羅馬假日洗衣機(jī)亮相AWE 復(fù)古美學(xué)與現(xiàn)代
        合肥機(jī)場(chǎng)巴士4號(hào)線
        合肥機(jī)場(chǎng)巴士4號(hào)線
        合肥機(jī)場(chǎng)巴士3號(hào)線
        合肥機(jī)場(chǎng)巴士3號(hào)線
        合肥機(jī)場(chǎng)巴士2號(hào)線
        合肥機(jī)場(chǎng)巴士2號(hào)線
        合肥機(jī)場(chǎng)巴士1號(hào)線
        合肥機(jī)場(chǎng)巴士1號(hào)線
      12. 短信驗(yàn)證碼 酒店vi設(shè)計(jì) deepseek 幣安下載 AI生圖 AI寫作 aippt AI生成PPT 阿里商辦

        關(guān)于我們 | 打賞支持 | 廣告服務(wù) | 聯(lián)系我們 | 網(wǎng)站地圖 | 免責(zé)聲明 | 幫助中心 | 友情鏈接 |

        Copyright © 2025 hfw.cc Inc. All Rights Reserved. 合肥網(wǎng) 版權(quán)所有
        ICP備06013414號(hào)-3 公安備 42010502001045

        日韩精品视频免费网址| 精品亚洲国产成人av| 尤物国产精品福利三区| 精品久久无码中文字幕| 亚洲国产成人精品女人久久久 | 人人妻人人澡人人爽人人精品 | 精品国产亚洲男女在线线电影 | 国产精品偷伦视频免费观看了| 无码人妻精品一区二区三区99性| 久久精品?ⅴ无码中文字幕| 夜夜精品视频一区二区| 久久老子午夜精品无码| 老司机午夜精品视频播放| 国产精品大尺度尺度视频| 青青草国产精品久久| 日韩在线观看一区二区三区| 亚洲精品无播放器在线播放| 亚洲AV无码久久精品色欲| 精品一区二区三区视频| 国产亚洲日韩在线三区| 久9热视频这里只精品18| 亚洲精品乱码久久久久久下载 | 中日韩美中文字幕| 国产精品1区2区3区在线播放| 最新在线精品国自av| 亚洲人精品午夜射精日韩| 国产精品538一区二区在线| 久久精品国产亚洲AV忘忧草18| 老汉精品免费AV在线播放| 久久精品99久久香蕉国产| 亚洲国产精品成人精品无码区在线| 国产精品亚洲片在线观看不卡| 日韩伦理一区二区| 日韩爽爽视频爽爽| 美女免费精品高清毛片在线视| 四虎永久在线精品国产馆V视影院| 国产精品第44页| 精品动漫一区二区无遮挡| 97久久精品无码一区二区天美 | 日韩在线观看第一页| 伊在人亚洲香蕉精品区麻豆 |