美文网首页
收入不平等数据库

收入不平等数据库

作者: 遇见stata | 来源:发表于2019-02-13 18:43 被阅读0次

    国内相关数据库

    • 宏观数据:国家统计局

    • 微观数据:
      chip chns cfps uhs rhs charls chfs clds clus rumic CRHPS ches SLCC

    • 1950年之前的收入数据

    view browse http://gpih.ucdavis.edu/index-main.html

    国外数据库

    ssc install wid
    help wid
    *举例
    wid, indicators(shweal) areas(FR) perc(p90p100 p99p100) ages(992) pop(j) clear  //法国数据
     wid, indicators(shweal) areas(CN) perc(p90p100 p99p100) ages(992) pop(j) clear //中国数据
    
     reshape wide value, i(year) j(percentile) string
     label variable valuep90p100 "Top 10% share"
     label variable valuep99p100 "Top 1% share"
            
      graph twoway line value* year, title("Wealth inequality in china") ///
                ylabel(0.2 "20%" 0.4 "40%" 0.6 "60%" 0.8 "80%") ///
                subtitle("equal-split adults") ///
                note("Source: WID.world")
    
    Wealth inequality in china.png
    • 使用集成工具包计算不平等指标

    • 1.DASP

    view browse http://dasp.ecn.ulaval.ca/
    install dasp
    *找到dasp.pkg和stata.toc文件所在的路径
     net from "D:\经济不平等的实证分析\实证研究\dasp\dasp"
     net install dasp_p1.pkg,force replace
     net install dasp_p2.pkg,force replace
     net install dasp_p3.pkg,force replace
     net install dasp_p4.pkg,force replace
    

    增加dasp到stata子菜单: 将 _daspmenu 增加到pfofile.do 文件中

    相关文章

      网友评论

          本文标题:收入不平等数据库

          本文链接:https://www.haomeiwen.com/subject/tzodeqtx.html